Merge pull request #1017 from nextcloud/design-icons
Add icons to build script, fix script and icons page design
@@ -1,7 +1,8 @@
|
||||
pipeline:
|
||||
documentation:
|
||||
image: nextcloudci/documentation:documentation-5
|
||||
image: nextcloudci/documentation:documentation-9
|
||||
commands:
|
||||
- npm install svgexport -g
|
||||
- pip2 install -r requirements.txt
|
||||
- make all
|
||||
branches: [ master, stable* ]
|
||||
|
||||
6
.gitignore
vendored
@@ -23,9 +23,9 @@ developer_manual/api/
|
||||
*.db
|
||||
*.snag
|
||||
|
||||
# Temp scss files
|
||||
developer_manual/design/*.scss
|
||||
developer_manual/design/*.css
|
||||
# Icons files
|
||||
developer_manual/design/img
|
||||
developer_manual/design/icons.txt
|
||||
|
||||
# Exclude Eclipse project
|
||||
.project
|
||||
|
||||
16
Makefile
@@ -18,7 +18,7 @@ user-manual-de-html:
|
||||
cd user_manual_de && make html
|
||||
@echo "User manual de build finished; HTML is updated"
|
||||
|
||||
developer-manual-html: api-docs
|
||||
developer-manual-html: api-docs icons-docs
|
||||
rm -rf developer_manual/_build/html/com
|
||||
cd developer_manual && make html
|
||||
@echo "Developer manual build finished; HTML is updated"
|
||||
@@ -36,13 +36,21 @@ user-manual-de-pdf:
|
||||
@echo "User manual de build finished; PDF is updated"
|
||||
|
||||
api-docs: clean-api-docs
|
||||
cd build && sh get-server-sources.sh master
|
||||
cd build && sh get-server-sources.sh $(DRONE_BRANCH)
|
||||
mkdir -p developer_manual/api/
|
||||
cd build && composer install && composer update
|
||||
cd build && php generateApiDoc.php
|
||||
|
||||
icons-docs: clean-icons-docs
|
||||
cd build && sh get-server-sources.sh $(DRONE_BRANCH)
|
||||
cd build && composer install && composer update
|
||||
cd build && php generateIconsDoc.php
|
||||
|
||||
clean: clean-api-docs
|
||||
clean: clean-api-docs clean-icons-docs
|
||||
rm -r admin_manual/_build developer_manual/_build user_manual/_build user_manual_de_/_build
|
||||
|
||||
clean-api-docs:
|
||||
-rm -r developer_manual/api/
|
||||
rm -rf developer_manual/api/
|
||||
|
||||
clean-icons-docs:
|
||||
rm -rf developer_manual/design/img/
|
||||
|
||||
@@ -53,4 +53,43 @@
|
||||
.highlight {
|
||||
/* nc blue */
|
||||
background: rgba(0, 130, 201, 0.1)
|
||||
}
|
||||
|
||||
/* ICONS LIST */
|
||||
div#list-of-available-icons > blockquote {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
div#list-of-available-icons > blockquote > div {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-around;
|
||||
}
|
||||
|
||||
div#list-of-available-icons > blockquote > div > div {
|
||||
width: 120px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
div#list-of-available-icons > blockquote > div > div > a {
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
}
|
||||
|
||||
div#list-of-available-icons > blockquote > div > div > a.white-icon {
|
||||
background-color: #343131;
|
||||
}
|
||||
|
||||
div#list-of-available-icons > blockquote > div > div > p {
|
||||
margin-top: 5px;
|
||||
font-size: 90%;
|
||||
font-style: normal;
|
||||
text-align: center;
|
||||
}
|
||||
@@ -9,7 +9,8 @@
|
||||
],
|
||||
"require": {
|
||||
"juliushaertl/phpdoc-to-rst": "dev-php7.0",
|
||||
"phpdocumentor/reflection": "dev-php7.0"
|
||||
"phpdocumentor/reflection": "dev-php7.0",
|
||||
"leafo/scssphp": "dev-master"
|
||||
},
|
||||
"config": {
|
||||
"github-protocols": ["https"]
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
*
|
||||
*/
|
||||
|
||||
/*
|
||||
/**
|
||||
* This is a short example on how you can generate the API documentation for Nextcloud
|
||||
*/
|
||||
|
||||
|
||||
154
build/generateIconsDoc.php
Executable file
@@ -0,0 +1,154 @@
|
||||
<?php
|
||||
/**
|
||||
* @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>
|
||||
*
|
||||
* @author John Molakvoæ <skjnldsv@protonmail.com>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
* published by the Free Software Foundation, either version 3 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
include __DIR__ . '/vendor/autoload.php';
|
||||
|
||||
use Leafo\ScssPhp\Compiler;
|
||||
use Leafo\ScssPhp\Formatter\Crunched;
|
||||
|
||||
$sourceDirectory = __DIR__ . '/server';
|
||||
$destinationDirectory = __DIR__ . '/../developer_manual/design/';
|
||||
|
||||
// Init scss compiler
|
||||
$scss = new Compiler();
|
||||
$scss->setImportPaths([
|
||||
__DIR__ . '/server/core/css'
|
||||
]);
|
||||
|
||||
// Continue after throw
|
||||
$scss->setIgnoreErrors(true);
|
||||
$scss->setFormatter(Crunched::class);
|
||||
|
||||
$compiledScss = $scss->compile(
|
||||
'@import "variables.scss";' .
|
||||
'@import "functions.scss";' .
|
||||
// override the path generator function
|
||||
'@function icon-color-path($icon, $dir, $color, $version: 1, $core: false) {
|
||||
$color: remove-hash-from-color($color);
|
||||
@if $core {
|
||||
@return "/core/img/#{$dir}/#{$icon}";
|
||||
} @else {
|
||||
@return "/apps/#{$dir}/img/#{$icon}";
|
||||
}
|
||||
}'.
|
||||
'@import "icons.scss";'
|
||||
);
|
||||
|
||||
$icons = [];
|
||||
$lines = explode('}', $compiledScss);
|
||||
$reIcon = '/^\.(icon-[a-z-]+)/i';
|
||||
$reUrl = '/url\(\"([a-z0-9-.\/]+)/i';
|
||||
|
||||
print("\nParsing icons... \n");
|
||||
|
||||
// get all icons and urls
|
||||
foreach($lines as $line) {
|
||||
if (preg_match($reIcon, $line, $matches)) {
|
||||
$icon = $matches[1];
|
||||
if (preg_match($reUrl, $line, $matches)) {
|
||||
$icons[$icon] = $matches[1];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$count = count($icons);
|
||||
print(" - $count icons found!\n");
|
||||
print("\nFormating rst file and converting icons... \n");
|
||||
|
||||
// format rst
|
||||
$rst = '';
|
||||
foreach($icons as $class => $icon) {
|
||||
/**
|
||||
* removing unwanted path and removing last slash
|
||||
* /core/img/actions/caret -> actions/caret
|
||||
*/
|
||||
$path = implode('/', array_slice(explode('/', $icon), 3, 2));
|
||||
$inPath = $sourceDirectory . $icon . '.svg';
|
||||
|
||||
if (file_exists($inPath)) {
|
||||
$isWhite = substr($class, -strlen('white')) === 'white';
|
||||
if ($isWhite) {
|
||||
$path .= '-white'; //adding white suffix
|
||||
}
|
||||
$outPath = $destinationDirectory . 'img/' . $path . '.png';
|
||||
|
||||
// filling the rst file
|
||||
$rst .= ".. figure:: img/$path.*\n";
|
||||
if ($isWhite) {
|
||||
$rst .= " :class: white-icon\n";
|
||||
}
|
||||
$rst .= " :height: 32\n";
|
||||
$rst .= " :width: 32\n\n";
|
||||
$rst .= " $class\n\n";
|
||||
|
||||
// create directory
|
||||
$dir = implode('/', array_slice(explode('/', $destinationDirectory . 'img/' . $path), 0, -1));
|
||||
if (!file_exists($dir)) {
|
||||
print(" - creating dir $dir \n");
|
||||
mkdir($dir, 0777, true);
|
||||
}
|
||||
|
||||
// ! can't use svg in rst
|
||||
// copy original icon
|
||||
// if (!@copy($sourceDirectory . $icon . '.svg', $destinationDirectory . 'img/' . $path . '.svg')) {
|
||||
// print(' - error while copying ' . $sourceDirectory . $icon . '.svg' . "\n");
|
||||
// }
|
||||
|
||||
// converting
|
||||
if ($isWhite) {
|
||||
exec("svgexport $sourceDirectory$icon.svg $outPath 64: '
|
||||
circle:not([fill='none']),
|
||||
rect:not([fill=\"none\"]),
|
||||
path:not([fill=\"none\"]) {
|
||||
fill: white;
|
||||
}
|
||||
circle[stroke],
|
||||
rect[stroke],
|
||||
path[stroke] {
|
||||
stroke: white;
|
||||
}
|
||||
'");
|
||||
} else {
|
||||
exec("svgexport $sourceDirectory$icon.svg $outPath 64:");
|
||||
}
|
||||
} else {
|
||||
print(" - error while converting $inPath\n");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
print("\nWriting rst file... \n");
|
||||
|
||||
// write file
|
||||
$file = fopen($destinationDirectory . 'icons.txt', 'w');
|
||||
fwrite($file, $rst);
|
||||
fclose($file);
|
||||
|
||||
print(" - done! \n");
|
||||
|
||||
// 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')
|
||||
|
||||
|
||||
@@ -6,6 +6,10 @@
|
||||
|
||||
NC_BRANCH="${1:-master}"
|
||||
|
||||
printf "\n\n"
|
||||
echo Fetching source for $NC_BRANCH
|
||||
printf "\n"
|
||||
|
||||
if [ -d server/.git ]; then
|
||||
cd server && git fetch && git checkout $NC_BRANCH && git reset --hard origin/$NC_BRANCH
|
||||
else
|
||||
|
||||
@@ -2,9 +2,9 @@
|
||||
.. 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``.
|
||||
@@ -14,7 +14,7 @@ will ensure a retro compatibility with <12 versions as scss files will be ignore
|
||||
|
||||
.. _cssvars:
|
||||
|
||||
=============
|
||||
|
||||
CSS variables
|
||||
=============
|
||||
|
||||
@@ -26,9 +26,9 @@ https://github.com/nextcloud/server/blob/master/core/css/css-variables.scss
|
||||
|
||||
.. _cssicons:
|
||||
|
||||
=============
|
||||
Icons
|
||||
=============
|
||||
|
||||
Scss icons mixins
|
||||
=================
|
||||
|
||||
Since nextcloud 14, we added some scss mixins and functions to add and manage svg icons.
|
||||
|
||||
|
||||
@@ -1,47 +0,0 @@
|
||||
#! /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-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.css')
|
||||
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()):
|
||||
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()
|
||||
os.system('rm *.css')
|
||||
@@ -6,16 +6,18 @@
|
||||
Icons
|
||||
=====
|
||||
|
||||
|
||||
List of available icons
|
||||
=======================
|
||||
|
||||
White icons only have a grey background on this documentation page for readability purposes.
|
||||
|
||||
.. include:: icons.txt
|
||||
:class: icons-flex
|
||||
|
||||
.. _svgcolorapi:
|
||||
|
||||
=====================
|
||||
Svg color api
|
||||
=====================
|
||||
=============
|
||||
|
||||
More informations about scss and this api: :ref:`scss mixins and functions <cssicons>`
|
||||
|
||||
|
||||
@@ -1,654 +0,0 @@
|
||||
.. figure:: img/actions/add.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-add
|
||||
|
||||
.. 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.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-audio-off
|
||||
|
||||
.. figure:: img/places/calendar.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-calendar
|
||||
|
||||
.. figure:: img/places/calendar.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-calendar-dark
|
||||
|
||||
.. figure:: img/actions/caret.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-caret
|
||||
|
||||
.. figure:: img/actions/caret.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-caret-dark
|
||||
|
||||
.. figure:: img/categories/bundles.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-category-app-bundles
|
||||
|
||||
.. figure:: img/categories/auth.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-category-auth
|
||||
|
||||
.. figure:: img/categories/customization.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-category-customization
|
||||
|
||||
.. figure:: img/actions/close.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-category-disabled
|
||||
|
||||
.. figure:: img/actions/checkmark.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-category-enabled
|
||||
|
||||
.. figure:: img/categories/files.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-category-files
|
||||
|
||||
.. 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.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-category-integration
|
||||
|
||||
.. figure:: img/categories/monitoring.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-category-monitoring
|
||||
|
||||
.. figure:: img/categories/multimedia.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-category-multimedia
|
||||
|
||||
.. figure:: img/categories/office.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-category-office
|
||||
|
||||
.. figure:: img/categories/organization.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-category-organization
|
||||
|
||||
.. 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.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-category-tools
|
||||
|
||||
.. figure:: img/actions/download.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-category-updates
|
||||
|
||||
.. figure:: img/actions/checkmark.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-checkmark
|
||||
|
||||
.. figure:: img/actions/checkmark.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-checkmark-color
|
||||
|
||||
.. figure:: img/actions/clippy.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-clippy
|
||||
|
||||
.. figure:: img/actions/close.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-close
|
||||
|
||||
.. figure:: img/actions/comment.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-comment
|
||||
|
||||
.. figure:: img/actions/confirm.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-confirm
|
||||
|
||||
.. figure:: img/actions/confirm-fade.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-confirm-fade
|
||||
|
||||
.. figure:: img/places/contacts.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-contacts
|
||||
|
||||
.. figure:: img/places/contacts.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-contacts-dark
|
||||
|
||||
.. figure:: img/actions/delete.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-delete
|
||||
|
||||
.. figure:: img/actions/delete.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-delete-white
|
||||
|
||||
.. figure:: img/clients/desktop.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-desktop
|
||||
|
||||
.. figure:: img/actions/details.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-details
|
||||
|
||||
.. 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/edit.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-edit
|
||||
|
||||
.. figure:: img/actions/error.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-error
|
||||
|
||||
.. figure:: img/actions/error.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-error-color
|
||||
|
||||
.. figure:: img/actions/external.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-external
|
||||
|
||||
.. figure:: img/actions/star-dark.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-favorite
|
||||
|
||||
.. figure:: img/places/files.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-files
|
||||
|
||||
.. figure:: img/places/files.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-files-dark
|
||||
|
||||
.. 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/text.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-filetype-text
|
||||
|
||||
.. figure:: img/filetypes/folder.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-folder
|
||||
|
||||
.. figure:: img/actions/fullscreen.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-fullscreen
|
||||
|
||||
.. figure:: img/actions/group.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-group
|
||||
|
||||
.. figure:: img/actions/history.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-history
|
||||
|
||||
.. figure:: img/places/home.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-home
|
||||
|
||||
.. figure:: img/actions/info.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-info
|
||||
|
||||
.. figure:: img/places/link.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-link
|
||||
|
||||
.. figure:: img/actions/logout.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-logout
|
||||
|
||||
.. figure:: img/actions/mail.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-mail
|
||||
|
||||
.. figure:: img/actions/menu.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-menu
|
||||
|
||||
.. figure:: img/actions/more.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-more
|
||||
|
||||
.. figure:: img/places/music.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-music
|
||||
|
||||
.. figure:: img/actions/password.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-password
|
||||
|
||||
.. figure:: img/actions/pause.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-pause
|
||||
|
||||
.. figure:: img/clients/phone.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-phone
|
||||
|
||||
.. figure:: img/places/picture.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-picture
|
||||
|
||||
.. figure:: img/actions/play.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-play
|
||||
|
||||
.. figure:: img/actions/play-add.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-play-add
|
||||
|
||||
.. figure:: img/actions/play-next.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-play-next
|
||||
|
||||
.. figure:: img/actions/play-previous.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-play-previous
|
||||
|
||||
.. figure:: img/actions/public.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-public
|
||||
|
||||
.. figure:: img/actions/quota.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-quota
|
||||
|
||||
.. figure:: img/actions/rename.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-rename
|
||||
|
||||
.. figure:: img/actions/screen.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-screen
|
||||
|
||||
.. figure:: img/actions/screen-off.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-screen-off
|
||||
|
||||
.. figure:: img/actions/search.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-search
|
||||
|
||||
.. figure:: img/actions/settings.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-settings
|
||||
|
||||
.. figure:: img/actions/settings-dark.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-settings-dark
|
||||
|
||||
.. figure:: img/actions/settings-dark.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-settings-white
|
||||
|
||||
.. figure:: img/actions/share.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-share
|
||||
|
||||
.. 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.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-sound-off
|
||||
|
||||
.. figure:: img/actions/star-dark.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-star
|
||||
|
||||
.. 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/timezone.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-timezone
|
||||
|
||||
.. figure:: img/actions/toggle.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-toggle
|
||||
|
||||
.. 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.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-triangle-e
|
||||
|
||||
.. figure:: img/actions/triangle-n.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-triangle-n
|
||||
|
||||
.. figure:: img/actions/triangle-s.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-triangle-s
|
||||
|
||||
.. figure:: img/actions/upload.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-upload
|
||||
|
||||
.. figure:: img/actions/user.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-user
|
||||
|
||||
.. 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.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-video-off
|
||||
|
||||
.. figure:: img/actions/video-switch.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-video-switch
|
||||
|
||||
.. figure:: img/actions/view-close.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-view-close
|
||||
|
||||
.. figure:: img/actions/view-download.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-view-download
|
||||
|
||||
.. figure:: img/actions/arrow-right.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-view-next
|
||||
|
||||
.. figure:: img/actions/view-pause.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-view-pause
|
||||
|
||||
.. figure:: img/actions/view-play.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-view-play
|
||||
|
||||
.. figure:: img/actions/arrow-left.*
|
||||
:height: 32
|
||||
:width: 32
|
||||
|
||||
icon-view-previous
|
||||
|
||||
|
Before Width: | Height: | Size: 194 B |
@@ -1 +0,0 @@
|
||||
<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: 164 B |
|
Before Width: | Height: | Size: 332 B |
@@ -1 +0,0 @@
|
||||
<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>
|
||||
|
Before Width: | Height: | Size: 200 B |
|
Before Width: | Height: | Size: 179 B |
@@ -1 +0,0 @@
|
||||
<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>
|
||||
|
Before Width: | Height: | Size: 140 B |
|
Before Width: | Height: | Size: 193 B |
@@ -1 +0,0 @@
|
||||
<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>
|
||||
|
Before Width: | Height: | Size: 142 B |
|
Before Width: | Height: | Size: 313 B |
@@ -1 +0,0 @@
|
||||
<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: 652 B |
|
Before Width: | Height: | Size: 305 B |
@@ -1 +0,0 @@
|
||||
<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: 330 B |
@@ -1 +0,0 @@
|
||||
<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>
|
||||
|
Before Width: | Height: | Size: 145 B |
|
Before Width: | Height: | Size: 185 B |
@@ -1 +0,0 @@
|
||||
<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: 133 B |
@@ -1 +0,0 @@
|
||||
<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: 246 B |
@@ -1 +0,0 @@
|
||||
<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: 212 B |
@@ -1 +0,0 @@
|
||||
<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: 162 B |
@@ -1 +0,0 @@
|
||||
<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: 141 B |
@@ -1 +0,0 @@
|
||||
<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="white" stroke-width="2" fill="none"/></svg>
|
||||
|
Before Width: | Height: | Size: 181 B |
|
Before Width: | Height: | Size: 255 B |
@@ -1 +0,0 @@
|
||||
<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: 180 B |
|
Before Width: | Height: | Size: 303 B |
@@ -1 +0,0 @@
|
||||
<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: 777 B |
|
Before Width: | Height: | Size: 249 B |
@@ -1 +0,0 @@
|
||||
<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: 213 B |
|
Before Width: | Height: | Size: 323 B |
@@ -1 +0,0 @@
|
||||
<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: 247 B |
|
Before Width: | Height: | Size: 291 B |
@@ -1 +0,0 @@
|
||||
<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>
|
||||
|
Before Width: | Height: | Size: 406 B |
@@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 16 16" width="16" version="1.1" height="16"><path fill="#fff" 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: 405 B |
|
Before Width: | Height: | Size: 235 B |
@@ -1 +0,0 @@
|
||||
<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: 393 B |
|
Before Width: | Height: | Size: 220 B |
@@ -1 +0,0 @@
|
||||
<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: 247 B |
|
Before Width: | Height: | Size: 295 B |
@@ -1 +0,0 @@
|
||||
<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: 529 B |
|
Before Width: | Height: | Size: 336 B |
@@ -1 +0,0 @@
|
||||
<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>
|
||||
|
Before Width: | Height: | Size: 745 B |
|
Before Width: | Height: | Size: 378 B |
@@ -1 +0,0 @@
|
||||
<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>
|
||||
|
Before Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 213 B |
@@ -1 +0,0 @@
|
||||
<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: 138 B |
|
Before Width: | Height: | Size: 215 B |
@@ -1 +0,0 @@
|
||||
<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: 280 B |
@@ -1 +0,0 @@
|
||||
<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: 224 B |
|
Before Width: | Height: | Size: 230 B |
@@ -1 +0,0 @@
|
||||
<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: 212 B |
|
Before Width: | Height: | Size: 348 B |
@@ -1 +0,0 @@
|
||||
<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: 354 B |
|
Before Width: | Height: | Size: 215 B |
@@ -1 +0,0 @@
|
||||
<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: 326 B |
|
Before Width: | Height: | Size: 377 B |
@@ -1 +0,0 @@
|
||||
<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>
|
||||
|
Before Width: | Height: | Size: 838 B |
|
Before Width: | Height: | Size: 373 B |
@@ -1 +0,0 @@
|
||||
<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: 382 B |
@@ -1 +0,0 @@
|
||||
<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" fill="#fff"/></svg>
|
||||
|
Before Width: | Height: | Size: 541 B |
|
Before Width: | Height: | Size: 295 B |
@@ -1 +0,0 @@
|
||||
<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: 529 B |
|
Before Width: | Height: | Size: 397 B |
@@ -1 +0,0 @@
|
||||
<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: 342 B |
|
Before Width: | Height: | Size: 290 B |
@@ -1 +0,0 @@
|
||||
<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: 465 B |
|
Before Width: | Height: | Size: 164 B |
@@ -1 +0,0 @@
|
||||
<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: 153 B |
@@ -1 +0,0 @@
|
||||
<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: 227 B |
|
Before Width: | Height: | Size: 181 B |
@@ -1 +0,0 @@
|
||||
<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: 215 B |
|
Before Width: | Height: | Size: 262 B |
@@ -1 +0,0 @@
|
||||
<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: 256 B |
|
Before Width: | Height: | Size: 163 B |
@@ -1 +0,0 @@
|
||||
<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: 144 B |
|
Before Width: | Height: | Size: 261 B |
@@ -1 +0,0 @@
|
||||
<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: 162 B |
|
Before Width: | Height: | Size: 253 B |
@@ -1 +0,0 @@
|
||||
<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: 154 B |
|
Before Width: | Height: | Size: 247 B |
@@ -1 +0,0 @@
|
||||
<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: 155 B |
|
Before Width: | Height: | Size: 211 B |
@@ -1 +0,0 @@
|
||||
<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: 131 B |
@@ -1 +0,0 @@
|
||||
<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>
|
||||
|
Before Width: | Height: | Size: 942 B |
|
Before Width: | Height: | Size: 360 B |
@@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16" height="16" width="16"><path 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>
|
||||
|
Before Width: | Height: | Size: 930 B |
|
Before Width: | Height: | Size: 342 B |
@@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" viewBox="0 0 16 16" width="16" version="1.1"><path d="m8 1c-3.86 0-7 3.15-7 7s3.15 7 7 7c3.86 0 7-3.15 7-7 0-3.86-3.15-7-7-7zm0 1.75c2.91 0 5.25 2.34 5.25 5.25 0 1.42-0.56 2.7-1.47 3.644l-3.78-3.644z"/></svg>
|
||||
|
Before Width: | Height: | Size: 261 B |
|
Before Width: | Height: | Size: 275 B |
@@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 16 16" 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>
|
||||
|
Before Width: | Height: | Size: 250 B |
|
Before Width: | Height: | Size: 275 B |