Icons script and list
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
@@ -1168,3 +1168,21 @@ li.next {
|
||||
li > dl > dt {
|
||||
font-weight: inherit;
|
||||
}
|
||||
|
||||
/* Icons grid */
|
||||
#icons > blockquote > div {
|
||||
display: inline-flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-between;
|
||||
}
|
||||
#icons > blockquote > div > div {
|
||||
margin: 20px;
|
||||
text-align: center;
|
||||
flex: 10%;
|
||||
}
|
||||
#icons > blockquote > div img {
|
||||
margin: 10px;
|
||||
}
|
||||
#icons > blockquote > div p {
|
||||
font-size: inherit;
|
||||
}
|
||||
|
||||
39
developer_manual/design/icons-gen.py
Executable file
@@ -0,0 +1,39 @@
|
||||
#! /bin/env python
|
||||
# Generate the icon part of the design documentation
|
||||
# coding=utf8
|
||||
# the above tag defines encoding for this document and is for Python 2.x compatibility
|
||||
|
||||
import re
|
||||
import os
|
||||
|
||||
iconregex = re.compile("(\.icon-[a-z-]*)")
|
||||
pathregex = r"url\('([a-z-./]*\.svg)"
|
||||
|
||||
os.system('rm -R ./img/')
|
||||
os.system('rm icons.txt')
|
||||
os.system('wget https://github.com/nextcloud/server/archive/master.zip')
|
||||
os.system("unzip -p master.zip 'server-master/core/css/icons.scss' > icons.scss")
|
||||
os.system("unzip -u master.zip 'server-master/core/img/*'")
|
||||
os.system('mv ./server-master/core/img .')
|
||||
os.system('rm master.zip')
|
||||
os.system('rm -R ./server-master/')
|
||||
|
||||
|
||||
icons = {}
|
||||
|
||||
scss = open('icons.scss')
|
||||
lines = scss.readlines()
|
||||
|
||||
for i, line in enumerate(lines):
|
||||
for match in re.finditer(pathregex, line):
|
||||
iconclass = iconregex.match(lines[i-1])
|
||||
if iconclass:
|
||||
icons[iconclass.groups()[0]] = match.groups()[0]
|
||||
|
||||
result = ""
|
||||
for icon, path in sorted(icons.items()):
|
||||
result += ".. figure:: " + path[3:]+"\n :height: 32\n\n " + icon[1:] + "\n\n"
|
||||
|
||||
f = open('icons.txt', 'w')
|
||||
f.write(result);
|
||||
f.close()
|
||||
@@ -5,3 +5,6 @@
|
||||
========
|
||||
Icons
|
||||
========
|
||||
|
||||
.. include:: icons.txt
|
||||
:class: icons-flex
|
||||
|
||||
551
developer_manual/design/icons.scss
Normal file
@@ -0,0 +1,551 @@
|
||||
/**
|
||||
* @copyright Copyright (c) 2016, John Molakvoæ <skjnldsv@protonmail.com>
|
||||
* @copyright Copyright (c) 2016, Joas Schilling <coding@schilljs.com>
|
||||
* @copyright Copyright (c) 2016, Lukas Reschke <lukas@statuscode.ch>
|
||||
* @copyright Copyright (c) 2016, Roeland Jago Douma <roeland@famdouma.nl>
|
||||
* @copyright Copyright (c) 2016, Vincent Chan <plus.vincchan@gmail.com>
|
||||
* @copyright Copyright (c) 2015, Thomas Müller <thomas.mueller@tmit.eu>
|
||||
* @copyright Copyright (c) 2015, Hendrik Leppelsack <hendrik@leppelsack.de>
|
||||
* @copyright Copyright (c) 2015, Jan-Christoph Borchardt <hey@jancborchardt.net>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
*
|
||||
*/
|
||||
|
||||
/* GLOBAL ------------------------------------------------------------------- */
|
||||
[class^='icon-'], [class*=' icon-'] {
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
min-width: 16px;
|
||||
min-height: 16px;
|
||||
}
|
||||
|
||||
.icon-breadcrumb {
|
||||
background-image: url('../img/breadcrumb.svg?v=1');
|
||||
}
|
||||
|
||||
/* LOADING ------------------------------------------------------------------ */
|
||||
.loading, .loading-small, .icon-loading, .icon-loading-dark, .icon-loading-small, .icon-loading-small-dark {
|
||||
position: relative;
|
||||
&:after {
|
||||
z-index: 2;
|
||||
content: '';
|
||||
height: 28px;
|
||||
width: 28px;
|
||||
margin: -16px 0 0 -16px;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
border-radius: 100%;
|
||||
-webkit-animation: rotate .8s infinite linear;
|
||||
animation: rotate .8s infinite linear;
|
||||
-webkit-transform-origin: center;
|
||||
-ms-transform-origin: center;
|
||||
transform-origin: center;
|
||||
border: 2px solid rgba($color-loading, 0.5);
|
||||
border-top-color: $color-loading;
|
||||
}
|
||||
}
|
||||
|
||||
.icon-loading-dark:after,
|
||||
.icon-loading-small-dark:after {
|
||||
border: 2px solid rgba($color-loading-dark, 0.5);
|
||||
border-top-color: $color-loading-dark;
|
||||
}
|
||||
|
||||
.icon-loading-small:after,
|
||||
.icon-loading-small-dark:after {
|
||||
height: 12px;
|
||||
width: 12px;
|
||||
margin: -8px 0 0 -8px;
|
||||
}
|
||||
|
||||
/* Css replaced elements don't have ::after nor ::before */
|
||||
img, object, video, button, textarea, input, select {
|
||||
.icon-loading {
|
||||
background-image: url('../img/loading.gif');
|
||||
}
|
||||
.icon-loading-dark {
|
||||
background-image: url('../img/loading-dark.gif');
|
||||
}
|
||||
.icon-loading-small {
|
||||
background-image: url('../img/loading-small.gif');
|
||||
}
|
||||
.icon-loading-small-dark {
|
||||
background-image: url('../img/loading-small-dark.gif');
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes rotate {
|
||||
from {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
to {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
.icon-32 {
|
||||
background-size: 32px !important;
|
||||
}
|
||||
|
||||
/* ICONS -------------------------------------------------------------------- */
|
||||
.icon-add {
|
||||
background-image: url('../img/actions/add.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-audio {
|
||||
background-image: url('../img/actions/audio.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-audio-white {
|
||||
background-image: url('../img/actions/audio-white.svg?v=2');
|
||||
}
|
||||
|
||||
.icon-audio-off {
|
||||
background-image: url('../img/actions/audio-off.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-audio-off-white {
|
||||
background-image: url('../img/actions/audio-off-white.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-caret {
|
||||
background-image: url('../img/actions/caret.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-caret-dark {
|
||||
background-image: url('../img/actions/caret-dark.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-checkmark {
|
||||
background-image: url('../img/actions/checkmark.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-checkmark-white {
|
||||
background-image: url('../img/actions/checkmark-white.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-checkmark-color {
|
||||
background-image: url('../img/actions/checkmark-color.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-clippy {
|
||||
background-image: url('../img/actions/clippy.svg?v=2');
|
||||
}
|
||||
|
||||
.icon-close {
|
||||
background-image: url('../img/actions/close.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-close-white {
|
||||
background-image: url('../img/actions/close-white.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-comment {
|
||||
background-image: url('../img/actions/comment.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-confirm {
|
||||
background-image: url('../img/actions/confirm.svg?v=2');
|
||||
}
|
||||
|
||||
.icon-confirm-white {
|
||||
background-image: url('../img/actions/confirm-white.svg?v=2');
|
||||
}
|
||||
|
||||
.icon-delete {
|
||||
background-image: url('../img/actions/delete.svg?v=1');
|
||||
&.no-permission {
|
||||
&:hover, &:focus {
|
||||
background-image: url('../img/actions/delete.svg?v=1');
|
||||
}
|
||||
}
|
||||
&:hover, &:focus {
|
||||
background-image: url('../img/actions/delete-hover.svg?v=1');
|
||||
}
|
||||
}
|
||||
|
||||
.icon-delete-white {
|
||||
background-image: url('../img/actions/delete-white.svg?v=1');
|
||||
&.no-permission {
|
||||
&:hover, &:focus {
|
||||
background-image: url('../img/actions/delete-white.svg?v=1');
|
||||
}
|
||||
}
|
||||
&:hover, &:focus {
|
||||
background-image: url('../img/actions/delete-hover.svg?v=1');
|
||||
}
|
||||
}
|
||||
|
||||
.icon-details {
|
||||
background-image: url('../img/actions/details.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-download {
|
||||
background-image: url('../img/actions/download.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-download-white {
|
||||
background-image: url('../img/actions/download-white.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-edit {
|
||||
background-image: url('../img/actions/edit.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-error {
|
||||
background-image: url('../img/actions/error.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-error-white {
|
||||
background-image: url('../img/actions/error-white.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-error-color {
|
||||
background-image: url('../img/actions/error-color.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-external {
|
||||
background-image: url('../img/actions/external.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-fullscreen {
|
||||
background-image: url('../img/actions/fullscreen.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-fullscreen-white {
|
||||
background-image: url('../img/actions/fullscreen-white.svg?v=2');
|
||||
}
|
||||
|
||||
.icon-history {
|
||||
background-image: url('../img/actions/history.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-info {
|
||||
background-image: url('../img/actions/info.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-info-white {
|
||||
background-image: url('../img/actions/info-white.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-logout {
|
||||
background-image: url('../img/actions/logout.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-mail {
|
||||
background-image: url('../img/actions/mail.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-menu {
|
||||
background-image: url('../img/actions/menu.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-more {
|
||||
background-image: url('../img/actions/more.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-more-white {
|
||||
background-image: url('../img/actions/more-white.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-password {
|
||||
background-image: url('../img/actions/password.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-pause {
|
||||
background-image: url('../img/actions/pause.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-pause-big {
|
||||
background-image: url('../img/actions/pause-big.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-play {
|
||||
background-image: url('../img/actions/play.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-play-add {
|
||||
background-image: url('../img/actions/play-add.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-play-big {
|
||||
background-image: url('../img/actions/play-big.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-play-next {
|
||||
background-image: url('../img/actions/play-next.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-play-previous {
|
||||
background-image: url('../img/actions/play-previous.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-public {
|
||||
background-image: url('../img/actions/public.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-rename {
|
||||
background-image: url('../img/actions/rename.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-screen {
|
||||
background-image: url('../img/actions/screen.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-screen-white {
|
||||
background-image: url('../img/actions/screen-white.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-screen-off {
|
||||
background-image: url('../img/actions/screen-off.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-screen-off-white {
|
||||
background-image: url('../img/actions/screen-off-white.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-search {
|
||||
background-image: url('../img/actions/search.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-search-white {
|
||||
background-image: url('../img/actions/search-white.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-settings {
|
||||
background-image: url('../img/actions/settings.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-settings-dark {
|
||||
background-image: url('../img/actions/settings-dark.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-settings-white {
|
||||
background-image: url('../img/actions/settings-white.svg?v=1');
|
||||
}
|
||||
|
||||
/* always use icon-shared, AdBlock blocks icon-share */
|
||||
.icon-shared,
|
||||
.icon-share {
|
||||
background-image: url('../img/actions/share.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-sound {
|
||||
background-image: url('../img/actions/sound.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-sound-off {
|
||||
background-image: url('../img/actions/sound-off.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-favorite {
|
||||
background-image: url('../img/actions/star-dark.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-star {
|
||||
background-image: url('../img/actions/star.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-starred {
|
||||
&:hover, &:focus {
|
||||
background-image: url('../img/actions/star.svg?v=1');
|
||||
}
|
||||
background-image: url('../img/actions/starred.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-star {
|
||||
&:hover, &:focus {
|
||||
background-image: url('../img/actions/starred.svg?v=1');
|
||||
}
|
||||
}
|
||||
|
||||
.icon-tag {
|
||||
background-image: url('../img/actions/tag.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-toggle {
|
||||
background-image: url('../img/actions/toggle.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-toggle-pictures {
|
||||
background-image: url('../img/actions/toggle-pictures.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-triangle-e {
|
||||
background-image: url('../img/actions/triangle-e.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-triangle-n {
|
||||
background-image: url('../img/actions/triangle-n.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-triangle-s {
|
||||
background-image: url('../img/actions/triangle-s.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-upload {
|
||||
background-image: url('../img/actions/upload.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-upload-white {
|
||||
background-image: url('../img/actions/upload-white.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-user {
|
||||
background-image: url('../img/actions/user.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-video {
|
||||
background-image: url('../img/actions/video.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-video-white {
|
||||
background-image: url('../img/actions/video-white.svg?v=2');
|
||||
}
|
||||
|
||||
.icon-video-off {
|
||||
background-image: url('../img/actions/video-off.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-video-off-white {
|
||||
background-image: url('../img/actions/video-off-white.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-view-close {
|
||||
background-image: url('../img/actions/view-close.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-view-download {
|
||||
background-image: url('../img/actions/view-download.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-view-next {
|
||||
background-image: url('../img/actions/view-next.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-view-pause {
|
||||
background-image: url('../img/actions/view-pause.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-view-play {
|
||||
background-image: url('../img/actions/view-play.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-view-previous {
|
||||
background-image: url('../img/actions/view-previous.svg?v=1');
|
||||
}
|
||||
|
||||
/* PLACES ------------------------------------------------------------------- */
|
||||
.icon-calendar {
|
||||
background-image: url('../img/places/calendar.svg?v=1');
|
||||
}
|
||||
.icon-calendar-dark {
|
||||
background-image: url('../img/places/calendar-dark.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-contacts {
|
||||
background-image: url('../img/places/contacts.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-contacts-dark {
|
||||
background-image: url('../img/places/contacts-dark.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-files {
|
||||
background-image: url('../img/places/files.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-files-dark {
|
||||
background-image: url('../img/places/files-dark.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-file, .icon-filetype-text {
|
||||
background-image: url('../img/filetypes/text.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-folder, .icon-filetype-folder {
|
||||
background-image: url('../img/filetypes/folder.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-filetype-folder-drag-accept {
|
||||
background-image: url('../img/filetypes/folder-drag-accept.svg?v=1') !important;
|
||||
}
|
||||
|
||||
.icon-home {
|
||||
background-image: url('../img/places/home.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-link {
|
||||
background-image: url('../img/places/link.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-music {
|
||||
background-image: url('../img/places/music.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-picture {
|
||||
background-image: url('../img/places/picture.svg?v=1');
|
||||
}
|
||||
|
||||
/* APP CATEGORIES ------------------------------------------------------------------- */
|
||||
.icon-category-installed {
|
||||
background-image: url('../img/actions/user.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-category-enabled {
|
||||
background-image: url('../img/actions/checkmark.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-category-disabled {
|
||||
background-image: url('../img/actions/close.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-category-app-bundles {
|
||||
background-image: url('../img/categories/bundles.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-category-updates {
|
||||
background-image: url('../img/actions/download.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-category-files {
|
||||
background-image: url('../img/categories/files.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-category-social {
|
||||
background-image: url('../img/categories/social.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-category-office {
|
||||
background-image: url('../img/categories/office.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-category-auth {
|
||||
background-image: url('../img/categories/auth.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-category-monitoring {
|
||||
background-image: url('../img/categories/monitoring.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-category-multimedia {
|
||||
background-image: url('../img/categories/multimedia.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-category-organization {
|
||||
background-image: url('../img/categories/organization.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-category-customization {
|
||||
background-image: url('../img/categories/customization.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-category-integration {
|
||||
background-image: url('../img/categories/integration.svg?v=1');
|
||||
}
|
||||
|
||||
.icon-category-tools {
|
||||
background-image: url('../img/actions/settings-dark.svg?v=1');
|
||||
}
|
||||
540
developer_manual/design/icons.txt
Normal file
@@ -0,0 +1,540 @@
|
||||
.. figure:: img/actions/add.svg
|
||||
:height: 32
|
||||
|
||||
icon-add
|
||||
|
||||
.. figure:: img/actions/audio.svg
|
||||
:height: 32
|
||||
|
||||
icon-audio
|
||||
|
||||
.. figure:: img/actions/audio-off.svg
|
||||
:height: 32
|
||||
|
||||
icon-audio-off
|
||||
|
||||
.. figure:: img/actions/audio-off-white.svg
|
||||
:height: 32
|
||||
|
||||
icon-audio-off-white
|
||||
|
||||
.. figure:: img/actions/audio-white.svg
|
||||
:height: 32
|
||||
|
||||
icon-audio-white
|
||||
|
||||
.. figure:: img/breadcrumb.svg
|
||||
:height: 32
|
||||
|
||||
icon-breadcrumb
|
||||
|
||||
.. figure:: img/places/calendar.svg
|
||||
:height: 32
|
||||
|
||||
icon-calendar
|
||||
|
||||
.. figure:: img/places/calendar-dark.svg
|
||||
:height: 32
|
||||
|
||||
icon-calendar-dark
|
||||
|
||||
.. figure:: img/actions/caret.svg
|
||||
:height: 32
|
||||
|
||||
icon-caret
|
||||
|
||||
.. figure:: img/actions/caret-dark.svg
|
||||
:height: 32
|
||||
|
||||
icon-caret-dark
|
||||
|
||||
.. figure:: img/categories/bundles.svg
|
||||
:height: 32
|
||||
|
||||
icon-category-app-bundles
|
||||
|
||||
.. figure:: img/categories/auth.svg
|
||||
:height: 32
|
||||
|
||||
icon-category-auth
|
||||
|
||||
.. figure:: img/categories/customization.svg
|
||||
:height: 32
|
||||
|
||||
icon-category-customization
|
||||
|
||||
.. figure:: img/actions/close.svg
|
||||
:height: 32
|
||||
|
||||
icon-category-disabled
|
||||
|
||||
.. figure:: img/actions/checkmark.svg
|
||||
:height: 32
|
||||
|
||||
icon-category-enabled
|
||||
|
||||
.. figure:: img/categories/files.svg
|
||||
:height: 32
|
||||
|
||||
icon-category-files
|
||||
|
||||
.. figure:: img/actions/user.svg
|
||||
:height: 32
|
||||
|
||||
icon-category-installed
|
||||
|
||||
.. figure:: img/categories/integration.svg
|
||||
:height: 32
|
||||
|
||||
icon-category-integration
|
||||
|
||||
.. figure:: img/categories/monitoring.svg
|
||||
:height: 32
|
||||
|
||||
icon-category-monitoring
|
||||
|
||||
.. figure:: img/categories/multimedia.svg
|
||||
:height: 32
|
||||
|
||||
icon-category-multimedia
|
||||
|
||||
.. figure:: img/categories/office.svg
|
||||
:height: 32
|
||||
|
||||
icon-category-office
|
||||
|
||||
.. figure:: img/categories/organization.svg
|
||||
:height: 32
|
||||
|
||||
icon-category-organization
|
||||
|
||||
.. figure:: img/categories/social.svg
|
||||
:height: 32
|
||||
|
||||
icon-category-social
|
||||
|
||||
.. figure:: img/actions/settings-dark.svg
|
||||
:height: 32
|
||||
|
||||
icon-category-tools
|
||||
|
||||
.. figure:: img/actions/download.svg
|
||||
:height: 32
|
||||
|
||||
icon-category-updates
|
||||
|
||||
.. figure:: img/actions/checkmark.svg
|
||||
:height: 32
|
||||
|
||||
icon-checkmark
|
||||
|
||||
.. figure:: img/actions/checkmark-color.svg
|
||||
:height: 32
|
||||
|
||||
icon-checkmark-color
|
||||
|
||||
.. figure:: img/actions/checkmark-white.svg
|
||||
:height: 32
|
||||
|
||||
icon-checkmark-white
|
||||
|
||||
.. figure:: img/actions/clippy.svg
|
||||
:height: 32
|
||||
|
||||
icon-clippy
|
||||
|
||||
.. figure:: img/actions/close.svg
|
||||
:height: 32
|
||||
|
||||
icon-close
|
||||
|
||||
.. figure:: img/actions/close-white.svg
|
||||
:height: 32
|
||||
|
||||
icon-close-white
|
||||
|
||||
.. figure:: img/actions/comment.svg
|
||||
:height: 32
|
||||
|
||||
icon-comment
|
||||
|
||||
.. figure:: img/actions/confirm.svg
|
||||
:height: 32
|
||||
|
||||
icon-confirm
|
||||
|
||||
.. figure:: img/actions/confirm-white.svg
|
||||
:height: 32
|
||||
|
||||
icon-confirm-white
|
||||
|
||||
.. figure:: img/places/contacts.svg
|
||||
:height: 32
|
||||
|
||||
icon-contacts
|
||||
|
||||
.. figure:: img/places/contacts-dark.svg
|
||||
:height: 32
|
||||
|
||||
icon-contacts-dark
|
||||
|
||||
.. figure:: img/actions/delete.svg
|
||||
:height: 32
|
||||
|
||||
icon-delete
|
||||
|
||||
.. figure:: img/actions/delete-white.svg
|
||||
:height: 32
|
||||
|
||||
icon-delete-white
|
||||
|
||||
.. figure:: img/actions/details.svg
|
||||
:height: 32
|
||||
|
||||
icon-details
|
||||
|
||||
.. figure:: img/actions/download.svg
|
||||
:height: 32
|
||||
|
||||
icon-download
|
||||
|
||||
.. figure:: img/actions/download-white.svg
|
||||
:height: 32
|
||||
|
||||
icon-download-white
|
||||
|
||||
.. figure:: img/actions/edit.svg
|
||||
:height: 32
|
||||
|
||||
icon-edit
|
||||
|
||||
.. figure:: img/actions/error.svg
|
||||
:height: 32
|
||||
|
||||
icon-error
|
||||
|
||||
.. figure:: img/actions/error-color.svg
|
||||
:height: 32
|
||||
|
||||
icon-error-color
|
||||
|
||||
.. figure:: img/actions/error-white.svg
|
||||
:height: 32
|
||||
|
||||
icon-error-white
|
||||
|
||||
.. figure:: img/actions/external.svg
|
||||
:height: 32
|
||||
|
||||
icon-external
|
||||
|
||||
.. figure:: img/actions/star-dark.svg
|
||||
:height: 32
|
||||
|
||||
icon-favorite
|
||||
|
||||
.. figure:: img/filetypes/text.svg
|
||||
:height: 32
|
||||
|
||||
icon-file
|
||||
|
||||
.. figure:: img/places/files.svg
|
||||
:height: 32
|
||||
|
||||
icon-files
|
||||
|
||||
.. figure:: img/places/files-dark.svg
|
||||
:height: 32
|
||||
|
||||
icon-files-dark
|
||||
|
||||
.. figure:: img/filetypes/folder-drag-accept.svg
|
||||
:height: 32
|
||||
|
||||
icon-filetype-folder-drag-accept
|
||||
|
||||
.. figure:: img/filetypes/folder.svg
|
||||
:height: 32
|
||||
|
||||
icon-folder
|
||||
|
||||
.. figure:: img/actions/fullscreen.svg
|
||||
:height: 32
|
||||
|
||||
icon-fullscreen
|
||||
|
||||
.. figure:: img/actions/fullscreen-white.svg
|
||||
:height: 32
|
||||
|
||||
icon-fullscreen-white
|
||||
|
||||
.. figure:: img/actions/history.svg
|
||||
:height: 32
|
||||
|
||||
icon-history
|
||||
|
||||
.. figure:: img/places/home.svg
|
||||
:height: 32
|
||||
|
||||
icon-home
|
||||
|
||||
.. figure:: img/actions/info.svg
|
||||
:height: 32
|
||||
|
||||
icon-info
|
||||
|
||||
.. figure:: img/actions/info-white.svg
|
||||
:height: 32
|
||||
|
||||
icon-info-white
|
||||
|
||||
.. figure:: img/places/link.svg
|
||||
:height: 32
|
||||
|
||||
icon-link
|
||||
|
||||
.. figure:: img/actions/logout.svg
|
||||
:height: 32
|
||||
|
||||
icon-logout
|
||||
|
||||
.. figure:: img/actions/mail.svg
|
||||
:height: 32
|
||||
|
||||
icon-mail
|
||||
|
||||
.. figure:: img/actions/menu.svg
|
||||
:height: 32
|
||||
|
||||
icon-menu
|
||||
|
||||
.. figure:: img/actions/more.svg
|
||||
:height: 32
|
||||
|
||||
icon-more
|
||||
|
||||
.. figure:: img/actions/more-white.svg
|
||||
:height: 32
|
||||
|
||||
icon-more-white
|
||||
|
||||
.. figure:: img/places/music.svg
|
||||
:height: 32
|
||||
|
||||
icon-music
|
||||
|
||||
.. figure:: img/actions/password.svg
|
||||
:height: 32
|
||||
|
||||
icon-password
|
||||
|
||||
.. figure:: img/actions/pause.svg
|
||||
:height: 32
|
||||
|
||||
icon-pause
|
||||
|
||||
.. figure:: img/actions/pause-big.svg
|
||||
:height: 32
|
||||
|
||||
icon-pause-big
|
||||
|
||||
.. figure:: img/places/picture.svg
|
||||
:height: 32
|
||||
|
||||
icon-picture
|
||||
|
||||
.. figure:: img/actions/play.svg
|
||||
:height: 32
|
||||
|
||||
icon-play
|
||||
|
||||
.. figure:: img/actions/play-add.svg
|
||||
:height: 32
|
||||
|
||||
icon-play-add
|
||||
|
||||
.. figure:: img/actions/play-big.svg
|
||||
:height: 32
|
||||
|
||||
icon-play-big
|
||||
|
||||
.. figure:: img/actions/play-next.svg
|
||||
:height: 32
|
||||
|
||||
icon-play-next
|
||||
|
||||
.. figure:: img/actions/play-previous.svg
|
||||
:height: 32
|
||||
|
||||
icon-play-previous
|
||||
|
||||
.. figure:: img/actions/public.svg
|
||||
:height: 32
|
||||
|
||||
icon-public
|
||||
|
||||
.. figure:: img/actions/rename.svg
|
||||
:height: 32
|
||||
|
||||
icon-rename
|
||||
|
||||
.. figure:: img/actions/screen.svg
|
||||
:height: 32
|
||||
|
||||
icon-screen
|
||||
|
||||
.. figure:: img/actions/screen-off.svg
|
||||
:height: 32
|
||||
|
||||
icon-screen-off
|
||||
|
||||
.. figure:: img/actions/screen-off-white.svg
|
||||
:height: 32
|
||||
|
||||
icon-screen-off-white
|
||||
|
||||
.. figure:: img/actions/screen-white.svg
|
||||
:height: 32
|
||||
|
||||
icon-screen-white
|
||||
|
||||
.. figure:: img/actions/search.svg
|
||||
:height: 32
|
||||
|
||||
icon-search
|
||||
|
||||
.. figure:: img/actions/search-white.svg
|
||||
:height: 32
|
||||
|
||||
icon-search-white
|
||||
|
||||
.. figure:: img/actions/settings.svg
|
||||
:height: 32
|
||||
|
||||
icon-settings
|
||||
|
||||
.. figure:: img/actions/settings-dark.svg
|
||||
:height: 32
|
||||
|
||||
icon-settings-dark
|
||||
|
||||
.. figure:: img/actions/settings-white.svg
|
||||
:height: 32
|
||||
|
||||
icon-settings-white
|
||||
|
||||
.. figure:: img/actions/share.svg
|
||||
:height: 32
|
||||
|
||||
icon-share
|
||||
|
||||
.. figure:: img/actions/sound.svg
|
||||
:height: 32
|
||||
|
||||
icon-sound
|
||||
|
||||
.. figure:: img/actions/sound-off.svg
|
||||
:height: 32
|
||||
|
||||
icon-sound-off
|
||||
|
||||
.. figure:: img/actions/star.svg
|
||||
:height: 32
|
||||
|
||||
icon-star
|
||||
|
||||
.. figure:: img/actions/tag.svg
|
||||
:height: 32
|
||||
|
||||
icon-tag
|
||||
|
||||
.. figure:: img/actions/toggle.svg
|
||||
:height: 32
|
||||
|
||||
icon-toggle
|
||||
|
||||
.. figure:: img/actions/toggle-pictures.svg
|
||||
:height: 32
|
||||
|
||||
icon-toggle-pictures
|
||||
|
||||
.. figure:: img/actions/triangle-e.svg
|
||||
:height: 32
|
||||
|
||||
icon-triangle-e
|
||||
|
||||
.. figure:: img/actions/triangle-n.svg
|
||||
:height: 32
|
||||
|
||||
icon-triangle-n
|
||||
|
||||
.. figure:: img/actions/triangle-s.svg
|
||||
:height: 32
|
||||
|
||||
icon-triangle-s
|
||||
|
||||
.. figure:: img/actions/upload.svg
|
||||
:height: 32
|
||||
|
||||
icon-upload
|
||||
|
||||
.. figure:: img/actions/upload-white.svg
|
||||
:height: 32
|
||||
|
||||
icon-upload-white
|
||||
|
||||
.. figure:: img/actions/user.svg
|
||||
:height: 32
|
||||
|
||||
icon-user
|
||||
|
||||
.. figure:: img/actions/video.svg
|
||||
:height: 32
|
||||
|
||||
icon-video
|
||||
|
||||
.. figure:: img/actions/video-off.svg
|
||||
:height: 32
|
||||
|
||||
icon-video-off
|
||||
|
||||
.. figure:: img/actions/video-off-white.svg
|
||||
:height: 32
|
||||
|
||||
icon-video-off-white
|
||||
|
||||
.. figure:: img/actions/video-white.svg
|
||||
:height: 32
|
||||
|
||||
icon-video-white
|
||||
|
||||
.. figure:: img/actions/view-close.svg
|
||||
:height: 32
|
||||
|
||||
icon-view-close
|
||||
|
||||
.. figure:: img/actions/view-download.svg
|
||||
:height: 32
|
||||
|
||||
icon-view-download
|
||||
|
||||
.. figure:: img/actions/view-next.svg
|
||||
:height: 32
|
||||
|
||||
icon-view-next
|
||||
|
||||
.. figure:: img/actions/view-pause.svg
|
||||
:height: 32
|
||||
|
||||
icon-view-pause
|
||||
|
||||
.. figure:: img/actions/view-play.svg
|
||||
:height: 32
|
||||
|
||||
icon-view-play
|
||||
|
||||
.. figure:: img/actions/view-previous.svg
|
||||
:height: 32
|
||||
|
||||
icon-view-previous
|
||||
|
||||
1
developer_manual/design/img/actions/add.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16"><path d="M9.02 13.98h-2v-5h-5v-2h5v-5h2v5l5-.028V8.98h-5z"/></svg>
|
||||
|
After Width: | Height: | Size: 129 B |
1
developer_manual/design/img/actions/arrow-left.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewbox="0 0 16 16"><path d="m5.5 8 6 6v1l-7-7 7-7v1z"/></svg>
|
||||
|
After Width: | Height: | Size: 140 B |
1
developer_manual/design/img/actions/arrow-right.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewbox="0 0 16 16"><path d="m10.5 8-6-6v-1l7 7-7 7v-1z"/></svg>
|
||||
|
After Width: | Height: | Size: 142 B |
10
developer_manual/design/img/actions/audio-off-white.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<filter id="a" style="color-interpolation-filters:sRGB" height="1.3148" width="1.4203" y="-.15742" x="-.21014">
|
||||
<feGaussianBlur stdDeviation="0.91827834"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<path opacity=".5" d="m8 1c-1.108 0-2 0.892-2 2v4c0 0.0535 0.0115 0.1038 0.0156 0.1562l3.9844-3.9824v-0.1738c0-1.108-0.892-2-2-2zm4.486 1.5137c-0.127 0-0.256 0.0233-0.377 0.0722-0.119 0.0488-0.232 0.1232-0.33 0.2207l-8.486 8.4844c-0.1959 0.196-0.293 0.453-0.293 0.709s0.0971 0.511 0.293 0.707c0.1958 0.196 0.4509 0.293 0.707 0.293s0.5131-0.097 0.709-0.293l8.484-8.4863c0.098-0.0975 0.172-0.2103 0.221-0.3301v-0.0019c0.147-0.361 0.073-0.7883-0.221-1.0821-0.196-0.1958-0.451-0.2929-0.707-0.2929zm-8.486 2.4863c-0.554 0-1 0.446-1 1v1a4.988 4.988 0 0 0 0.6719 2.5l1.5078-1.5078c-0.1093-0.3119-0.1797-0.6421-0.1797-0.9922v-1c0-0.554-0.446-1-1-1zm8.973 0.8594l-2.161 2.1582c-0.301 0.8367-0.9577 1.4934-1.7944 1.7949l-2.0742 2.0745a4.988 4.988 0 0 0 0.0566 0.013v1.1h-1.1699l-0.4141 0.414c-0.125 0.125-0.2683 0.222-0.416 0.307v1.279h6v-2h-2v-1.1c2.287-0.46 4-2.473 4-4.9v-1c0-0.0498-0.02-0.0928-0.027-0.1406z" filter="url(#a)"/>
|
||||
<path fill="#fff" d="m8 1c-1.108 0-2 0.892-2 2v4c0 0.0535 0.0115 0.1038 0.0156 0.1562l3.9844-3.9824v-0.1738c0-1.108-0.892-2-2-2zm4.486 1.5137c-0.127 0-0.256 0.0233-0.377 0.0722-0.119 0.0488-0.232 0.1232-0.33 0.2207l-8.486 8.4844c-0.1959 0.196-0.293 0.453-0.293 0.709s0.0971 0.511 0.293 0.707c0.1958 0.196 0.4509 0.293 0.707 0.293s0.5131-0.097 0.709-0.293l8.484-8.4863c0.098-0.0975 0.172-0.2103 0.221-0.3301v-0.0019c0.147-0.361 0.073-0.7883-0.221-1.0821-0.196-0.1958-0.451-0.2929-0.707-0.2929zm-8.486 2.4863c-0.554 0-1 0.446-1 1v1a4.988 4.988 0 0 0 0.6719 2.5l1.5078-1.5078c-0.1093-0.3119-0.1797-0.6421-0.1797-0.9922v-1c0-0.554-0.446-1-1-1zm8.973 0.8594l-2.161 2.1582c-0.301 0.8367-0.9577 1.4934-1.7944 1.7949l-2.0742 2.0745a4.988 4.988 0 0 0 0.0566 0.013v1.1h-1.1699l-0.4141 0.414c-0.125 0.125-0.2683 0.222-0.416 0.307v1.279h6v-2h-2v-1.1c2.287-0.46 4-2.473 4-4.9v-1c0-0.0498-0.02-0.0928-0.027-0.1406z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
4
developer_manual/design/img/actions/audio-off.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewBox="0 0 16 16">
|
||||
<path d="m8 1c-1.108 0-2 0.892-2 2v4c0 0.0535 0.0115 0.1038 0.0156 0.1562l3.9844-3.9824v-0.1738c0-1.108-0.892-2-2-2zm4.486 1.5137c-0.127 0-0.256 0.0233-0.377 0.0722-0.119 0.0488-0.232 0.1232-0.33 0.2207l-8.486 8.4844c-0.1959 0.196-0.293 0.453-0.293 0.709s0.0971 0.511 0.293 0.707c0.1958 0.196 0.4509 0.293 0.707 0.293s0.5131-0.097 0.709-0.293l8.484-8.4863c0.098-0.0975 0.172-0.2103 0.221-0.3301v-0.0019c0.147-0.361 0.073-0.7883-0.221-1.0821-0.196-0.1958-0.451-0.2929-0.707-0.2929zm-8.486 2.4863c-0.554 0-1 0.446-1 1v1a4.988 4.988 0 0 0 0.6719 2.5l1.5078-1.5078c-0.1093-0.3119-0.1797-0.6421-0.1797-0.9922v-1c0-0.554-0.446-1-1-1zm8.973 0.8594l-2.161 2.1582c-0.301 0.8367-0.9577 1.4934-1.7944 1.7949l-2.0742 2.0745a4.988 4.988 0 0 0 0.0566 0.013v1.1h-1.1699l-0.4141 0.414c-0.125 0.125-0.2683 0.222-0.416 0.307v1.279h6v-2h-2v-1.1c2.287-0.46 4-2.473 4-4.9v-1c0-0.0498-0.02-0.0928-0.027-0.1406z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.0 KiB |
10
developer_manual/design/img/actions/audio-white.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<filter id="a" style="color-interpolation-filters:sRGB" height="1.3086" width="1.432" y="-.15429" x="-0.216">
|
||||
<feGaussianBlur stdDeviation="0.90000044"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<path opacity=".5" d="m8 1c-1.108 0-2 0.892-2 2v4c0 1.108 0.892 2 2 2s2-0.892 2-2v-4c0-1.108-0.892-2-2-2zm-4 4c-0.554 0-1 0.446-1 1v1a4.988 4.988 0 0 0 4 4.9v1.1h-2v2h6v-2h-2v-1.1c2.287-0.46 4-2.473 4-4.9v-1c0-0.554-0.446-1-1-1s-1 0.446-1 1v1c0 1.662-1.338 3-3 3s-3-1.338-3-3v-1c0-0.554-0.446-1-1-1z" fill-rule="evenodd" filter="url(#a)"/>
|
||||
<path fill="#fff" d="m8 1c-1.108 0-2 0.892-2 2v4c0 1.108 0.892 2 2 2s2-0.892 2-2v-4c0-1.108-0.892-2-2-2zm-4 4c-0.554 0-1 0.446-1 1v1a4.988 4.988 0 0 0 4 4.9v1.1h-2v2h6v-2h-2v-1.1c2.287-0.46 4-2.473 4-4.9v-1c0-0.554-0.446-1-1-1s-1 0.446-1 1v1c0 1.662-1.338 3-3 3s-3-1.338-3-3v-1c0-0.554-0.446-1-1-1z" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1012 B |
1
developer_manual/design/img/actions/audio.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" viewBox="0 0 16 16"><path d="M8 1c-1.108 0-2 .892-2 2v4c0 1.108.892 2 2 2s2-.892 2-2V3c0-1.108-.892-2-2-2zM4 5c-.554 0-1 .446-1 1v1a4.988 4.988 0 0 0 4 4.9V13H5v2h6v-2H9v-1.1c2.287-.46 4-2.473 4-4.9V6c0-.554-.446-1-1-1s-1 .446-1 1v1c0 1.662-1.338 3-3 3S5 8.662 5 7V6c0-.554-.446-1-1-1z" fill-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 378 B |
1
developer_manual/design/img/actions/caret-dark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1"><path style="block-progression:tb;text-transform:none;text-indent:0" d="M4 6l4 4 4-3.994z" color="#000"/></svg>
|
||||
|
After Width: | Height: | Size: 186 B |
1
developer_manual/design/img/actions/caret.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="10" width="10" version="1"><path style="block-progression:tb;text-transform:none;text-indent:0" d="M1 3l4 4 4-3.994z" fill="#fff" color="#000"/></svg>
|
||||
|
After Width: | Height: | Size: 198 B |
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m0 0v16h16v-16h-16zm11.924 4.0664l1.4336 1.4297-6.3652 6.3652-4.2422-4.2441 1.4141-1.4121 2.8281 2.8301 4.9316-4.9688z" fill="#fff"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 268 B |
1
developer_manual/design/img/actions/checkbox-mark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16"><path d="M11.924 4.066l-4.932 4.97-2.828-2.83L2.75 7.618l4.242 4.243 6.365-6.365-1.433-1.432z" fill="#fff"/></svg>
|
||||
|
After Width: | Height: | Size: 177 B |
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m0 0v16h16v-16h-16zm4 7h8v2h-8v-2z" fill="#fff"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 184 B |
1
developer_manual/design/img/actions/checkbox-mixed.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"><path d="M4 7v2h8V7H4z" fill="#fff"/></svg>
|
||||
|
After Width: | Height: | Size: 106 B |
1
developer_manual/design/img/actions/checkmark-color.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" viewBox="-0.5 -0.5 16 16" width="16" overflow="visible"><path d="M6.09 12.5L1.14 7.55l1.413-1.414L6.09 9.67l6.344-6.382 1.433 1.434z" fill="#00d400"/></svg>
|
||||
|
After Width: | Height: | Size: 208 B |
1
developer_manual/design/img/actions/checkmark-white.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" viewBox="-0.5 -0.5 16 16" width="16" overflow="visible"><path d="M6.09 12.5L1.14 7.55l1.413-1.414L6.09 9.67l6.345-6.382 1.433 1.434z" fill="#fff"/></svg>
|
||||
|
After Width: | Height: | Size: 205 B |
BIN
developer_manual/design/img/actions/checkmark.png
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
1
developer_manual/design/img/actions/checkmark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" viewBox="-0.5 -0.5 16 16" width="16" overflow="visible"><path d="M6.09 12.5L1.14 7.55l1.413-1.414L6.09 9.67l6.344-6.382 1.433 1.434z"/></svg>
|
||||
|
After Width: | Height: | Size: 193 B |
4
developer_manual/design/img/actions/clippy.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewBox="0 0 16 16">
|
||||
<path opacity=".5" d="m13 15h-11l0.0005-10h11v3.0002l1-0.0004 0.0005-5.0001c0.000058-0.5834-0.4165-1.0002-1.0005-1.0001l-3.467 0.0005c0.0008-1.183-0.9492-2.0001-2.1325-2.0001s-2.1333 0.8171-2.1333 2.0004h-3.2c-0.5834 0-1.0662 0.4166-1.0662 0.9999l-0.0005 12c-0.0000243 0.584 0.4833 1 1.0667 1l10.933-0.0005c0.584-0.001 1-0.416 1-1v-3h-1zm-8.8005-12h1.0672c0.5833 0 1.0666-0.4162 1.0666-0.9996 0-0.5833 0.4834-0.9337 1.0667-0.9337s1.0667 0.3504 1.0667 0.9337c0 0.5834 0.5333 0.9996 1.0666 0.9996h1.2667c0.517 0 1.2 0.4166 1.2 1h-9c-0.0004-0.65 0.5988-1 1.1988-1zm-1.1995 8h2v-1h-2zm7.9998-2v-2l-4 3 3.9998 3v-2l5.0002-0.00005v-2l-4.9998-0.00005zm-8 4h4v-1h-4zm6-7h-6v1h6zm-3 2h-3v1h3z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 848 B |
4
developer_manual/design/img/actions/close-white.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1">
|
||||
<path fill="#fff" d="m12.95 11.536l-1.414 1.414-3.536-3.536-3.535 3.536-1.415-1.414 3.536-3.536-3.536-3.536 1.415-1.414 3.535 3.536 3.516-3.555 1.434 1.434-3.536 3.535z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 313 B |
4
developer_manual/design/img/actions/close.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1">
|
||||
<path d="m12.95 11.536l-1.414 1.414-3.536-3.536-3.535 3.536-1.415-1.414 3.536-3.536-3.536-3.536 1.415-1.414 3.535 3.536 3.516-3.555 1.434 1.434-3.536 3.535z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 301 B |
BIN
developer_manual/design/img/actions/comment.png
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
1
developer_manual/design/img/actions/comment.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" viewbox="0 0 16 16"><path d="M8 1.5C3.582 1.5 0 3.962 0 7s3.582 5.5 8 5.5c.25 0 .49-.016.734-.03L13 16v-4.703c1.83-1.008 3-2.56 3-4.297 0-3.038-3.582-5.5-8-5.5z"/></svg>
|
||||
|
After Width: | Height: | Size: 233 B |
4
developer_manual/design/img/actions/confirm-white.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1">
|
||||
<path d="m8.6328 0.63477c-0.2556 0-0.5112 0.0971-0.707 0.29296-0.3918 0.39177-0.3918 1.0224 0 1.4141l4.6582 4.6582h-11.584c-0.554 0-1 0.446-1 1s0.446 1 1 1h11.586l-4.6583 4.658c-0.3917 0.392-0.3917 1.023 0 1.414 0.3918 0.392 1.0224 0.392 1.4141 0l6.3632-6.363v-0.002h0.002c0.093-0.093 0.166-0.2041 0.217-0.3281l0.002-0.0019v-0.002c0.02-0.0508 0.019-0.1053 0.031-0.1582 0.016-0.0718 0.043-0.14 0.043-0.2168 0-0.0714-0.027-0.1341-0.041-0.2012-0.012-0.0578-0.012-0.1202-0.033-0.1738v-0.002c-0.001-0.0013-0.002-0.0026-0.002-0.0039-0.051-0.1233-0.124-0.2335-0.217-0.3261-0.001-0.0007-0.001-0.0013-0.002-0.002l-6.3632-6.3633c-0.1959-0.19583-0.4534-0.29293-0.709-0.29293z" fill-rule="evenodd" fill="#fff"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 841 B |
4
developer_manual/design/img/actions/confirm.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewBox="0 0 16 16">
|
||||
<path d="m8.6328 0.63477c-0.2556 0-0.5112 0.0971-0.707 0.29296-0.3918 0.39177-0.3918 1.0224 0 1.4141l4.6582 4.6582h-11.584c-0.554 0-1 0.446-1 1s0.446 1 1 1h11.586l-4.6583 4.658c-0.3917 0.392-0.3917 1.023 0 1.414 0.3918 0.392 1.0224 0.392 1.4141 0l6.3632-6.363v-0.002h0.002c0.093-0.093 0.166-0.2041 0.217-0.3281l0.002-0.0019v-0.002c0.02-0.0508 0.019-0.1053 0.031-0.1582 0.016-0.0718 0.043-0.14 0.043-0.2168 0-0.0714-0.027-0.1341-0.041-0.2012-0.012-0.0578-0.012-0.1202-0.033-0.1738v-0.002c-0.001-0.0013-0.002-0.0026-0.002-0.0039-0.051-0.1233-0.124-0.2335-0.217-0.3261-0.001-0.0007-0.001-0.0013-0.002-0.002l-6.3632-6.3633c-0.1959-0.19583-0.4534-0.29293-0.709-0.29293z" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 849 B |
1
developer_manual/design/img/actions/delete-hover.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16"><path fill="#d40000" d="M6.5 1L6 2H3c-.554 0-1 .446-1 1v1h12V3c0-.554-.446-1-1-1h-3l-.5-1zM3 5l.875 9c.06.55.573 1 1.125 1h6c.552 0 1.064-.45 1.125-1L13 5z" fill-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 247 B |
1
developer_manual/design/img/actions/delete-white.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16"><path d="M6.5 1L6 2H3c-.554 0-1 .446-1 1v1h12V3c0-.554-.446-1-1-1h-3l-.5-1zM3 5l.875 9c.06.55.573 1 1.125 1h6c.552 0 1.064-.45 1.125-1L13 5z" fill-rule="evenodd" fill="#fff"/></svg>
|
||||
|
After Width: | Height: | Size: 244 B |
1
developer_manual/design/img/actions/delete.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16"><path d="M6.5 1L6 2H3c-.554 0-1 .446-1 1v1h12V3c0-.554-.446-1-1-1h-3l-.5-1zM3 5l.875 9c.06.55.573 1 1.125 1h6c.552 0 1.064-.45 1.125-1L13 5z" fill-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 232 B |
1
developer_manual/design/img/actions/details.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1"><path d="M5 7.474c.155.382.325.69.644.246.407-.268 1.76-1.427 1.662-.342-.368 2.017-.834 4.017-1.17 6.04-.393 1.114.634 2.067 1.637 1.31 1.078-.502 1.99-1.287 2.927-2.01-.144-.323-.25-.79-.596-.347-.468.24-1.47 1.318-1.696.472.315-2.18.975-4.295 1.365-6.462.397-1.005-.364-2.223-1.4-1.363C7.117 5.634 6.083 6.6 5 7.474zM9.46.005C8.15-.017 7.553 2.147 8.815 2.68c1.023.378 2.077-.714 1.79-1.75-.098-.542-.598-.97-1.147-.93z"/></svg>
|
||||
|
After Width: | Height: | Size: 506 B |
1
developer_manual/design/img/actions/download-white.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16"><path fill="#fff" d="M6 1h4v7h5l-7 7-7-7h5z"/></svg>
|
||||
|
After Width: | Height: | Size: 115 B |
BIN
developer_manual/design/img/actions/download.png
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
1
developer_manual/design/img/actions/download.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16"><path d="M6 1h4v7h5l-7 7-7-7h5z"/></svg>
|
||||
|
After Width: | Height: | Size: 103 B |
1
developer_manual/design/img/actions/edit.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1"><path style="block-progression:tb;text-transform:none;text-indent:0" d="M2.35 1.002A.45.45 0 0 0 2 1.44V14.56c0 .232.206.44.432.44H13.57a.452.452 0 0 0 .432-.438V4.42a.458.458 0 0 0-.055-.192l-3.312-3.2a.427.427 0 0 0-.135-.026H2.43a.424.424 0 0 0-.08 0zM4 3h6v1H4V3zm0 3h5v1H4V6zm0 3h8v1H4V9zm0 3h4v1H4v-1z" color="#000"/></svg>
|
||||
|
After Width: | Height: | Size: 404 B |
1
developer_manual/design/img/actions/error-color.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16"><path d="M5.516 2L2 5.516v4.968L5.516 14h4.968L14 10.484V5.516L10.484 2H5.516zM7 4h2v5H7V4zm0 6h2v2H7v-2z" fill="#d40000"/></svg>
|
||||
|
After Width: | Height: | Size: 192 B |
1
developer_manual/design/img/actions/error-white.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16"><path d="M5.516 2L2 5.516v4.968L5.516 14h4.968L14 10.484V5.516L10.484 2H5.516zM7 4h2v5H7V4zm0 6h2v2H7v-2z" fill="#fff"/></svg>
|
||||
|
After Width: | Height: | Size: 189 B |
1
developer_manual/design/img/actions/error.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16"><path d="M5.516 2L2 5.516v4.968L5.516 14h4.968L14 10.484V5.516L10.484 2H5.516zM7 4h2v5H7V4zm0 6h2v2H7v-2z"/></svg>
|
||||
|
After Width: | Height: | Size: 177 B |
1
developer_manual/design/img/actions/external.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16"><path d="M7.452 1.62l2.38 2.256-3.57 3.386L8.64 9.52l3.57-3.387 2.38 2.257V1.618h-7.14zM2.69 2.746c-.66 0-1.19.504-1.19 1.13v9.028c0 .625.53 1.128 1.19 1.128h9.522c.66 0 1.19-.503 1.19-1.128V9.52l-1.19-1.13v4.515h-9.52v-9.03h4.76l-1.19-1.128H2.69z"/></svg>
|
||||
|
After Width: | Height: | Size: 319 B |
10
developer_manual/design/img/actions/fullscreen-white.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<filter id="a" style="color-interpolation-filters:sRGB" height="1.36" width="1.36" y="-.18" x="-.18">
|
||||
<feGaussianBlur stdDeviation="1.05"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<path opacity=".5" d="m8 1c-0.554 0-1 0.446-1 1s0.446 1 1 1h5v5c0 0.554 0.446 1 1 1s1-0.446 1-1v-6c0-0.554-0.446-1-1-1h-6zm-6 6c-0.554 0-1 0.446-1 1v6c0 0.554 0.446 1 1 1h6c0.554 0 1-0.446 1-1s-0.446-1-1-1h-5v-5c0-0.554-0.446-1-1-1z" fill-rule="evenodd" filter="url(#a)"/>
|
||||
<path fill-rule="evenodd" fill="#fff" d="m8 1c-0.554 0-1 0.446-1 1s0.446 1 1 1h5v5c0 0.554 0.446 1 1 1s1-0.446 1-1v-6c0-0.554-0.446-1-1-1h-6zm-6 6c-0.554 0-1 0.446-1 1v6c0 0.554 0.446 1 1 1h6c0.554 0 1-0.446 1-1s-0.446-1-1-1h-5v-5c0-0.554-0.446-1-1-1z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 864 B |
4
developer_manual/design/img/actions/fullscreen.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewBox="0 0 16 16">
|
||||
<path d="m8 1c-0.554 0-1 0.446-1 1s0.446 1 1 1h5v5c0 0.554 0.446 1 1 1s1-0.446 1-1v-6c0-0.554-0.446-1-1-1h-6zm-6 6c-0.554 0-1 0.446-1 1v6c0 0.554 0.446 1 1 1h6c0.554 0 1-0.446 1-1s-0.446-1-1-1h-5v-5c0-0.554-0.446-1-1-1z" fill-rule="evenodd"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 404 B |
1
developer_manual/design/img/actions/history.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="17" width="17"><path d="M9.525 2.08c-3.95 0-6.535 3.447-6.364 6.72H1l3.904 3.92 4.08-3.874H6.837C6.6 7.146 8 5.732 9.526 5.754c1.595.024 2.8 1.23 2.8 2.734.09 1.594-1.63 3.428-3.966 2.53 0 1.23.003 2.545 0 3.765 4.19.83 7.64-2.51 7.64-6.25C16 4.97 13.08 2.08 9.525 2.08z"/></svg>
|
||||
|
After Width: | Height: | Size: 327 B |
1
developer_manual/design/img/actions/info-white.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1"><path color="#000" fill="none" d="M-62.897-32.993h163.31v97.986h-163.31z"/><path d="M5 7.474c.155.382.325.69.644.246.407-.268 1.76-1.427 1.662-.342-.368 2.017-.834 4.017-1.17 6.04-.393 1.114.634 2.067 1.637 1.31 1.078-.502 1.99-1.287 2.927-2.01-.144-.323-.25-.79-.596-.347-.468.24-1.47 1.318-1.696.472.315-2.18.975-4.295 1.365-6.462.397-1.005-.364-2.223-1.4-1.363C7.117 5.634 6.083 6.6 5 7.474zM9.46.005C8.15-.017 7.553 2.147 8.815 2.68c1.023.378 2.077-.714 1.79-1.75-.098-.542-.598-.97-1.147-.93z" fill="#fff"/></svg>
|
||||
|
After Width: | Height: | Size: 593 B |
1
developer_manual/design/img/actions/info.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1"><path color="#000" fill="none" d="M-62.897-32.993h163.31v97.986h-163.31z"/><path d="M5 7.474c.155.382.325.69.644.246.407-.268 1.76-1.427 1.662-.342-.368 2.017-.834 4.017-1.17 6.04-.393 1.114.634 2.067 1.637 1.31 1.078-.502 1.99-1.287 2.927-2.01-.144-.323-.25-.79-.596-.347-.468.24-1.47 1.318-1.696.472.315-2.18.975-4.295 1.365-6.462.397-1.005-.364-2.223-1.4-1.363C7.117 5.634 6.083 6.6 5 7.474zM9.46.005C8.15-.017 7.553 2.147 8.815 2.68c1.023.378 2.077-.714 1.79-1.75-.098-.542-.598-.97-1.147-.93z"/></svg>
|
||||
|
After Width: | Height: | Size: 581 B |
1
developer_manual/design/img/actions/logout.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1"><path style="block-progression:tb;text-transform:none;text-indent:0" d="M8 0c-.47 0-.96.542-.95 1v6c-.007.528.422 1 .95 1s.958-.472.95-1V1A.967.967 0 0 0 8 0zM4.656 2.5a.952.952 0 0 0-.25.094c-3 1.57-3.918 4.798-3.125 7.47A6.907 6.907 0 0 0 7.97 15c3.358 0 5.876-2.15 6.718-4.78.84-2.634-.058-5.825-3.125-7.595-.434-.254-1.06-.09-1.313.343-.254.434-.09 1.06.344 1.313 2.39 1.38 2.882 3.495 2.28 5.376-.6 1.88-2.343 3.437-4.905 3.437-2.577 0-4.3-1.65-4.876-3.594-.578-1.944-.047-4.05 2.187-5.22a.98.98 0 0 0 .457-1.105.98.98 0 0 0-.987-.675.978.978 0 0 0-.094 0z" color="#000"/></svg>
|
||||
|
After Width: | Height: | Size: 658 B |
1
developer_manual/design/img/actions/mail.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1"><path d="M.89 3a.887.887 0 0 0-.89.89v8.222c0 .492.396.888.89.888h14.22c.494 0 .89-.396.89-.888V3.89a.887.887 0 0 0-.89-.89zm.75 1.028L7.72 10.11h.528l6.11-6.082.612.61-3.64 3.696 2.75 2.805-.61.61-2.805-2.805L8.64 11H7.36L5.335 8.945l-2.806 2.833-.61-.64 2.777-2.804L1.028 4.64z"/></svg>
|
||||
|
After Width: | Height: | Size: 363 B |
1
developer_manual/design/img/actions/menu.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16"><path d="M2 2v2h12V2zm0 5v2h12V7zm0 5v2h12v-2z"/></svg>
|
||||
|
After Width: | Height: | Size: 118 B |
1
developer_manual/design/img/actions/more-white.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1"><path color="#000" fill="none" d="M-62.897-32.993h163.31v97.986h-163.31z"/><path d="M3 6a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm5 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm5 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4z" fill-rule="evenodd" fill="#fff"/></svg>
|
||||
|
After Width: | Height: | Size: 299 B |
1
developer_manual/design/img/actions/more.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1"><path color="#000" fill="none" d="M-62.897-32.993h163.31v97.986h-163.31z"/><path d="M3 6a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm5 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm5 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4z" fill-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 287 B |
BIN
developer_manual/design/img/actions/password.png
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
1
developer_manual/design/img/actions/password.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" viewBox="0 0 71 100"><path d="M35.5 6.25c-13.807 0-25 11.193-25 25v12.5H4.25V87.5h62.5V43.75H60.5v-12.5c0-13.807-11.194-25-25-25zm0 12.5c6.904 0 12.5 5.596 12.5 12.5v12.5H23v-12.5c0-6.904 5.596-12.5 12.5-12.5z"/></svg>
|
||||
|
After Width: | Height: | Size: 281 B |
1
developer_manual/design/img/actions/pause-big.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16"><path d="M1 1v14h5V1zm9 0v14h5V1z"/></svg>
|
||||
|
After Width: | Height: | Size: 105 B |
1
developer_manual/design/img/actions/pause.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16"><path d="M3 3v10h4V3H3zm6 0v10h4V3H9z"/></svg>
|
||||
|
After Width: | Height: | Size: 109 B |
1
developer_manual/design/img/actions/play-add.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16"><path d="M2 1l11 6-11 6zM11 9v2H9v2h2v2h2v-2h2v-2h-2V9z"/></svg>
|
||||
|
After Width: | Height: | Size: 127 B |
1
developer_manual/design/img/actions/play-big.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16"><path d="M0 0l16 8-16 8z"/></svg>
|
||||
|
After Width: | Height: | Size: 96 B |
1
developer_manual/design/img/actions/play-next.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16"><path d="M7 2l7 6-7 6z"/><path d="M2 2l7 6-7 6z"/></svg>
|
||||
|
After Width: | Height: | Size: 119 B |
1
developer_manual/design/img/actions/play-previous.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16"><path d="M9 2L2 8l7 6z"/><path d="M14 2L7 8l7 6z"/></svg>
|
||||
|
After Width: | Height: | Size: 120 B |
1
developer_manual/design/img/actions/play.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16"><path d="M2 2l12 6-12 6z"/></svg>
|
||||
|
After Width: | Height: | Size: 96 B |
1
developer_manual/design/img/actions/public.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16"><g color="#000"><path style="block-progression:tb;text-transform:none;text-indent:0" d="M5.99 5.318a3.332 3.332 0 0 0 0 4.693c.116.118.226.22.355.315l1.383-1.383A1.4 1.4 0 0 1 7.33 6.66l3.352-3.352c.568-.57 1.442-.57 2.01 0s.57 1.442 0 2.01l-1.13 1.132c.34.725.464 1.518.377 2.304l2.094-2.095c1.288-1.29 1.288-3.406 0-4.694s-3.405-1.288-4.693 0L5.99 5.318z"/><path style="block-progression:tb;text-transform:none;text-indent:0" d="M10.01 10.68a3.332 3.332 0 0 0 0-4.692 3.126 3.126 0 0 0-.355-.314L8.272 7.057A1.4 1.4 0 0 1 8.67 9.34l-3.35 3.35c-.57.57-1.444.57-2.013.002s-.568-1.442 0-2.01L4.44 9.55a4.288 4.288 0 0 1-.38-2.305L1.967 9.34c-1.288 1.29-1.288 3.405 0 4.693s3.405 1.29 4.693 0l3.35-3.352z"/></g></svg>
|
||||
|
After Width: | Height: | Size: 778 B |
1
developer_manual/design/img/actions/rename.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16"><path d="M12.594 1.344C12.062 1.314 11.5 1.5 11 2l3 3c1.5-1.5.188-3.563-1.406-3.656zM10 3l-7 7-2 5 5-2 7-7-3-3zm-6.5 7.5l2 2L3 14l-1-1 1.5-2.5z"/></svg>
|
||||
|
After Width: | Height: | Size: 215 B |
10
developer_manual/design/img/actions/screen-off-white.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<filter id="a" style="color-interpolation-filters:sRGB" height="1.3602" width="1.3598" y="-.18008" x="-.17992">
|
||||
<feGaussianBlur stdDeviation="1.0495605"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<path opacity=".5" d="m12.986 1.0117v0.00195c-0.255 0-0.51103 0.095216-0.70703 0.29102l-9.986 9.9844c-0.3918 0.392-0.3918 1.024 0 1.416 0.3917 0.392 1.0242 0.392 1.416 0l9.984-9.9862c0.392-0.392 0.392-1.0223 0-1.4141-0.196-0.1958-0.45103-0.29297-0.70703-0.29297zm-10.986 0.9883c-0.554 0-1 0.446-1 1v8c0 0.15223 0.03927 0.29296 0.09961 0.42188 0.09087-0.30747 0.24693-0.59837 0.48633-0.83789v-0.002l1.4141-1.414v-5.168h5.1699l2-2h-8.17zm12.893 0.56641c-0.08943 0.31553-0.24744 0.61463-0.49219 0.85938l-1.401 1.4004v5.1738h-5.1719l-2 2h1.1719v1h-2v2h6v-2h-2v-1h5c0.554 0 1-0.446 1-1v-8c0-0.1573-0.043-0.3014-0.107-0.4336z" fill-rule="evenodd" filter="url(#a)"/>
|
||||
<path d="m12.986 1.0117v0.00195c-0.255 0-0.51103 0.095216-0.70703 0.29102l-9.986 9.9844c-0.3918 0.392-0.3918 1.024 0 1.416 0.3917 0.392 1.0242 0.392 1.416 0l9.984-9.9862c0.392-0.392 0.392-1.0223 0-1.4141-0.196-0.1958-0.45103-0.29297-0.70703-0.29297zm-10.986 0.9883c-0.554 0-1 0.446-1 1v8c0 0.15223 0.03927 0.29296 0.09961 0.42188 0.09087-0.30747 0.24693-0.59837 0.48633-0.83789v-0.002l1.4141-1.414v-5.168h5.1699l2-2h-8.17zm12.893 0.56641c-0.08943 0.31553-0.24744 0.61463-0.49219 0.85938l-1.401 1.4004v5.1738h-5.1719l-2 2h1.1719v1h-2v2h6v-2h-2v-1h5c0.554 0 1-0.446 1-1v-8c0-0.1573-0.043-0.3014-0.107-0.4336z" fill-rule="evenodd" fill="#fff"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
4
developer_manual/design/img/actions/screen-off.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewBox="0 0 16 16">
|
||||
<path fill-rule="evenodd" d="m12.986 1.0117v0.002c-0.255 0-0.511 0.0952-0.707 0.291l-9.986 9.9843c-0.3918 0.392-0.3918 1.024 0 1.416 0.3917 0.392 1.0242 0.392 1.416 0l9.984-9.9862c0.392-0.392 0.392-1.0223 0-1.4141-0.196-0.1958-0.451-0.293-0.707-0.293zm-10.986 0.9883c-0.554 0-1 0.446-1 1v8c0 0.152 0.0393 0.293 0.0996 0.422 0.0909-0.308 0.2469-0.598 0.4863-0.838v-0.002l1.4141-1.414v-5.168h5.1699l2.0001-2h-8.17zm12.893 0.5664c-0.09 0.3155-0.248 0.6146-0.493 0.8594l-1.4 1.4004v5.1738h-5.1719l-2 2h1.1719v1h-2v2h6v-2h-2v-1h5c0.554 0 1-0.446 1-1v-8c0-0.1573-0.043-0.3014-0.107-0.4336z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 748 B |
10
developer_manual/design/img/actions/screen-white.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<filter id="a" style="color-interpolation-filters:sRGB" height="1.3738" width="1.3471" y="-.18692" x="-.17357">
|
||||
<feGaussianBlur stdDeviation="1.0125"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<path opacity=".5" d="m2 2c-0.554 0-1 0.446-1 1v8c0 0.554 0.446 1 1 1h5v1h-2v2h6v-2h-2v-1h5c0.554 0 1-0.446 1-1v-8c0-0.554-0.446-1-1-1zm1 2h10v6h-10z" fill-rule="evenodd" filter="url(#a)"/>
|
||||
<path d="m2 2c-0.554 0-1 0.446-1 1v8c0 0.554 0.446 1 1 1h5v1h-2v2h6v-2h-2v-1h5c0.554 0 1-0.446 1-1v-8c0-0.554-0.446-1-1-1zm1 2h10v6h-10z" fill-rule="evenodd" fill="#fff"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 710 B |
4
developer_manual/design/img/actions/screen.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewBox="0 0 16 16">
|
||||
<path fill-rule="evenodd" d="m2 2c-0.554 0-1 0.446-1 1v8c0 0.554 0.446 1 1 1h5v1h-2v2h6v-2h-2v-1h5c0.554 0 1-0.446 1-1v-8c0-0.554-0.446-1-1-1zm1 2h10v6h-10z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 321 B |
1
developer_manual/design/img/actions/search-white.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1"><path color="#000" fill="none" d="M-62.897-32.993h163.31v97.986h-163.31z"/><path d="M6 1a5 5 0 0 0 0 10 4.91 4.91 0 0 0 2.656-.78l4.47 4.624A.463.463 0 0 0 13.5 15a.59.59 0 0 0 .406-.188l.938-1.062c.192-.22.195-.536 0-.72L10.25 8.626C10.728 7.86 11 6.97 11 6a5 5 0 0 0-5-5zm0 2a3 3 0 1 1 0 6 3 3 0 0 1 0-6z" fill="#fff" color="#000"/></svg>
|
||||
|
After Width: | Height: | Size: 415 B |
1
developer_manual/design/img/actions/search.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1"><path color="#000" fill="none" d="M-62.897-32.993h163.31v97.986h-163.31z"/><path opacity=".5" d="M6 1a5 5 0 0 0 0 10 4.91 4.91 0 0 0 2.656-.78l4.47 4.624A.463.463 0 0 0 13.5 15a.59.59 0 0 0 .406-.188l.938-1.062c.192-.22.195-.536 0-.72L10.25 8.626C10.728 7.86 11 6.97 11 6a5 5 0 0 0-5-5zm0 2a3 3 0 1 1 0 6 3 3 0 0 1 0-6z" color="#000"/></svg>
|
||||
|
After Width: | Height: | Size: 416 B |
1
developer_manual/design/img/actions/settings-dark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1"><path d="M6.938 0A.43.43 0 0 0 6.5.438v1.25a5.818 5.818 0 0 0-1.53.656l-.907-.906a.436.436 0 0 0-.625 0l-1.5 1.5a.436.436 0 0 0 0 .624l.906.907c-.285.48-.514.976-.656 1.53H.938a.43.43 0 0 0-.438.438v2.125C.5 8.81.69 9 .938 9h1.25a5.82 5.82 0 0 0 .656 1.53l-.907.908a.436.436 0 0 0 0 .625l1.5 1.5c.176.176.45.176.625 0l.907-.907c.48.285.976.514 1.53.656v1.25c0 .25.19.438.437.438h2.125a.43.43 0 0 0 .438-.438v-1.25a5.82 5.82 0 0 0 1.53-.657l.907.907c.176.175.45.175.625 0l1.5-1.5a.436.436 0 0 0 0-.625l-.906-.906A5.79 5.79 0 0 0 13.812 9h1.25a.43.43 0 0 0 .438-.438V6.437A.43.43 0 0 0 15.062 6h-1.25a5.79 5.79 0 0 0-.656-1.532l.906-.906a.436.436 0 0 0 0-.625l-1.5-1.5a.436.436 0 0 0-.625 0l-.906.906a5.816 5.816 0 0 0-1.53-.656V.437A.43.43 0 0 0 9.063 0zM8 4.157a3.344 3.344 0 0 1 0 6.686 3.344 3.344 0 0 1 0-6.686z" display="block"/></svg>
|
||||
|
After Width: | Height: | Size: 915 B |
1
developer_manual/design/img/actions/settings-white.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1"><path d="M6.938 0A.43.43 0 0 0 6.5.438v1.25a5.818 5.818 0 0 0-1.53.656l-.907-.906a.436.436 0 0 0-.625 0l-1.5 1.5a.436.436 0 0 0 0 .624l.906.907c-.285.48-.514.976-.656 1.53H.938a.43.43 0 0 0-.438.438v2.125C.5 8.81.69 9 .938 9h1.25a5.82 5.82 0 0 0 .656 1.53l-.907.908a.436.436 0 0 0 0 .625l1.5 1.5c.176.176.45.176.625 0l.907-.907c.48.285.976.514 1.53.656v1.25c0 .25.19.438.437.438h2.125a.43.43 0 0 0 .438-.438v-1.25a5.82 5.82 0 0 0 1.53-.657l.907.907c.176.175.45.175.625 0l1.5-1.5a.436.436 0 0 0 0-.625l-.906-.906A5.79 5.79 0 0 0 13.812 9h1.25a.43.43 0 0 0 .438-.438V6.437A.43.43 0 0 0 15.062 6h-1.25a5.79 5.79 0 0 0-.656-1.532l.906-.906a.436.436 0 0 0 0-.625l-1.5-1.5a.436.436 0 0 0-.625 0l-.906.906a5.816 5.816 0 0 0-1.53-.656V.437A.43.43 0 0 0 9.063 0zM8 4.157a3.344 3.344 0 0 1 0 6.686 3.344 3.344 0 0 1 0-6.686z" display="block" fill="#fff"/></svg>
|
||||
|
After Width: | Height: | Size: 927 B |
1
developer_manual/design/img/actions/settings.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1"><path d="M6.938 0A.43.43 0 0 0 6.5.438v1.25a5.818 5.818 0 0 0-1.53.656l-.907-.906a.436.436 0 0 0-.625 0l-1.5 1.5a.436.436 0 0 0 0 .624l.906.907c-.285.48-.514.976-.656 1.53H.938a.43.43 0 0 0-.438.438v2.125C.5 8.81.69 9 .938 9h1.25a5.82 5.82 0 0 0 .656 1.53l-.907.908a.436.436 0 0 0 0 .625l1.5 1.5c.176.176.45.176.625 0l.907-.907c.48.285.976.514 1.53.656v1.25c0 .25.19.438.437.438h2.125a.43.43 0 0 0 .438-.438v-1.25a5.82 5.82 0 0 0 1.53-.657l.907.907c.176.175.45.175.625 0l1.5-1.5a.436.436 0 0 0 0-.625l-.906-.906A5.79 5.79 0 0 0 13.812 9h1.25a.43.43 0 0 0 .438-.438V6.437A.43.43 0 0 0 15.062 6h-1.25a5.79 5.79 0 0 0-.656-1.532l.906-.906a.436.436 0 0 0 0-.625l-1.5-1.5a.436.436 0 0 0-.625 0l-.906.906a5.816 5.816 0 0 0-1.53-.656V.437A.43.43 0 0 0 9.063 0zM8 4.157a3.344 3.344 0 0 1 0 6.686 3.344 3.344 0 0 1 0-6.686z" display="block" opacity=".5"/></svg>
|
||||
|
After Width: | Height: | Size: 927 B |
BIN
developer_manual/design/img/actions/share.png
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
1
developer_manual/design/img/actions/share.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16"><path d="M12.228 1a2.457 2.457 0 0 0-2.46 2.454c0 .075.01.15.016.224L5.05 6.092a2.445 2.445 0 0 0-1.596-.586A2.453 2.453 0 0 0 1 7.96a2.453 2.453 0 0 0 2.454 2.455 2.45 2.45 0 0 0 1.46-.477l4.865 2.474c-.004.044-.01.09-.01.134a2.457 2.457 0 1 0 .804-1.818l-4.696-2.4c.02-.123.035-.25.035-.378 0-.072-.01-.144-.015-.214l4.74-2.414A2.457 2.457 0 1 0 12.228.99z"/></svg>
|
||||
|
After Width: | Height: | Size: 430 B |
1
developer_manual/design/img/actions/shared.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16"><path d="M12.228 1a2.457 2.457 0 0 0-2.46 2.454c0 .075.01.15.016.224L5.05 6.092a2.445 2.445 0 0 0-1.596-.586A2.453 2.453 0 0 0 1 7.96a2.453 2.453 0 0 0 2.454 2.455 2.45 2.45 0 0 0 1.46-.477l4.865 2.474c-.004.044-.01.09-.01.134a2.457 2.457 0 1 0 .804-1.818l-4.696-2.4c.02-.123.035-.25.035-.378 0-.072-.01-.144-.015-.214l4.74-2.414A2.457 2.457 0 1 0 12.228.99z"/></svg>
|
||||
|
After Width: | Height: | Size: 430 B |
1
developer_manual/design/img/actions/sound-off.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16"><path d="M1 6v4h3l3 3h1V3H7L4 6z"/></svg>
|
||||
|
After Width: | Height: | Size: 104 B |
1
developer_manual/design/img/actions/sound.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16"><path d="M1 6v4h3l3 3h1V3H7L4 6zM13.25 3l-.78.625C13.433 4.825 14 6.34 14 8s-.566 3.175-1.53 4.375l.78.625C14.348 11.63 15 9.892 15 8s-.652-3.63-1.75-5zm-1.563 1.25l-.812.656C11.563 5.763 12 6.816 12 8s-.437 2.237-1.125 3.094l.813.656C12.51 10.723 13 9.42 13 8s-.49-2.723-1.313-3.75zM10.126 5.5l-.78.625C9.754 6.638 10 7.29 10 8s-.245 1.36-.656 1.875l.78.625a4.008 4.008 0 0 0 0-5z"/></svg>
|
||||
|
After Width: | Height: | Size: 453 B |
1
developer_manual/design/img/actions/star-dark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="22" width="22"><path d="M11.017.06l2.946 7.384L22 8.077l-6.11 5.082L17.77 21l-6.72-4.242-6.876 4.213 1.957-7.703L0 8.03l7.932-.52z"/></svg>
|
||||
|
After Width: | Height: | Size: 188 B |
BIN
developer_manual/design/img/actions/star.png
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
1
developer_manual/design/img/actions/star.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="22" width="22"><path d="M11.017.06l2.946 7.384L22 8.077l-6.11 5.082L17.77 21l-6.72-4.242-6.876 4.213 1.957-7.703L0 8.03l7.932-.52z" opacity=".5"/></svg>
|
||||
|
After Width: | Height: | Size: 200 B |
BIN
developer_manual/design/img/actions/starred.png
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
1
developer_manual/design/img/actions/starred.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="22" width="22"><path fill="#FC0" d="M11.017.06l2.946 7.384L22 8.077l-6.11 5.082L17.77 21l-6.72-4.242-6.876 4.213 1.957-7.703L0 8.03l7.932-.52z"/></svg>
|
||||
|
After Width: | Height: | Size: 199 B |
BIN
developer_manual/design/img/actions/tag.png
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
1
developer_manual/design/img/actions/tag.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1" viewBox="0 0 16 16"><path color="#000" fill="none" d="M-62.897-32.993h163.31v97.986h-163.31z"/><path d="M6.186.96L1.38.975c-.273 0-.347.21-.348.346l-.015 4.802 8.723 8.722a.498.498 0 0 0 .71 0l4.456-4.457a.5.5 0 0 0 .002-.71v.01L6.54 1.318 6.186.964zM4.02 2.814a1.144 1.144 0 0 1 1.143 1.144A1.144 1.144 0 0 1 4.02 5.1a1.144 1.144 0 0 1-1.145-1.143A1.144 1.144 0 0 1 4.02 2.813z"/></svg>
|
||||
|
After Width: | Height: | Size: 462 B |
1
developer_manual/design/img/actions/toggle-filelist.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1"><rect rx=".5" ry=".5" height="4" width="4" y="1" x="1"/><rect rx=".5" ry=".5" height="1" width="9" y="2" x="6"/><rect rx=".5" ry=".5" height="4" width="4" y="6" x="1"/><rect rx=".5" ry=".5" height="1" width="9" y="7" x="6"/><rect rx=".5" ry=".5" height="4" width="4" y="11" x="1"/><rect rx=".5" ry=".5" height="1" width="9" y="12" x="6"/></svg>
|
||||
|
After Width: | Height: | Size: 419 B |
1
developer_manual/design/img/actions/toggle-pictures.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1"><rect rx=".5" ry=".5" height="6" width="6" y="1" x="1"/><rect rx=".5" ry=".5" height="6" width="6" y="1" x="9"/><rect rx=".5" ry=".5" height="6" width="6" y="9" x="9"/><rect rx=".5" ry=".5" height="6" width="6" y="9" x="1"/></svg>
|
||||
|
After Width: | Height: | Size: 305 B |
1
developer_manual/design/img/actions/toggle.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" viewBox="0 0 16 16" width="16" overflow="visible"><path d="M8 3C4.89 3 2.073 4.72 0 7.5 2.073 10.28 4.89 12 8 12c3.11 0 5.927-1.72 8-4.5C13.927 4.72 11.11 3 8 3zm0 1.5a3 3 0 1 1 0 6 3 3 0 0 1 0-6zM8 6a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3z" fill="#222"/></svg>
|
||||
|
After Width: | Height: | Size: 310 B |
1
developer_manual/design/img/actions/triangle-e.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16"><path style="block-progression:tb;text-transform:none;text-indent:0" d="M6 12l4-4-3.994-4z" color="#000"/></svg>
|
||||
|
After Width: | Height: | Size: 175 B |
1
developer_manual/design/img/actions/triangle-n.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16"><path style="block-progression:tb;text-transform:none;text-indent:0" d="M12 10L8 6 4 9.994z" color="#000"/></svg>
|
||||
|
After Width: | Height: | Size: 176 B |
1
developer_manual/design/img/actions/triangle-s.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16"><path style="block-progression:tb;text-transform:none;text-indent:0" d="M4 6l4 4 4-3.994z" color="#000"/></svg>
|
||||
|
After Width: | Height: | Size: 174 B |
1
developer_manual/design/img/actions/upload-white.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16"><path fill="#fff" d="M8 1L2 7h4v4h4V7h4zM2 13v2h12v-2z"/></svg>
|
||||
|
After Width: | Height: | Size: 126 B |
1
developer_manual/design/img/actions/upload.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16"><path d="M8 1L2 7h4v4h4V7h4zM2 13v2h12v-2z"/></svg>
|
||||
|
After Width: | Height: | Size: 114 B |
4
developer_manual/design/img/actions/user-plus.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 1792 1792">
|
||||
<path d="m576 896q-159 0-271.5-112.5t-112.5-271.5 112.5-271.5 271.5-112.5 271.5 112.5 112.5 271.5-112.5 271.5-271.5 112.5zm960 128h352q13 0 22.5 9.5t9.5 22.5v192q0 13-9.5 22.5t-22.5 9.5h-352v352q0 13-9.5 22.5t-22.5 9.5h-192q-13 0-22.5-9.5t-9.5-22.5v-352h-352q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h352v-352q0-13 9.5-22.5t22.5-9.5h192q13 0 22.5 9.5t9.5 22.5v352zm-736 224q0 52 38 90t90 38h256v238q-68 50-171 50h-874q-121 0-194-69t-73-190q0-53 3.5-103.5t14-109 26.5-108.5 43-97.5 62-81 85.5-53.5 111.5-20q19 0 39 17 79 61 154.5 91.5t164.5 30.5 164.5-30.5 154.5-91.5q20-17 39-17 132 0 217 96h-223q-52 0-90 38t-38 90v192z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 777 B |
4
developer_manual/design/img/actions/user-times.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 1792 1792">
|
||||
<path d="m576 896q-159 0-271.5-112.5t-112.5-271.5 112.5-271.5 271.5-112.5 271.5 112.5 112.5 271.5-112.5 271.5-271.5 112.5zm1077 320l249 249q9 9 9 23 0 13-9 22l-136 136q-9 9-22 9-14 0-23-9l-249-249-249 249q-9 9-23 9-13 0-22-9l-136-136q-9-9-9-22 0-14 9-23l249-249-249-249q-9-9-9-23 0-13 9-22l136-136q9-9 22-9 14 0 23 9l249 249 249-249q9-9 23-9 13 0 22 9l136 136q9 9 9 22 0 14-9 23zm-498 0l-181 181q-37 37-37 91 0 53 37 90l83 83q-21 3-44 3h-874q-121 0-194-69t-73-190q0-53 3.5-103.5t14-109 26.5-108.5 43-97.5 62-81 85.5-53.5 111.5-20q19 0 39 17 154 122 319 122t319-122q20-17 39-17 28 0 57 6-28 27-41 50t-13 56q0 54 37 91z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 763 B |
1
developer_manual/design/img/actions/user.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1"><path color="#000" fill="none" d="M-62.897-32.993h163.31v97.986h-163.31z"/><path style="block-progression:tb;text-transform:none;text-indent:0" d="M8.404 1c-1.732 0-3.2 1.266-3.2 2.9.012.516.058 1.153.366 2.5v.033l.034.034c.1.283.243.445.433.666s.417.482.633.7l.067.067c.043.186.095.387.133.567.103.478.093.817.067.933-.744.26-1.67.572-2.5.933-.466.203-.888.384-1.233.6-.345.217-.688.38-.8.867-.16.633-.2.754-.4 1.533-.027.21.083.43.267.534C3.78 14.68 6.096 15.01 8.405 15s4.606-.356 6.066-1.133c.117-.074.143-.11.133-.234-.043-.69-.08-1.367-.133-1.766a.537.537 0 0 0-.133-.267c-.464-.554-1.157-.892-1.967-1.233-.74-.312-1.607-.635-2.466-1-.05-.107-.096-.42 0-.9.025-.13.066-.268.1-.4.08-.09.143-.165.233-.267.19-.218.396-.447.566-.667s.31-.408.4-.666l.034-.034c.348-1.406.348-1.992.366-2.5V3.9c0-1.634-1.468-2.9-3.2-2.9z" color="#000"/></svg>
|
||||
|
After Width: | Height: | Size: 918 B |
4
developer_manual/design/img/actions/verified.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1">
|
||||
<path d="m8 0a3 3 0 0 0 -2.8281 2.0098 3 3 0 0 0 -0.1719 -0.0098 3 3 0 0 0 -3 3 3 3 0 0 0 0.0059 0.1719 3 3 0 0 0 -2.0059 2.8281 3 3 0 0 0 2.0098 2.828 3 3 0 0 0 -0.0098 0.172 3 3 0 0 0 3 3 3 3 0 0 0 0.1719 -0.006 3 3 0 0 0 2.8281 2.006 3 3 0 0 0 2.828 -2.01 3 3 0 0 0 0.172 0.01 3 3 0 0 0 3 -3 3 3 0 0 0 -0.006 -0.172 3 3 0 0 0 2.006 -2.828 3 3 0 0 0 -2.01 -2.8281 3 3 0 0 0 0.01 -0.1719 3 3 0 0 0 -3 -3 3 3 0 0 0 -0.172 0.0059 3 3 0 0 0 -2.828 -2.0059zm2.934 4.5625 1.433 1.4336-5.7772 5.7789-2.9511-2.9508 1.414-1.414 1.5371 1.5351 4.3442-4.3828z" fill-rule="evenodd" fill="#0082c9"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 729 B |
4
developer_manual/design/img/actions/verify.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1">
|
||||
<path d="m8 0a3 3 0 0 0 -2.8281 2.0098 3 3 0 0 0 -0.1719 -0.0098 3 3 0 0 0 -3 3 3 3 0 0 0 0.0059 0.1719 3 3 0 0 0 -2.0059 2.8281 3 3 0 0 0 2.0098 2.828 3 3 0 0 0 -0.0098 0.172 3 3 0 0 0 3 3 3 3 0 0 0 0.1719 -0.006 3 3 0 0 0 2.8281 2.006 3 3 0 0 0 2.828 -2.01 3 3 0 0 0 0.172 0.01 3 3 0 0 0 3 -3 3 3 0 0 0 -0.006 -0.172 3 3 0 0 0 2.006 -2.828 3 3 0 0 0 -2.01 -2.8281 3 3 0 0 0 0.01 -0.1719 3 3 0 0 0 -3 -3 3 3 0 0 0 -0.172 0.0059 3 3 0 0 0 -2.828 -2.0059zm2.934 4.5625 1.433 1.4336-5.7772 5.7789-2.9511-2.9508 1.414-1.414 1.5371 1.5351 4.3442-4.3828z" fill-rule="evenodd" fill="#969696"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 729 B |
4
developer_manual/design/img/actions/verifying.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1">
|
||||
<path d="m8 0a3 3 0 0 0 -2.8281 2.0098 3 3 0 0 0 -0.1719 -0.0098 3 3 0 0 0 -3 3 3 3 0 0 0 0.0059 0.1719 3 3 0 0 0 -2.0059 2.8281 3 3 0 0 0 2.0098 2.828 3 3 0 0 0 -0.0098 0.172 3 3 0 0 0 3 3 3 3 0 0 0 0.1719 -0.006 3 3 0 0 0 2.8281 2.006 3 3 0 0 0 2.828 -2.01 3 3 0 0 0 0.172 0.01 3 3 0 0 0 3 -3 3 3 0 0 0 -0.006 -0.172 3 3 0 0 0 2.006 -2.828 3 3 0 0 0 -2.01 -2.8281 3 3 0 0 0 0.01 -0.1719 3 3 0 0 0 -3 -3 3 3 0 0 0 -0.172 0.0059 3 3 0 0 0 -2.828 -2.0059zm-0.0352 3.4922c0.58455-0.00435 1.1821 0.096216 1.7559 0.33398 0.69638 0.28822 1.2735 0.7423 1.7246 1.2832l1.055-1.0547v3.375h-3.375l1.125-1.125c-0.2925-0.3924-0.6924-0.7131-1.1777-0.9141-1.4351-0.5944-3.0794 0.0942-3.6739 1.5293l-1.5644-0.6504c0.7133-1.7221 2.3772-2.7643 4.1308-2.7773zm-4.4648 5.3437h3.375l-0.98438 0.98438c0.2773 0.3207 0.6189 0.5997 1.0371 0.7737 1.4351 0.594 3.0793-0.095 3.6743-1.5295l1.5625 0.65039c-0.951 2.2961-3.5905 3.3941-5.8867 2.4431-0.6318-0.261-1.1678-0.651-1.5996-1.125l-1.1777 1.178v-3.3751z" fill-rule="evenodd" fill="#0082c9"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
10
developer_manual/design/img/actions/video-off-white.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<filter id="a" style="color-interpolation-filters:sRGB" height="1.3818" width="1.3405" y="-.19090" x="-.17027">
|
||||
<feGaussianBlur stdDeviation="0.99326857"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<path opacity=".5" d="m13.486 1.5137c-0.255 0-0.511 0.0971-0.707 0.2929l-10.486 10.484c-0.3918 0.392-0.3918 1.024 0 1.416 0.3917 0.392 1.0242 0.392 1.416 0l10.484-10.486c0.392-0.392 0.392-1.0226 0-1.4144-0.196-0.1958-0.451-0.2929-0.707-0.2929zm-10.486 1.4863c-1.108 0-2 0.892-2 2v6c0 0.368 0.1054 0.706 0.2773 1.002 0.0849-0.149 0.1825-0.292 0.3086-0.418l8.3457-8.3457c-0.2792-0.1477-0.5926-0.2383-0.9316-0.2383h-6zm12 0.8066c-0.034 0.0401-0.062 0.0835-0.1 0.1211l-9.0699 9.0723h3.1699c1.108 0 2-0.892 2-2v-1.334l4 3.334v-9.1934z" filter="url(#a)"/>
|
||||
<path fill="#fff" d="m13.486 1.5137c-0.255 0-0.511 0.0971-0.707 0.2929l-10.486 10.484c-0.3918 0.392-0.3918 1.024 0 1.416 0.3917 0.392 1.0242 0.392 1.416 0l10.484-10.486c0.392-0.392 0.392-1.0226 0-1.4144-0.196-0.1958-0.451-0.2929-0.707-0.2929zm-10.486 1.4863c-1.108 0-2 0.892-2 2v6c0 0.368 0.1054 0.706 0.2773 1.002 0.0849-0.149 0.1825-0.292 0.3086-0.418l8.3457-8.3457c-0.2792-0.1477-0.5926-0.2383-0.9316-0.2383h-6zm12 0.8066c-0.034 0.0401-0.062 0.0835-0.1 0.1211l-9.0699 9.0723h3.1699c1.108 0 2-0.892 2-2v-1.334l4 3.334v-9.1934z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
4
developer_manual/design/img/actions/video-off.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewBox="0 0 16 16">
|
||||
<path d="m13.486 1.5137c-0.255 0-0.511 0.0971-0.707 0.2929l-10.486 10.484c-0.3918 0.392-0.3918 1.024 0 1.416 0.3917 0.392 1.0242 0.392 1.416 0l10.484-10.486c0.392-0.392 0.392-1.0226 0-1.4144-0.196-0.1958-0.451-0.2929-0.707-0.2929zm-10.486 1.4863c-1.108 0-2 0.892-2 2v6c0 0.368 0.1054 0.706 0.2773 1.002 0.0849-0.149 0.1825-0.292 0.3086-0.418l8.3457-8.3457c-0.2792-0.1477-0.5926-0.2383-0.9316-0.2383h-6zm12 0.8066c-0.034 0.0401-0.062 0.0835-0.1 0.1211l-9.0699 9.0723h3.1699c1.108 0 2-0.892 2-2v-1.334l4 3.334v-9.1934z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 681 B |
10
developer_manual/design/img/actions/video-white.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<filter id="a" style="color-interpolation-filters:sRGB" height="1.432" width="1.3086" y="-.216" x="-.15429">
|
||||
<feGaussianBlur stdDeviation="0.9"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<path opacity=".5" d="m3 3c-1.108 0-2 0.892-2 2v6c0 1.108 0.892 2 2 2h6c1.108 0 2-0.892 2-2v-1.334l4 3.334v-10l-4 3.334v-1.334c0-1.108-0.892-2-2-2z" filter="url(#a)"/>
|
||||
<path d="m3 3c-1.108 0-2 0.892-2 2v6c0 1.108 0.892 2 2 2h6c1.108 0 2-0.892 2-2v-1.334l4 3.334v-10l-4 3.334v-1.334c0-1.108-0.892-2-2-2z" fill="#fff"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 660 B |