Designer 14 update
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
3
.gitignore
vendored
@@ -23,3 +23,6 @@ developer_manual/api/
|
||||
*.db
|
||||
*.snag
|
||||
|
||||
# Temp scss files
|
||||
developer_manual/design/*.scss
|
||||
developer_manual/design/*.css
|
||||
|
||||
@@ -162,5 +162,13 @@ Process
|
||||
3. Move the resulting ``rst`` files in place and reference them
|
||||
4. Wrap text lines at 80 chars, apply markup fixes
|
||||
|
||||
Icons
|
||||
^^^^^^^
|
||||
To compile and update the icons list in the designer manual, you will also need
|
||||
1. inkscape
|
||||
2. sass
|
||||
3. unzip
|
||||
4. wget
|
||||
|
||||
.. _CC BY 3.0: http://creativecommons.org/licenses/by/3.0/deed.en_US
|
||||
.. _`Xcode command line tools`: http://stackoverflow.com/questions/9329243/xcode-4-4-and-later-install-command-line-tools
|
||||
|
||||
@@ -5,3 +5,58 @@
|
||||
============
|
||||
Main content
|
||||
============
|
||||
|
||||
Since 14, we standardized our structure.
|
||||
|
||||
Your application will be directly injected into the ``#content`` div.
|
||||
|
||||
|
||||
.. code-block:: html
|
||||
|
||||
<header>
|
||||
<div class="header-left">
|
||||
<!-- apps menu -->
|
||||
</div>
|
||||
<div class="header-right">
|
||||
<!-- search - contactsmenu - settingsmenu - ... -->
|
||||
</div>
|
||||
</header>
|
||||
<div id="content" class="app-YOURAPPID">
|
||||
<div id="app-navigation" class="">
|
||||
<div class="app-navigation-new">
|
||||
<!-- app 'new' button -->
|
||||
</div>
|
||||
<ul id="usergrouplist">
|
||||
<!-- app navigation -->
|
||||
</ul>
|
||||
<div id="app-settings">
|
||||
<!-- app settings -->
|
||||
</div>
|
||||
</div>
|
||||
<div id="app-content">
|
||||
<div id="app-navigation-toggle" class="icon-menu"></div>
|
||||
<!-- app-content-wrapper is optional, only use if app-content-list -->
|
||||
<div id="app-content-wrapper">
|
||||
<div class="app-content-list">
|
||||
<!-- app list -->
|
||||
</div>
|
||||
<div class="app-content-detail"></div>
|
||||
<!-- app content -->
|
||||
</div>
|
||||
</div>
|
||||
<div id="app-sidebar"></div>
|
||||
</div>
|
||||
|
||||
|
||||
Rules and information
|
||||
======================
|
||||
|
||||
* You cannot nor need to modify the header or the outside elements of your application.
|
||||
* The whole body needs to scroll to be compatible with the mobile views. Therefore the sidebar and the app-navigation are fixed/sticky.
|
||||
* Unless you application does not require a scrollable area, not not use any overflow properties on the parents of your content.
|
||||
* The ``app-navigation-toggle`` is automatically injected. The navigation hide/show is automatically managed.
|
||||
* Do not use ``#content-wrapper`` anymore
|
||||
* If your app is injecting itself by replacing the #content element, make sure to keep the #content id
|
||||
* If you use the ``app-content-list`` standard, the ``app-content-details`` div will be hidden in mobile mode (full screen).
|
||||
You will need to add the ``showdetails`` class to the ``app-content-list`` to show the main content.
|
||||
On mobile view, the whole list/details section (depending on which is shown) will scroll the body
|
||||
|
||||
79
developer_manual/design/css.rst
Normal file
@@ -0,0 +1,79 @@
|
||||
.. sectionauthor:: John Molakvoæ <skjnldsv@protonmail.com>
|
||||
.. codeauthor:: John Molakvoæ <skjnldsv@protonmail.com>
|
||||
.. _css:
|
||||
|
||||
=============
|
||||
SCSS
|
||||
=============
|
||||
|
||||
Since the version 12 of Nextcloud, we support ``SCSS`` natively.
|
||||
You can migrate your files by simply renaming your ``.css`` files to ``.scss``.
|
||||
The server will automatically compile, cache and and serve it.
|
||||
The priority goes to the scss file. So having two file with the same name and a ``scss`` & ``css`` extension
|
||||
will ensure a retro compatibility with <12 versions as scss files will be ignored by the server.
|
||||
|
||||
.. _cssicons:
|
||||
|
||||
=============
|
||||
Icons
|
||||
=============
|
||||
|
||||
Since nextcloud 14, we added some scss mixins and functions to add and manage svg icons.
|
||||
|
||||
This function need to be use to add a background-image. It create a list of every icons used in nextcloud and create an associated list of variables.
|
||||
This allow us to revert the colours of the svgs when using the dark theme.
|
||||
|
||||
.. code-block:: scss
|
||||
|
||||
/**
|
||||
* SVG COLOR API
|
||||
*
|
||||
* @param string $icon the icon filename
|
||||
* @param string $dir the icon folder within /core/img if $core or app name
|
||||
* @param string $color the desired color in hexadecimal
|
||||
* @param int $version the version of the file
|
||||
* @param bool [$core] search icon in core
|
||||
*
|
||||
* @returns string the url to the svg api endpoint
|
||||
*/
|
||||
@mixin icon-color($icon, $dir, $color, $version: 1, $core: false)
|
||||
|
||||
// Examples
|
||||
.icon-menu {
|
||||
@include icon-color('menu', 'actions', $color-white, 1, true);
|
||||
// --icon-menu: url('/svg/core/actions/menu/ffffff?v=1');
|
||||
// background-image: var(--icon-menu)
|
||||
}
|
||||
.icon-folder {
|
||||
@include icon-color('folder', 'files', $color-black);
|
||||
// --icon-folder: url('/svg/files/folder/000000?v=1');
|
||||
// background-image: var(--icon-folder)
|
||||
}
|
||||
|
||||
More informations about the :ref:`svg color api <svgcolorapi>`.
|
||||
|
||||
|
||||
The ``icon-black-white`` mixin is a shortand to the ``icon-color`` function but it generates twwo set of icons with the suffixe ``-white`` and without (default black).
|
||||
|
||||
|
||||
.. code-block:: scss
|
||||
|
||||
/**
|
||||
* Create black and white icons
|
||||
* This will add a default black version of and an additional white version when .icon-white is applied
|
||||
*/
|
||||
@mixin icon-black-white($icon, $dir, $version, $core: false)
|
||||
|
||||
// Examples
|
||||
@include icon-black-white('add', 'actions', 1, true);
|
||||
|
||||
// Will result in
|
||||
.icon-add {
|
||||
@include icon-color('add', 'actions', $color-black, 1, true);
|
||||
}
|
||||
.icon-add-white,
|
||||
.icon-add.icon-white {
|
||||
@include icon-color('add', 'actions', $color-white, 1, true);
|
||||
}
|
||||
|
||||
|
||||
@@ -7,20 +7,25 @@ import re
|
||||
import os
|
||||
|
||||
iconregex = re.compile("(\.icon-[a-z-]*)")
|
||||
pathregex = r"url\('([a-z-./]*\.svg)"
|
||||
pathregex = r"url\(\"([a-z0-9-./]+)"
|
||||
|
||||
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 -p master.zip 'server-master/core/css/functions.scss' > functions.scss")
|
||||
os.system("unzip -p master.zip 'server-master/core/css/variables.scss' > variables.scss")
|
||||
os.system("unzip -u master.zip 'server-master/core/img/*'")
|
||||
os.system('echo \'$webroot:"";@import "functions";@import "variables";@import "icons";\' | sass --scss -s > icons.css')
|
||||
os.system('mv ./server-master/core/img .')
|
||||
os.system('rm master.zip')
|
||||
os.system('rm *.scss')
|
||||
os.system('rm -R ./.sass-cache/')
|
||||
os.system('rm -R ./server-master/')
|
||||
|
||||
icons = {}
|
||||
|
||||
scss = open('icons.scss')
|
||||
scss = open('icons.css')
|
||||
lines = scss.readlines()
|
||||
|
||||
for i, line in enumerate(lines):
|
||||
@@ -31,9 +36,12 @@ for i, line in enumerate(lines):
|
||||
|
||||
result = ""
|
||||
for icon, path in sorted(icons.items()):
|
||||
result += ".. figure:: " + path[3:-3]+"*\n :height: 32\n :width: 32\n\n " + icon[1:] + "\n\n"
|
||||
os.system('inkscape -z '+path[3:]+' -e '+path[3:-3]+'png')
|
||||
path = path.split('/')
|
||||
localpath = '/'.join(path[3:5])
|
||||
result += ".. figure:: img/" + localpath + "*\n :height: 32\n :width: 32\n\n " + icon[1:] + "\n\n"
|
||||
os.system('inkscape -z img/' + localpath + '.svg -e img/' + localpath + '.png')
|
||||
|
||||
f = open('icons.txt', 'w')
|
||||
f.write(result);
|
||||
f.close()
|
||||
f.close()
|
||||
os.system('rm *.css')
|
||||
@@ -10,3 +10,28 @@ White icons only have a grey background on this documentation page for readabili
|
||||
|
||||
.. include:: icons.txt
|
||||
:class: icons-flex
|
||||
|
||||
.. _svgcolorapi:
|
||||
|
||||
=====================
|
||||
Svg color api
|
||||
=====================
|
||||
|
||||
More informations about scss and this api: :ref:`scss mixins and functions <cssicons>`
|
||||
|
||||
You can request and color any svg icons used in nextcloud with this api.
|
||||
The server will directly change the colours of the ``circle``, ``rect`` and ``path`` elements in the svg you provide.
|
||||
Simply use those urls:
|
||||
|
||||
* ``https://yourdomain/svg/core/actions/menu/ffffff``
|
||||
Will serve the svg located in the core/img directory as a white icon
|
||||
``/core/img/actions/menu.svg``
|
||||
|
||||
* ``https://yourdomain/svg/core/places/calendar/0082c9``
|
||||
Will serve the svg located in the core/img directory with the color #0082c9
|
||||
``/core/img/places/calendar.svg``
|
||||
|
||||
* ``https://yourdomain/svg/files/app/000000``
|
||||
Will serve the svg located in the files app ``img`` directory ad a black icon
|
||||
``/app/files/img/app.svg``
|
||||
|
||||
|
||||
@@ -1,551 +0,0 @@
|
||||
/**
|
||||
* @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');
|
||||
}
|
||||
@@ -1,646 +1,658 @@
|
||||
.. figure:: img/actions/add.*
|
||||
.. figure:: img/actions/add*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-add
|
||||
|
||||
.. figure:: img/actions/audio.*
|
||||
.. figure:: img/actions/address*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-address
|
||||
|
||||
.. figure:: img/actions/audio*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-audio
|
||||
|
||||
.. figure:: img/actions/audio-off.*
|
||||
.. figure:: img/actions/audio-off*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-audio-off
|
||||
|
||||
.. figure:: img/actions/audio-off-white.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-audio-off-white
|
||||
|
||||
.. figure:: img/actions/audio-white.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-audio-white
|
||||
|
||||
.. figure:: img/breadcrumb.*
|
||||
.. figure:: img/*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-breadcrumb
|
||||
|
||||
.. figure:: img/places/calendar.*
|
||||
.. figure:: img/places/calendar*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-calendar
|
||||
|
||||
.. figure:: img/places/calendar-dark.*
|
||||
.. figure:: img/places/calendar*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-calendar-dark
|
||||
|
||||
.. figure:: img/actions/caret.*
|
||||
.. figure:: img/actions/caret*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-caret
|
||||
|
||||
.. figure:: img/actions/caret-dark.*
|
||||
.. figure:: img/actions/caret*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-caret-dark
|
||||
|
||||
.. figure:: img/categories/bundles.*
|
||||
.. figure:: img/categories/bundles*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-category-app-bundles
|
||||
|
||||
.. figure:: img/categories/auth.*
|
||||
.. figure:: img/categories/auth*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-category-auth
|
||||
|
||||
.. figure:: img/categories/customization.*
|
||||
.. figure:: img/categories/customization*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-category-customization
|
||||
|
||||
.. figure:: img/actions/close.*
|
||||
.. figure:: img/actions/close*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-category-disabled
|
||||
|
||||
.. figure:: img/actions/checkmark.*
|
||||
.. figure:: img/actions/checkmark*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-category-enabled
|
||||
|
||||
.. figure:: img/categories/files.*
|
||||
.. figure:: img/categories/files*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-category-files
|
||||
|
||||
.. figure:: img/actions/user.*
|
||||
.. figure:: img/categories/games*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-category-games
|
||||
|
||||
.. figure:: img/actions/user*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-category-installed
|
||||
|
||||
.. figure:: img/categories/integration.*
|
||||
.. figure:: img/categories/integration*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-category-integration
|
||||
|
||||
.. figure:: img/categories/monitoring.*
|
||||
.. figure:: img/categories/monitoring*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-category-monitoring
|
||||
|
||||
.. figure:: img/categories/multimedia.*
|
||||
.. figure:: img/categories/multimedia*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-category-multimedia
|
||||
|
||||
.. figure:: img/categories/office.*
|
||||
.. figure:: img/categories/office*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-category-office
|
||||
|
||||
.. figure:: img/categories/organization.*
|
||||
.. figure:: img/categories/organization*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-category-organization
|
||||
|
||||
.. figure:: img/categories/social.*
|
||||
.. figure:: img/actions/search*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-category-search
|
||||
|
||||
.. figure:: img/actions/password*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-category-security
|
||||
|
||||
.. figure:: img/categories/social*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-category-social
|
||||
|
||||
.. figure:: img/actions/settings-dark.*
|
||||
.. figure:: img/actions/settings-dark*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-category-tools
|
||||
|
||||
.. figure:: img/actions/download.*
|
||||
.. figure:: img/actions/download*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-category-updates
|
||||
|
||||
.. figure:: img/actions/checkmark.*
|
||||
.. figure:: img/actions/checkmark*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-checkmark
|
||||
|
||||
.. figure:: img/actions/checkmark-color.*
|
||||
.. figure:: img/actions/checkmark*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-checkmark-color
|
||||
|
||||
.. figure:: img/actions/checkmark-white.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-checkmark-white
|
||||
|
||||
.. figure:: img/actions/clippy.*
|
||||
.. figure:: img/actions/clippy*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-clippy
|
||||
|
||||
.. figure:: img/actions/close.*
|
||||
.. figure:: img/actions/close*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-close
|
||||
|
||||
.. figure:: img/actions/close-white.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-close-white
|
||||
|
||||
.. figure:: img/actions/comment.*
|
||||
.. figure:: img/actions/comment*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-comment
|
||||
|
||||
.. figure:: img/actions/confirm.*
|
||||
.. figure:: img/actions/confirm*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-confirm
|
||||
|
||||
.. figure:: img/actions/confirm-white.*
|
||||
.. figure:: img/actions/confirm-fade*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-confirm-white
|
||||
icon-confirm-fade
|
||||
|
||||
.. figure:: img/places/contacts.*
|
||||
.. figure:: img/places/contacts*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-contacts
|
||||
|
||||
.. figure:: img/places/contacts-dark.*
|
||||
.. figure:: img/places/contacts*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-contacts-dark
|
||||
|
||||
.. figure:: img/actions/delete.*
|
||||
.. figure:: img/actions/delete*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-delete
|
||||
|
||||
.. figure:: img/actions/delete-white.*
|
||||
.. figure:: img/actions/delete*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-delete-white
|
||||
|
||||
.. figure:: img/actions/details.*
|
||||
.. figure:: img/clients/desktop*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-desktop
|
||||
|
||||
.. figure:: img/actions/details*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-details
|
||||
|
||||
.. figure:: img/actions/download.*
|
||||
.. figure:: img/actions/disabled-user*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-disabled-user
|
||||
|
||||
.. figure:: img/actions/disabled-users*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-disabled-users
|
||||
|
||||
.. figure:: img/actions/download*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-download
|
||||
|
||||
.. figure:: img/actions/download-white.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-download-white
|
||||
|
||||
.. figure:: img/actions/edit.*
|
||||
.. figure:: img/actions/edit*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-edit
|
||||
|
||||
.. figure:: img/actions/error.*
|
||||
.. figure:: img/actions/error*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-error
|
||||
|
||||
.. figure:: img/actions/error-color.*
|
||||
.. figure:: img/actions/error*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-error-color
|
||||
|
||||
.. figure:: img/actions/error-white.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-error-white
|
||||
|
||||
.. figure:: img/actions/external.*
|
||||
.. figure:: img/actions/external*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-external
|
||||
|
||||
.. figure:: img/actions/star-dark.*
|
||||
.. figure:: img/actions/star-dark*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-favorite
|
||||
|
||||
.. figure:: img/filetypes/text.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-file
|
||||
|
||||
.. figure:: img/places/files.*
|
||||
.. figure:: img/places/files*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-files
|
||||
|
||||
.. figure:: img/places/files-dark.*
|
||||
.. figure:: img/places/files*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-files-dark
|
||||
|
||||
.. figure:: img/filetypes/folder-drag-accept.*
|
||||
.. figure:: img/filetypes/folder*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-filetype-folder
|
||||
|
||||
.. figure:: img/filetypes/folder-drag-accept*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-filetype-folder-drag-accept
|
||||
|
||||
.. figure:: img/filetypes/folder.*
|
||||
.. figure:: img/filetypes/text*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-filetype-text
|
||||
|
||||
.. figure:: img/filetypes/folder*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-folder
|
||||
|
||||
.. figure:: img/actions/fullscreen.*
|
||||
.. figure:: img/actions/fullscreen*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-fullscreen
|
||||
|
||||
.. figure:: img/actions/fullscreen-white.*
|
||||
.. figure:: img/actions/group*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-fullscreen-white
|
||||
icon-group
|
||||
|
||||
.. figure:: img/actions/history.*
|
||||
.. figure:: img/actions/history*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-history
|
||||
|
||||
.. figure:: img/places/home.*
|
||||
.. figure:: img/places/home*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-home
|
||||
|
||||
.. figure:: img/actions/info.*
|
||||
.. figure:: img/actions/info*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-info
|
||||
|
||||
.. figure:: img/actions/info-white.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-info-white
|
||||
|
||||
.. figure:: img/places/link.*
|
||||
.. figure:: img/places/link*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-link
|
||||
|
||||
.. figure:: img/actions/logout.*
|
||||
.. figure:: img/actions/logout*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-logout
|
||||
|
||||
.. figure:: img/actions/mail.*
|
||||
.. figure:: img/actions/mail*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-mail
|
||||
|
||||
.. figure:: img/actions/menu.*
|
||||
.. figure:: img/actions/menu*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-menu
|
||||
|
||||
.. figure:: img/actions/more.*
|
||||
.. figure:: img/actions/more*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-more
|
||||
|
||||
.. figure:: img/actions/more-white.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-more-white
|
||||
|
||||
.. figure:: img/places/music.*
|
||||
.. figure:: img/places/music*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-music
|
||||
|
||||
.. figure:: img/actions/password.*
|
||||
.. figure:: img/actions/password*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-password
|
||||
|
||||
.. figure:: img/actions/pause.*
|
||||
.. figure:: img/actions/pause*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-pause
|
||||
|
||||
.. figure:: img/actions/pause-big.*
|
||||
.. figure:: img/clients/phone*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-pause-big
|
||||
icon-phone
|
||||
|
||||
.. figure:: img/places/picture.*
|
||||
.. figure:: img/places/picture*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-picture
|
||||
|
||||
.. figure:: img/actions/play.*
|
||||
.. figure:: img/actions/play*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-play
|
||||
|
||||
.. figure:: img/actions/play-add.*
|
||||
.. figure:: img/actions/play-add*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-play-add
|
||||
|
||||
.. figure:: img/actions/play-big.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-play-big
|
||||
|
||||
.. figure:: img/actions/play-next.*
|
||||
.. figure:: img/actions/play-next*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-play-next
|
||||
|
||||
.. figure:: img/actions/play-previous.*
|
||||
.. figure:: img/actions/play-previous*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-play-previous
|
||||
|
||||
.. figure:: img/actions/public.*
|
||||
.. figure:: img/actions/public*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-public
|
||||
|
||||
.. figure:: img/actions/rename.*
|
||||
.. figure:: img/actions/quota*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-quota
|
||||
|
||||
.. figure:: img/actions/rename*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-rename
|
||||
|
||||
.. figure:: img/actions/screen.*
|
||||
.. figure:: img/actions/screen*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-screen
|
||||
|
||||
.. figure:: img/actions/screen-off.*
|
||||
.. figure:: img/actions/screen-off*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-screen-off
|
||||
|
||||
.. figure:: img/actions/screen-off-white.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-screen-off-white
|
||||
|
||||
.. figure:: img/actions/screen-white.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-screen-white
|
||||
|
||||
.. figure:: img/actions/search.*
|
||||
.. figure:: img/actions/search*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-search
|
||||
|
||||
.. figure:: img/actions/search-white.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-search-white
|
||||
|
||||
.. figure:: img/actions/settings.*
|
||||
.. figure:: img/actions/settings*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-settings
|
||||
|
||||
.. figure:: img/actions/settings-dark.*
|
||||
.. figure:: img/actions/settings-dark*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-settings-dark
|
||||
|
||||
.. figure:: img/actions/settings-white.*
|
||||
.. figure:: img/actions/settings-dark*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-settings-white
|
||||
|
||||
.. figure:: img/actions/share.*
|
||||
.. figure:: img/actions/share*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-share
|
||||
|
||||
.. figure:: img/actions/sound.*
|
||||
.. figure:: img/actions/share*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-share-white
|
||||
|
||||
.. figure:: img/actions/sound*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-sound
|
||||
|
||||
.. figure:: img/actions/sound-off.*
|
||||
.. figure:: img/actions/sound-off*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-sound-off
|
||||
|
||||
.. figure:: img/actions/star.*
|
||||
.. figure:: img/actions/star-dark*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-star
|
||||
|
||||
.. figure:: img/actions/tag.*
|
||||
.. figure:: img/actions/star*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-star-dark
|
||||
|
||||
.. figure:: img/actions/star-dark*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-starred
|
||||
|
||||
.. figure:: img/clients/tablet*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-tablet
|
||||
|
||||
.. figure:: img/actions/tag*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-tag
|
||||
|
||||
.. figure:: img/actions/toggle.*
|
||||
.. figure:: img/actions/timezone*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-timezone
|
||||
|
||||
.. figure:: img/actions/toggle*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-toggle
|
||||
|
||||
.. figure:: img/actions/toggle-pictures.*
|
||||
.. figure:: img/actions/toggle-background*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-toggle-background
|
||||
|
||||
.. figure:: img/actions/toggle-pictures*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-toggle-pictures
|
||||
|
||||
.. figure:: img/actions/triangle-e.*
|
||||
.. figure:: img/actions/triangle-e*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-triangle-e
|
||||
|
||||
.. figure:: img/actions/triangle-n.*
|
||||
.. figure:: img/actions/triangle-n*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-triangle-n
|
||||
|
||||
.. figure:: img/actions/triangle-s.*
|
||||
.. figure:: img/actions/triangle-s*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-triangle-s
|
||||
|
||||
.. figure:: img/actions/upload.*
|
||||
.. figure:: img/actions/upload*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-upload
|
||||
|
||||
.. figure:: img/actions/upload-white.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-upload-white
|
||||
|
||||
.. figure:: img/actions/user.*
|
||||
.. figure:: img/actions/user*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-user
|
||||
|
||||
.. figure:: img/actions/video.*
|
||||
.. figure:: img/actions/user-admin*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-user-admin
|
||||
|
||||
.. figure:: img/actions/video*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-video
|
||||
|
||||
.. figure:: img/actions/video-off.*
|
||||
.. figure:: img/actions/video-off*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-video-off
|
||||
|
||||
.. figure:: img/actions/video-off-white.*
|
||||
.. figure:: img/actions/video-switch*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-video-off-white
|
||||
icon-video-switch
|
||||
|
||||
.. figure:: img/actions/video-white.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-video-white
|
||||
|
||||
.. figure:: img/actions/view-close.*
|
||||
.. figure:: img/actions/view-close*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-view-close
|
||||
|
||||
.. figure:: img/actions/view-download.*
|
||||
.. figure:: img/actions/view-download*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-view-download
|
||||
|
||||
.. figure:: img/actions/view-next.*
|
||||
.. figure:: img/actions/arrow-right*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-view-next
|
||||
|
||||
.. figure:: img/actions/view-pause.*
|
||||
.. figure:: img/actions/view-pause*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-view-pause
|
||||
|
||||
.. figure:: img/actions/view-play.*
|
||||
.. figure:: img/actions/view-play*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-view-play
|
||||
|
||||
.. figure:: img/actions/view-previous.*
|
||||
.. figure:: img/actions/arrow-left*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
|
||||
@@ -1 +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>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewbox="0 0 16 16"><path d="M9.02 13.98h-2v-5h-5v-2h5v-5h2v5l5-.028V8.98h-5z"/></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 129 B After Width: | Height: | Size: 164 B |
BIN
developer_manual/design/img/actions/address.png
Normal file
|
After Width: | Height: | Size: 332 B |
1
developer_manual/design/img/actions/address.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" version="1.1" height="16"><circle stroke-width="2" stroke="#000" cy="6" cx="8" r="4" fill="none"/><path d="m4 9h8l-4 6z"/></svg>
|
||||
|
After Width: | Height: | Size: 200 B |
BIN
developer_manual/design/img/actions/arrow-left.png
Normal file
|
After Width: | Height: | Size: 179 B |
BIN
developer_manual/design/img/actions/arrow-right.png
Normal file
|
After Width: | Height: | Size: 193 B |
|
Before Width: | Height: | Size: 651 B |
@@ -1,10 +0,0 @@
|
||||
<?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>
|
||||
|
Before Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 328 B After Width: | Height: | Size: 313 B |
@@ -1,4 +1 @@
|
||||
<?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>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewBox="0 0 16 16"><path d="m5 3v3.5c0 0.21626 0.0337 0.40866 0.082028 0.58984l3.9178-3.9179v-0.1719c0-2.673-4-2.6707-4 0zm5.2832 0.3027-7.9803 7.9803c-0.91785 0.91785 0.50035 2.3441 1.414 1.4141l7.9803-7.9802c0.916-0.9163-0.493-2.3349-1.414-1.4141zm-8.283 2.6973c0 1.2904 0.3648 2.371 0.9374 3.2344l1.4492-1.4492c-0.2349-0.4922-0.3867-1.0781-0.3867-1.7852 0-1.3274-2-1.326-2 0zm9.9721-0.14453-5.9723 5.9727v1.1719h-1.1718l-0.40427 0.4043c-0.12553 0.13-0.2681 0.24231-0.42381 0.334v1.2617h6v-2h-2v-1.625c2.1244-0.466 4-2.3973 4-5.375 0-0.055-0-0.0941-0.028-0.1445z"/></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 652 B |
|
Before Width: | Height: | Size: 534 B |
@@ -1,10 +0,0 @@
|
||||
<?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>
|
||||
|
Before Width: | Height: | Size: 1012 B |
|
Before Width: | Height: | Size: 305 B After Width: | Height: | Size: 305 B |
@@ -1 +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>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewBox="0 0 16 16"><path d="m6 3v3.5c0 2.6667 4 2.6667 4 0v-3.5c0-2.6661-4-2.6669-4 0zm-3 3c0 2.9759 1.8757 4.907 4 5.375v1.625h-2v2h6v-2h-2v-1.625c2.124-0.466 4-2.3973 4-5.375 0-1.3333-2-1.3333-2 0 0 4.6515-6 4.654-6 0 0-1.3277-2-1.3437-2 0z"/></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 378 B After Width: | Height: | Size: 330 B |
|
Before Width: | Height: | Size: 185 B |
@@ -1 +0,0 @@
|
||||
<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>
|
||||
|
Before Width: | Height: | Size: 186 B |
1
developer_manual/design/img/actions/caret-white.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="M4 6l4 4 4-3.994z" fill="#fff"/></svg>
|
||||
|
After Width: | Height: | Size: 145 B |
|
Before Width: | Height: | Size: 171 B After Width: | Height: | Size: 185 B |
@@ -1 +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>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewbox="0 0 16 16"><path d="M4 6l4 4 4-3.994z"/></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 198 B After Width: | Height: | Size: 133 B |
@@ -1,4 +1 @@
|
||||
<?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>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 16 16" width="16" height="16"><path fill="#fff" 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"/></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 268 B After Width: | Height: | Size: 246 B |
@@ -1 +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>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 16 16" width="16" height="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>
|
||||
|
||||
|
Before Width: | Height: | Size: 177 B After Width: | Height: | Size: 212 B |
@@ -1,4 +1 @@
|
||||
<?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>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 16 16" width="16" height="16"><path d="m0 0v16h16v-16h-16zm4 7h8v2h-8v-2z" fill="#fff"/></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 184 B After Width: | Height: | Size: 162 B |
@@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"><path d="M4 7v2h8V7H4z" fill="#fff"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 16 16" width="16" height="16"><path d="M4 7v2h8V7H4z" fill="#fff"/></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 106 B After Width: | Height: | Size: 141 B |
|
Before Width: | Height: | Size: 343 B |
@@ -1 +0,0 @@
|
||||
<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>
|
||||
|
Before Width: | Height: | Size: 208 B |
|
Before Width: | Height: | Size: 258 B |
@@ -1 +0,0 @@
|
||||
<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>
|
||||
|
Before Width: | Height: | Size: 205 B |
|
Before Width: | Height: | Size: 260 B After Width: | Height: | Size: 255 B |
@@ -1 +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>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewBox="0 0 16 16"><path d="m2.35 7.3 4 4l7.3-7.3" stroke="#000" stroke-width="2" fill="none"/></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 193 B After Width: | Height: | Size: 180 B |
|
Before Width: | Height: | Size: 347 B After Width: | Height: | Size: 303 B |
@@ -1,4 +1 @@
|
||||
<?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>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewbox="0 0 16 16"><path 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>
|
||||
|
||||
|
Before Width: | Height: | Size: 848 B After Width: | Height: | Size: 777 B |
|
Before Width: | Height: | Size: 255 B |
@@ -1,4 +0,0 @@
|
||||
<?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>
|
||||
|
Before Width: | Height: | Size: 313 B |
|
Before Width: | Height: | Size: 252 B After Width: | Height: | Size: 249 B |
@@ -1,4 +1 @@
|
||||
<?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>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewbox="0 0 16 16"><path d="m14 12.3-1.7 1.7-4.3-4.3-4.3 4.3-1.7-1.7 4.3-4.3-4.3-4.3 1.7-1.7 4.3 4.3 4.3-4.3 1.7 1.7-4.3 4.3z"/></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 301 B After Width: | Height: | Size: 213 B |
@@ -1 +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>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" 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>
|
||||
|
||||
|
Before Width: | Height: | Size: 233 B After Width: | Height: | Size: 247 B |
BIN
developer_manual/design/img/actions/confirm-fade.png
Normal file
|
After Width: | Height: | Size: 291 B |
1
developer_manual/design/img/actions/confirm-fade.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 16 16" width="16" version="1.1" height="16"><path opacity=".5" d="m8.5 0.5c-0.8974 0-1.3404 1.0909-0.6973 1.7168l4.7837 4.7832h-11.573c-1.3523-0.019125-1.3523 2.0191 0 2h11.572l-4.7832 4.7832c-0.98163 0.94251 0.47155 2.3957 1.4141 1.4141l6.4911-6.49c0.387-0.3878 0.391-1.0228 0-1.414l-6.4906-6.4903c-0.1883-0.1935-0.4468-0.30268-0.7168-0.3027z"/></svg>
|
||||
|
After Width: | Height: | Size: 406 B |
|
Before Width: | Height: | Size: 244 B |
@@ -1,4 +0,0 @@
|
||||
<?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>
|
||||
|
Before Width: | Height: | Size: 841 B |
|
Before Width: | Height: | Size: 240 B After Width: | Height: | Size: 235 B |
@@ -1,4 +1 @@
|
||||
<?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>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 16 16" width="16" version="1.1" height="16"><path d="m8.5 0.5c-0.8974 0-1.3404 1.0909-0.6973 1.7168l4.7837 4.7832h-11.573c-1.3523-0.019125-1.3523 2.0191 0 2h11.572l-4.7832 4.7832c-0.98163 0.94251 0.47155 2.3957 1.4141 1.4141l6.4911-6.49c0.387-0.3878 0.391-1.0228 0-1.414l-6.4906-6.4903c-0.1883-0.1935-0.4468-0.30268-0.7168-0.3027z"/></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 849 B After Width: | Height: | Size: 393 B |
@@ -1 +0,0 @@
|
||||
<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>
|
||||
|
Before Width: | Height: | Size: 247 B |
|
Before Width: | Height: | Size: 236 B |
@@ -1 +0,0 @@
|
||||
<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>
|
||||
|
Before Width: | Height: | Size: 244 B |
@@ -1 +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>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 16 16" width="16" height="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"/></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 232 B After Width: | Height: | Size: 247 B |
@@ -1 +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>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 16 16" width="16" height="16"><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>
|
||||
|
||||
|
Before Width: | Height: | Size: 506 B After Width: | Height: | Size: 529 B |
BIN
developer_manual/design/img/actions/disabled-user.png
Normal file
|
After Width: | Height: | Size: 336 B |
1
developer_manual/design/img/actions/disabled-user.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg width="16" height="16" version="1.1" viewbox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="m8 1c-1.75 0-3 1.4308-3 2.8008 0 1.4 0.10078 2.4 0.80078 3.5 0.2 0.286 0.49922 0.34961 0.69922 0.59961 0.0039248 0.014536 0.0058968 0.028465 0.0097656 0.042969l4.4551-4.4551c-0.17471-1.4311-1.5009-2.4883-2.9648-2.4883zm1.541 8.4551-5.3223 5.3223c1.1728 0.19277 2.6019 0.22266 3.7812 0.22266 2.5 0 6.163-0.099219 6-1.6992-0.215-2-0.23-1.7108-1-2.3008-1.0575-0.62876-2.3392-1.1226-3.459-1.5449zm-5.6484 1.1055c-0.29809 0.14662-0.60757 0.2854-0.89258 0.43945-0.66764 0.47127-0.77292 0.43452-0.89062 1.3438l1.7832-1.7832z"/><rect transform="rotate(-45)" x="-8.9968" y="11.118" width="16.999" height="1.4166" style="paint-order:normal"/></svg>
|
||||
|
After Width: | Height: | Size: 745 B |
BIN
developer_manual/design/img/actions/disabled-users.png
Normal file
|
After Width: | Height: | Size: 378 B |
1
developer_manual/design/img/actions/disabled-users.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg width="16" height="16" version="1.1" viewbox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="m9 1c-1.746 0-3 1.4308-3 2.8008 0 1.4 0.10078 2.4 0.80078 3.5 0.066421 0.085991 0.13627 0.14858 0.20703 0.20508l4.7617-4.7617c-0.46305-1.0371-1.5733-1.7441-2.7695-1.7441zm-4.9805 4c-0.87 0-1.5 0.72039-1.5 1.4004h-0.019531c0 0.7 0.050391 1.2 0.40039 1.75 0.1 0.15 0.24161 0.17383 0.34961 0.29883 0.0674 0.25 0.12178 0.5 0.050781 0.75-0.64 0.223-1.2448 0.50078-1.8008 0.80078-0.42 0.3-0.233 0.18239-0.5 1.1504-0.097631 0.39367 0.76198 0.61493 1.6309 0.73242l2.5137-2.5137c-0.14238-0.05672-0.28961-0.11729-0.42383-0.16992-0.07-0.28-0.021172-0.487 0.048828-0.75 0.12-0.125 0.23133-0.17883 0.36133-0.29883 0.37-0.45 0.38867-1.21 0.38867-1.75 0-0.8-0.72-1.4004-1.5-1.4004zm6.3359 3.5801-5.8516 5.8516c1.4351 0.4011 3.5062 0.56836 4.4961 0.56836 2.43 0 6.3135-0.45522 5.9805-1.6992-0.52-1.94-0.20847-1.7108-0.98047-2.3008-1.09-0.654-2.4516-1.1666-3.5996-1.5996-0.08115-0.30134-0.079548-0.56194-0.044922-0.82031z"/><rect transform="rotate(-45)" x="-8.9557" y="11.077" width="18" height="1.5" style="paint-order:normal"/></svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 211 B |
@@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16"><path fill="#fff" d="M6 1h4v7h5l-7 7-7-7h5z"/></svg>
|
||||
|
Before Width: | Height: | Size: 115 B |
@@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16"><path d="M6 1h4v7h5l-7 7-7-7h5z"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 16 16" width="16" height="16"><path d="M6 1h4v7h5l-7 7-7-7h5z"/></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 103 B After Width: | Height: | Size: 138 B |
|
Before Width: | Height: | Size: 233 B After Width: | Height: | Size: 215 B |
@@ -1 +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>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" version="1.1" height="16"><path d="m2.5 1c-0.28 0-0.5 0.22-0.5 0.5v13c0 0.28 0.22 0.5 0.5 0.5h11c0.28 0 0.5-0.22 0.5-0.5v-10.5l-3-3h-8.5zm1.5 2h6v1h-6v-1zm0 3h5v1h-5v-1zm0 3h8v1h-8v-1zm0 3h4v1h-4v-1z"/></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 404 B After Width: | Height: | Size: 280 B |
|
Before Width: | Height: | Size: 271 B |
@@ -1 +0,0 @@
|
||||
<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>
|
||||
|
Before Width: | Height: | Size: 192 B |
|
Before Width: | Height: | Size: 232 B |
@@ -1 +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>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 16 16" width="16" height="16"><path d="M5.516 2L2 5.516v4.968L5.516 14h4.968L14 10.484V5.516L10.484 2H5.516zM7 4h2v5H7V4zm0 6h2v2H7v-2z" fill="#fff"/></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 189 B After Width: | Height: | Size: 224 B |
@@ -1 +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>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 16 16" width="16" height="16"><path d="M5.516 2L2 5.516v4.968L5.516 14h4.968L14 10.484V5.516L10.484 2H5.516zM7 4h2v5H7V4zm0 6h2v2H7v-2z"/></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 177 B After Width: | Height: | Size: 212 B |
@@ -1 +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>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 16 16" width="16" height="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>
|
||||
|
||||
|
Before Width: | Height: | Size: 319 B After Width: | Height: | Size: 354 B |
|
Before Width: | Height: | Size: 413 B |
@@ -1,10 +0,0 @@
|
||||
<?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>
|
||||
|
Before Width: | Height: | Size: 864 B |
@@ -1,4 +1 @@
|
||||
<?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>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 16 16" width="16" height="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"/></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 404 B After Width: | Height: | Size: 326 B |
BIN
developer_manual/design/img/actions/group.png
Normal file
|
After Width: | Height: | Size: 377 B |
1
developer_manual/design/img/actions/group.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 16 16" height="16" width="16" version="1.1"><path d="m10 1c-1.75 0-3 1.43-3 2.8 0 1.4 0.1 2.4 0.8 3.5 0.2 0.29 0.5 0.35 0.7 0.6 0.135 0.5 0.24 1 0.1 1.5-0.28 0.1-0.525 0.22-0.8 0.33-0.085-0.15-0.23-0.2-0.47-0.4-0.73-0.44-1.56-0.75-2.33-1.04-0.1-0.37-0.1-0.65 0-1 0.156-0.166 0.37-0.27 0.5-0.43 0.46-0.6 0.5-1.654 0.5-2.37 0-1.06-0.954-1.9-2-1.9-1.17 0-2 1-2 1.9 0 0.93 0.034 1.64 0.5 2.37 0.13 0.2 0.367 0.26 0.5 0.43 0.1 0.33 0.1 0.654 0 1-0.85 0.3-1.6 0.64-2.34 1.04-0.57 0.4-0.52 0.205-0.66 1.53-0.11 1.06 2.335 1.13 4 1.13 0.06 0 0.11 0 0.17 0-0.054 0.274-0.1 0.63-0.17 1.3-0.16 1.59 3.5 1.7 6 1.7s6.16-0.1 6-1.7c-0.215-2-0.23-1.71-1-2.3-1.1-0.654-2.45-1.17-3.6-1.6-0.15-0.56-0.04-0.97 0.1-1.5 0.235-0.25 0.5-0.36 0.7-0.6 0.7-0.885 0.8-2.425 0.8-3.5 0-1.6-1.43-2.8-3-2.8z"/></svg>
|
||||
|
After Width: | Height: | Size: 838 B |
|
Before Width: | Height: | Size: 373 B After Width: | Height: | Size: 373 B |
@@ -1 +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>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 16 16" width="16" height="16"><path d="m9.025 1.08c-3.95 0-6.535 3.447-6.364 6.72h-2.161l3.904 3.92 4.08-3.874h-2.147c-0.237-1.7 1.163-3.114 2.689-3.092 1.595 0.024 2.8 1.23 2.8 2.734 0.09 1.594-1.63 3.428-3.966 2.53 0 1.23 0.003 2.545 0 3.765 4.19 0.83 7.64-2.51 7.64-6.25 0-3.563-2.92-6.453-6.475-6.453z"/></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 327 B After Width: | Height: | Size: 382 B |
|
Before Width: | Height: | Size: 312 B |
@@ -1 +0,0 @@
|
||||
<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>
|
||||
|
Before Width: | Height: | Size: 593 B |
@@ -1 +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>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 16 16" width="16" height="16"><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>
|
||||
|
||||
|
Before Width: | Height: | Size: 581 B After Width: | Height: | Size: 529 B |
|
Before Width: | Height: | Size: 386 B After Width: | Height: | Size: 397 B |
@@ -1 +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>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 16 16" width="16" height="16"><g stroke-width="2" stroke="#000" stroke-linecap="round" fill="none"><path d="m10.75 3.9862a5.5 5.5 0 0 1 2.563 6.1868 5.5 5.5 0 0 1 -5.3131 4.077 5.5 5.5 0 0 1 -5.3127 -4.077 5.5 5.5 0 0 1 2.5627 -6.1867"/><path d="m8 1.7637v5.972"/></g></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 658 B After Width: | Height: | Size: 342 B |
|
Before Width: | Height: | Size: 290 B After Width: | Height: | Size: 290 B |
@@ -1 +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>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="16" width="16" viewBox="0 0 16 16"><path d="m0.89 3c-0.4924 0-0.89 0.4-0.89 0.89v8.2202c0 0.493 0.4 0.89 0.89 0.89h14.22c0.492 0 0.89-0.4 0.89-0.89v-8.2202c0-0.4924-0.4-0.89-0.89-0.89zm0.75 1.0278 6.0827 6.0817h0.52773l6.1102-6.0817 0.611 0.6109-3.6384 3.6934 2.75 2.8047-0.61102 0.61092-2.8052-2.8047-2.0275 2.0549h-1.2776l-2.0271-2.0553-2.8053 2.8323-0.6111-0.639 2.7774-2.8046-3.666-3.6932z"/></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 363 B After Width: | Height: | Size: 465 B |
@@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16"><path d="M2 2v2h12V2zm0 5v2h12V7zm0 5v2h12v-2z"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 16 16" width="16" height="16"><path d="M2 2v2h12V2zm0 5v2h12V7zm0 5v2h12v-2z"/></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 118 B After Width: | Height: | Size: 153 B |
|
Before Width: | Height: | Size: 182 B |
@@ -1 +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>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 16 16" width="16" height="16"><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="#fff"/></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 299 B After Width: | Height: | Size: 227 B |
@@ -1 +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>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 16 16" width="16" height="16"><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"/></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 287 B After Width: | Height: | Size: 215 B |
|
Before Width: | Height: | Size: 227 B After Width: | Height: | Size: 262 B |
@@ -1 +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>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16" width="16" height="16"><path d="m8 1c-2.319 0-3.967 1.8644-4 4v2.5h-1.5v7.5h11v-7.5h-1.5v-2.5c0-2.27-1.8-3.9735-4-4zm0 2c1.25 0 2 0.963 2 2v2.5h-4v-2.5c0-1.174 0.747-2 2-2z"/></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 281 B After Width: | Height: | Size: 256 B |
|
Before Width: | Height: | Size: 164 B |
@@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16"><path d="M1 1v14h5V1zm9 0v14h5V1z"/></svg>
|
||||
|
Before Width: | Height: | Size: 105 B |
@@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16"><path d="M3 3v10h4V3H3zm6 0v10h4V3H9z"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16" width="16" height="16"><path d="M3 3v10h4V3H3zm6 0v10h4V3H9z"/></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 109 B After Width: | Height: | Size: 144 B |
@@ -1 +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>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16" width="16" height="16"><path d="M2 1l11 6-11 6zM11 9v2H9v2h2v2h2v-2h2v-2h-2V9z"/></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 127 B After Width: | Height: | Size: 162 B |
|
Before Width: | Height: | Size: 221 B |
@@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16"><path d="M0 0l16 8-16 8z"/></svg>
|
||||
|
Before Width: | Height: | Size: 96 B |
@@ -1 +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>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16" width="16" height="16"><path d="M7 2l7 6-7 6z"/><path d="M2 2l7 6-7 6z"/></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 119 B After Width: | Height: | Size: 154 B |
@@ -1 +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>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16" width="16" height="16"><path d="M9 2L2 8l7 6z"/><path d="M14 2L7 8l7 6z"/></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 120 B After Width: | Height: | Size: 155 B |
@@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16"><path d="M2 2l12 6-12 6z"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16" width="16" height="16"><path d="M2 2l12 6-12 6z"/></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 96 B After Width: | Height: | Size: 131 B |
1
developer_manual/design/img/actions/public-white.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16" height="16" width="16"><path fill="#fff" d="m9.2363 2.166-3.1816 3.1836c-0.7071 0.7072-1.0378 1.6182-0.9883 2.457 0.05 0.8389 0.4333 1.5841 0.9883 2.1387l1.4121-1.416c-0.5672-0.5672-0.5444-1.2192 0.002-1.7656l3.1812-3.1817c0.52536-0.52536 1.2507-0.52318 1.772-0.002 0.48245 0.5556 0.52732 1.2382-0.004 1.7695l-0.82 0.8203c0.555 0.785 0.645 1.3663 0.593 2.2344l1.641-1.6406c1.2374-1.2374 1.2371-3.3645 0-4.6016-1.236-1.2361-3.342-1.2113-4.5957 0.004zm0.7071 3.8848-1.4141 1.418c0 0 0.003-00 0.004 0 0.55 0.55 0.50736 1.2582-0.004 1.7695l-3.1816 3.1817c-0.696 0.59192-1.2985 0.47105-1.7696 0-0.62636-0.62636-0.5-1.2681 0-1.768l0.85-0.8473c-0.556-0.7835-0.6484-1.365-0.5976-2.2324l-1.666 1.666c-1.2393 1.2393-1.2357 3.36 0 4.5957 1.2353 1.2353 3.362 1.2356 4.5976 0l3.1817-3.182c0.7086-0.7083 1.0396-1.6184 0.9906-2.4586-0.048-0.8401-0.432-1.5864-0.9887-2.1407z"/></svg>
|
||||
|
After Width: | Height: | Size: 942 B |
|
Before Width: | Height: | Size: 346 B After Width: | Height: | Size: 360 B |