This commit is contained in:
shun_iwasawa 2017-10-12 21:43:12 +09:00
parent 5e0d4f6900
commit 31362db453
163 changed files with 2293 additions and 3655 deletions

View file

@ -2,7 +2,7 @@ version: 1.0.3.{build}
pull_requests:
do_not_increment_build_number: true
skip_tags: true
image: Visual Studio 2013
image: Visual Studio 2015
configuration:
- Debug
- Release
@ -25,7 +25,7 @@ install:
mkdir %PLATFORM% && cd %PLATFORM%
cmake ..\sources -G "Visual Studio 12 Win64" -DQT_PATH="C:\Qt\5.6\msvc2013_64" -DBOOST_ROOT="C:\Libraries\boost_1_60_0"
cmake ..\sources -G "Visual Studio 14 2015 Win64" -DQT_PATH="C:\Qt\5.9.1\msvc2015_64" -DBOOST_ROOT="C:\Libraries\boost_1_60_0"
build:
project: $(APPVEYOR_BUILD_FOLDER)\toonz\$(PLATFORM)\ALL_BUILD.vcxproj
parallel: true

View file

@ -3,7 +3,7 @@ pushd thirdparty/tiff-4.0.3
CFLAGS="-fPIC" CXXFLAGS="-fPIC" ./configure --disable-jbig && make
popd
cd toonz && mkdir build && cd build
source /opt/qt56/bin/qt56-env.sh
source /opt/qt59/bin/qt59-env.sh
cmake ../sources \
-DWITH_SYSTEM_SUPERLU:BOOL=OFF
# according to https://docs.travis-ci.com/user/ci-environment/#Virtualization-environments

View file

@ -1,7 +1,7 @@
sudo add-apt-repository --yes ppa:beineri/opt-qt562-trusty
sudo add-apt-repository --yes ppa:beineri/opt-qt591-trusty
sudo add-apt-repository --yes ppa:achadwick/mypaint-testing
sudo apt-get update
sudo apt-get install -y liblzo2-dev liblz4-dev libfreetype6-dev libpng-dev libegl1-mesa-dev libgles2-mesa-dev libsdl2-dev libglew-dev freeglut3-dev qt56script libsuperlu3-dev qt56svg qt56tools qt56multimedia wget libusb-1.0-0-dev libboost-all-dev liblzma-dev libjson-c-dev libmypaint-dev
sudo apt-get install -y liblzo2-dev liblz4-dev libfreetype6-dev libpng-dev libegl1-mesa-dev libgles2-mesa-dev libsdl2-dev libglew-dev freeglut3-dev qt59script libsuperlu3-dev qt59svg qt59tools qt59multimedia wget libusb-1.0-0-dev libboost-all-dev liblzma-dev libjson-c-dev libmypaint-dev
# someone forgot to include liblz4.pc with the package, use the version from xenial, as it only depends on libc
wget http://mirrors.kernel.org/ubuntu/pool/main/l/lz4/liblz4-1_0.0~r131-2ubuntu2_amd64.deb -O liblz4.deb

View file

@ -4,7 +4,7 @@ pushd thirdparty/tiff-4.0.3
popd
cd toonz && mkdir build && cd build
cmake ../sources \
-DQT_PATH=/usr/local/Cellar/qt5/5.6.1-1/lib/ \
-DQT_PATH=/usr/local/Cellar/qt/5.9.2/lib/ \
-DTIFF_INCLUDE_DIR=../../thirdparty/tiff-4.0.3/libtiff/ \
-DSUPERLU_INCLUDE_DIR=../../thirdparty/superlu/SuperLU_4.1/include/
make

View file

@ -1,8 +1,5 @@
#!/bin/bash
brew update
brew install glew lz4 lzo libusb libmypaint
brew install glew lz4 lzo libusb libmypaint qt
brew tap tcr/tcr
brew install clang-format
# obtain qt5.6 from the previous version of the formula
curl -O https://raw.githubusercontent.com/Homebrew/homebrew-core/fdfc724dd532345f5c6cdf47dc43e99654e6a5fd/Formula/qt5.rb
brew install ./qt5.rb
brew install clang-format

View file

@ -6,7 +6,7 @@ Building OpenToonz from source requires the following dependencies:
- Git
- GCC or Clang
- CMake (3.4.1 or newer).
- Qt5 (5.6 or newer)
- Qt5 (5.9 or newer)
- Boost (1.55 or newer)
- SDL2
- LibPNG

View file

@ -9,14 +9,14 @@
- cmake
- Version 3.2.2 confirmed to work.
- Qt
- http://download.qt.io/official_releases/qt/5.6/5.6.2/
- qt-opensource-mac-x64-clang-5.6.2.dmg
- http://download.qt.io/official_releases/qt/5.9/5.9.2/
- qt-opensource-mac-x64-5.9.2.dmg
- boost
- http://www.boost.org/users/history/version_1_55_0.html (or later, though only 1.55.0 is supported)
## Building on MacOSX
### 0. Install Qt 5.6 (Most recent is 5.6.2)
### 0. Install Qt 5.9 (Most recent is 5.9.2)
### 1. Install Dependent Packages
@ -61,8 +61,8 @@ $ mv ~/Downloads/boost_1_55_0.tar.bz2 .
$ tar xjvf boost_1_55_0.tar.bz2
```
### 5. Update the path to your Qt 5.6 install in opentoonz/toonz/sources/CMakeLists.txt line 160 or 172
If using Qt 5.6.2, this is unnecessary.
### 5. Update the path to your Qt 5.9 install in opentoonz/toonz/sources/CMakeLists.txt line 160 or 172
If using Qt 5.9.2, this is unnecessary.
### 6. Copy the lzo header folder to the lzo driver directory
@ -77,7 +77,7 @@ $ cp -r 2.03/include/lzo driver
$ cd ../../toonz
$ mkdir build
$ cd build
CMAKE_PREFIX_PATH=~/Qt5.6.2/5.6/clang_64 cmake ../sources
CMAKE_PREFIX_PATH=~/Qt5.9.2/5.9.2/clang_64 cmake ../sources
$ make
```

View file

@ -8,8 +8,8 @@
- cmake
- バージョン 3.2.2 で動作確認済みです。
- Qt
- http://download.qt.io/official_releases/qt/5.6/5.6.0/
- qt-opensource-mac-x64-clang-5.6.0.dmg
- http://download.qt.io/official_releases/qt/5.9/5.9.2/
- qt-opensource-mac-x64-5.9.2.dmg
- boost
- http://www.boost.org/users/history/version_1_55_0.html

View file

@ -1,6 +1,6 @@
# Building on Windows
This software can be built using Visual Studio 2015 and Qt 5.6
This software can be built using Visual Studio 2015 and Qt 5.9
## Required Software
@ -31,7 +31,7 @@ They will have to be installed seperately as follows.
### Qt
- https://www.qt.io/download-open-source/
- Qt is a cross-platform GUI framework.
- Install Qt 5.6 (64-bit version) by [Qt Online Installer for Windows](http://download.qt.io/official_releases/online_installers/qt-unified-windows-x86-online.exe).
- Install Qt 5.9 (64-bit version) by [Qt Online Installer for Windows](http://download.qt.io/official_releases/online_installers/qt-unified-windows-x86-online.exe).
### boost
- Boost 1.55.0 or later is required (tested up to 1.60.0).
@ -124,7 +124,7 @@ OpenToonz utilizes the QuickTime SDK's `mov` and associated file formats. Since
### Qt
- https://www.qt.io/download-open-source/
- Install Qt 5.6 (32-bit version) by the by [Qt Online Installer for Windows](http://download.qt.io/official_releases/online_installers/qt-unified-windows-x86-online.exe).
- Install Qt 5.9 (32-bit version) by the by [Qt Online Installer for Windows](http://download.qt.io/official_releases/online_installers/qt-unified-windows-x86-online.exe).
### QuickTime SDK
1. Sign in using your Apple developer ID and download `QuickTime 7.3 SDK for Windows.zip` from the following url.

View file

@ -1,6 +1,6 @@
# ビルド手順Windows
Visual Studio 2015 と Qt 5.6 でビルドできることを確認しています。
Visual Studio 2015 と Qt 5.9 でビルドできることを確認しています。
## 必要なソフトウェアの導入
@ -29,7 +29,7 @@ Visual Studio 2015 と Qt 5.6 でビルドできることを確認していま
### Qt
- https://www.qt.io/download-open-source/
- クロスプラットフォームの GUI フレームワークです
- 上記の URL から以下のファイルをダウンロードして Qt 5.6 (64 ビット版) を適当なフォルダにインストールします
- 上記の URL から以下のファイルをダウンロードして Qt 5.9 (64 ビット版) を適当なフォルダにインストールします
- [Qt Online Installer for Windows](http://download.qt.io/official_releases/online_installers/qt-unified-windows-x86-online.exe)
### boost
@ -90,7 +90,7 @@ OpenToonz は QuickTime SDK を用いて mov 形式などへ対応していま
### Qt
- https://www.qt.io/download-open-source/
- 64 ビット版と同じインストーラーで Qt 5.6 (32 ビット版) を適当なフォルダにインストールします
- 64 ビット版と同じインストーラーで Qt 5.9 (32 ビット版) を適当なフォルダにインストールします
### QuickTime SDK
1. Apple の開発者登録をして下記のURLから `QuickTime 7.3 SDK for Windows.zip` をダウンロードします

View file

@ -1,67 +1,21 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
width="100%"
height="100%"
viewBox="0 0 18 18"
version="1.1"
id="svg4489">
<defs
id="defs4483" />
<metadata
id="metadata4486">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1"
transform="translate(0,-1106.5197)" />
<rect
id="rect2"
style="clip-rule:evenodd;fill:none;fill-rule:evenodd;stroke-width:0.05555556;stroke-linejoin:round;stroke-miterlimit:1.41420996"
height="1.0000001"
width="1.0000001"
y="17.000002"
x="0" />
<path
id="path4493"
d="m 9.5000008,3.0000001 c -1.9322341,-3e-7 -3.4989225,1.56386 -3.5000003,3.4960941 V 7.0000004 H 7.0000006 V 6.4960942 c 0.00108,-1.379949 1.1200512,-2.4960945 2.5000002,-2.496094 1.3799492,-5e-7 2.4989222,1.116145 2.5000002,2.496094 v 0.5039062 h 1 V 6.4960942 C 12.998923,4.5638601 11.432235,2.9999998 9.5000008,3.0000001 Z M 5.0000004,8.0000005 V 15.000001 H 14.000001 V 8.0000005 Z"
style="clip-rule:evenodd;fill:#fbfbfb;fill-opacity:1;fill-rule:evenodd;stroke:#303030;stroke-width:2.00000024;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" />
<g
style="clip-rule:evenodd;fill:#e6e6e6;fill-opacity:1;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41420996"
id="g4491"
transform="scale(0.05555556)">
<path
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:36;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-opacity:0.27638191;paint-order:markers stroke fill"
d="M 90,144 V 270 H 252 V 144 Z"
id="rect4488" />
<path
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:36;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-opacity:0.27638191;paint-order:markers stroke fill"
d="m 171,54 c -34.78021,-5e-6 -62.98059,28.18463 -63,62.96484 V 126 h 18 v -9.03516 C 126.01941,92.12576 146.16091,71.999992 171,72 c 24.83909,-8e-6 44.98059,20.12576 45,44.96484 V 126 h 18 v -9.03516 C 233.98059,82.18463 205.78021,53.999995 171,54 Z"
id="path4509" />
</g>
<circle
style="fill:#303030;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
id="path820"
cx="9.500001"
cy="10.500001"
r="1.5" />
<rect
style="fill:#303030;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
id="rect822"
width="1.5"
height="3"
x="8.75"
y="11" />
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg4489" inkscape:version="0.91 r13725" sodipodi:docname="cam_lock.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 18 18"
style="enable-background:new 0 0 18 18;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FBFBFB;stroke:#303030;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:1.4142;}
.st1{fill:#E6E6E6;}
.st2{fill:#303030;}
</style>
<path id="path4493" inkscape:connector-curvature="0" class="st0" d="M9,3C7.1,3,5.5,4.6,5.5,6.5V7h1V6.5C6.5,5.1,7.6,4,9,4
c1.4,0,2.5,1.1,2.5,2.5V7h1V6.5C12.5,4.6,10.9,3,9,3z M4.5,8v7h9V8L4.5,8z"/>
<g id="g4491" transform="scale(0.05555556,0.05555556)">
<path id="rect4488" inkscape:connector-curvature="0" class="st1" d="M81,144v126h162V144H81z"/>
<path id="path4509" inkscape:connector-curvature="0" class="st1" d="M162,54c-34.8,0-63,28.2-63,63v9h18v-9c0-24.8,20.2-45,45-45
c24.8,0,45,20.1,45,45v9h18v-9C225,82.2,196.8,54,162,54z"/>
</g>
<circle id="path820" class="st2" cx="9" cy="10.5" r="1.5"/>
<rect id="rect822" x="8.2" y="11" class="st2" width="1.5" height="3"/>
</svg>

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -1,62 +1,21 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg4489"
version="1.1"
viewBox="0 0 18 18"
height="100%"
width="100%">
<defs
id="defs4483" />
<metadata
id="metadata4486">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(0,-1106.5197)"
id="layer1" />
<rect
x="0"
y="17.000002"
width="1.0000001"
height="1.0000001"
style="clip-rule:evenodd;fill:none;fill-rule:evenodd;stroke-width:0.05555556;stroke-linejoin:round;stroke-miterlimit:1.41420996"
id="rect2" />
<path
style="clip-rule:evenodd;fill:#303030;fill-opacity:0.78431373;fill-rule:evenodd;stroke:#303030;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
d="M 12.5,2 C 10.567766,1.9999997 9.0010783,3.565813 9,5.4980469 V 7 h 1 V 5.4980469 C 10.001078,4.118098 11.120051,2.9999996 12.5,3 c 1.379949,-4e-7 2.498922,1.118098 2.5,2.4980469 V 7 h 1 V 5.4980469 C 15.998922,3.565813 14.432234,1.9999997 12.5,2 Z M 3,8 v 7 h 9 V 8 Z"
id="path4509" />
<path
id="path4491"
d="m 12.500001,2.0000002 c -1.932234,-3e-7 -3.4989219,1.5658129 -3.5000003,3.4980469 V 7.0000006 H 10.000001 V 5.4980471 c 0.0011,-1.379949 1.12005,-2.4980473 2.5,-2.4980469 1.37995,-4e-7 2.498922,1.1180979 2.5,2.4980469 v 1.5019535 h 1 V 5.4980471 c -0.0011,-1.932234 -1.567766,-3.4980472 -3.5,-3.4980469 z"
style="clip-rule:evenodd;fill:#e6e6e6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.00000024;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" />
<path
id="path4493"
d="M 3.0000002,8.0000006 V 15.000001 H 12.000001 V 8.0000006 Z"
style="clip-rule:evenodd;fill:#e6e6e6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.00000024;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" />
<circle
r="1.5"
cy="10.500001"
cx="7.5"
id="path820"
style="fill:#303030;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" />
<rect
y="11"
x="6.749999"
height="3"
width="1.5"
id="rect822"
style="fill:#303030;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" />
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg4489" inkscape:version="0.91 r13725" sodipodi:docname="cam_unlock.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 18 18"
style="enable-background:new 0 0 18 18;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;}
.st1{fill:#303030;fill-opacity:0.7843;stroke:#303030;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:1.4142;}
.st2{fill:#E6E6E6;}
.st3{fill:#303030;}
</style>
<rect id="rect2" x="1" y="17" class="st0" width="1" height="1"/>
<path id="path4509" inkscape:connector-curvature="0" class="st1" d="M13.5,2C11.6,2,10,3.6,10,5.5V7h1V5.5C11,4.1,12.1,3,13.5,3
C14.9,3,16,4.1,16,5.5V7h1V5.5C17,3.6,15.4,2,13.5,2z M4,8v7h9V8H4z"/>
<path id="path4491" inkscape:connector-curvature="0" class="st2" d="M13.5,2C11.6,2,10,3.6,10,5.5V7h1V5.5C11,4.1,12.1,3,13.5,3
C14.9,3,16,4.1,16,5.5V7h1V5.5C17,3.6,15.4,2,13.5,2z"/>
<path id="path4493" inkscape:connector-curvature="0" class="st2" d="M4,8v7h9V8L4,8z"/>
<circle id="path820" class="st3" cx="8.5" cy="10.5" r="1.5"/>
<rect id="rect822" x="7.7" y="11" class="st3" width="1.5" height="3"/>
</svg>

Before

Width:  |  Height:  |  Size: 3 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -1,34 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg4489"
version="1.1"
viewBox="0 0 16 16"
height="100%"
width="100%">
<defs
id="defs4483" />
<metadata
id="metadata4486">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(0,-1106.5197)"
id="layer1" />
<path
d="M 2,8.9999999 6,13 13.999999,2.9999999"
style="clip-rule:evenodd;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;stroke-dasharray:none;stroke-opacity:1"
id="path2" />
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg4489" inkscape:version="0.91 r13725" sodipodi:docname="checkmark.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 16 16"
style="enable-background:new 0 0 16 16;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;}
</style>
<path id="path2" inkscape:connector-curvature="0" class="st0" d="M2,9l4,4l8-10"/>
</svg>

Before

Width:  |  Height:  |  Size: 1 KiB

After

Width:  |  Height:  |  Size: 958 B

View file

@ -1,34 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
width="100%"
height="100%"
viewBox="0 0 16 16"
version="1.1"
id="svg4489">
<defs
id="defs4483" />
<metadata
id="metadata4486">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1"
transform="translate(0,-1106.5197)" />
<path
id="path2"
style="clip-rule:evenodd;fill:none;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;stroke-dasharray:none;stroke-opacity:1"
d="M 2,8.9999999 6,13 13.999999,2.9999999" />
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg4489" inkscape:version="0.91 r13725" sodipodi:docname="checkmark_disabled.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 16 16"
style="enable-background:new 0 0 16 16;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;stroke:#4F4F4F;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;}
</style>
<path id="path2" inkscape:connector-curvature="0" class="st0" d="M2,9l4,4l8-10"/>
</svg>

Before

Width:  |  Height:  |  Size: 1 KiB

After

Width:  |  Height:  |  Size: 967 B

View file

@ -1,34 +1,15 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg4489"
version="1.1"
viewBox="0 0 16 16"
height="100%"
width="100%">
<defs
id="defs4483" />
<metadata
id="metadata4486">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(0,-1106.5197)"
id="layer1" />
<path
id="path2"
style="clip-rule:evenodd;fill:#000000;fill-opacity:0.90243901;fill-rule:evenodd;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:1.41420996"
d="M 10.722125,7 H 5.277875 4.5 L 8,11 11.5,7 Z" />
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg4489" inkscape:version="0.91 r13725" sodipodi:docname="combo-down.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 16 16"
style="enable-background:new 0 0 16 16;" xml:space="preserve">
<style type="text/css">
.st0{fill-opacity:0.9024;}
</style>
<sodipodi:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="namedview7" inkscape:current-layer="svg4489" inkscape:cx="8" inkscape:cy="8" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-height="480" inkscape:window-maximized="0" inkscape:window-width="796" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="14.75" objecttolerance="10" pagecolor="#ffffff" showgrid="false">
</sodipodi:namedview>
<g id="layer1" transform="translate(0,-1106.5197)">
</g>
<path id="path2" inkscape:connector-curvature="0" class="st0" d="M10.7,7H5.3H4.5L8,11l3.5-4H10.7z"/>
</svg>

Before

Width:  |  Height:  |  Size: 1,011 B

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -1,34 +1,15 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
width="100%"
height="100%"
viewBox="0 0 16 16"
version="1.1"
id="svg4489">
<defs
id="defs4483" />
<metadata
id="metadata4486">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1"
transform="translate(0,-1106.5197)" />
<path
d="M 10.722125,7 H 5.277875 4.5 L 8,11 11.5,7 Z"
style="clip-rule:evenodd;fill:#000000;fill-opacity:0.31372549;fill-rule:evenodd;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:1.41420996"
id="path2" />
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg4489" inkscape:version="0.91 r13725" sodipodi:docname="combo-down_disabled.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 16 16"
style="enable-background:new 0 0 16 16;" xml:space="preserve">
<style type="text/css">
.st0{fill-opacity:0.3137;}
</style>
<sodipodi:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="namedview7" inkscape:current-layer="svg4489" inkscape:cx="8" inkscape:cy="8" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-height="480" inkscape:window-maximized="0" inkscape:window-width="796" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="14.75" objecttolerance="10" pagecolor="#ffffff" showgrid="false">
</sodipodi:namedview>
<g id="layer1" transform="translate(0,-1106.5197)">
</g>
<path id="path2" inkscape:connector-curvature="0" class="st0" d="M10.7,7H5.3H4.5L8,11l3.5-4H10.7z"/>
</svg>

Before

Width:  |  Height:  |  Size: 1,011 B

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -1,34 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg4489"
version="1.1"
viewBox="0 0 16 16"
height="100%"
width="100%">
<defs
id="defs4483" />
<metadata
id="metadata4486">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(0,-1106.5197)"
id="layer1" />
<path
id="path2"
style="clip-rule:evenodd;fill:#000000;fill-opacity:0.90243901;fill-rule:evenodd;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:1.41420996"
d="M 10.722125,7 H 5.277875 4.5 L 8,11 11.5,7 Z" />
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg4489" inkscape:version="0.91 r13725" sodipodi:docname="combo-down_pressed.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 16 16"
style="enable-background:new 0 0 16 16;" xml:space="preserve">
<style type="text/css">
.st0{fill-opacity:0.9024;}
</style>
<path id="path2" inkscape:connector-curvature="0" class="st0" d="M10.7,7H5.3H4.5L8,11l3.5-4H10.7z"/>
</svg>

Before

Width:  |  Height:  |  Size: 1,011 B

After

Width:  |  Height:  |  Size: 901 B

View file

@ -1,31 +1,21 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg10"
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;"
xml:space="preserve"
version="1.1"
viewBox="0 0 22 17"
height="100%"
width="100%"><metadata
id="metadata16"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs14" /><rect
id="rect2"
style="fill-opacity:0.49186993;fill:#ffffff"
height="13"
width="18"
y="2"
x="2" /><g
id="g8"><path
id="path4"
style="fill:none;stroke:#2f2f2f;stroke-width:2px;stroke-opacity:1"
d="M19.5,1c0.828,0 1.5,0.672 1.5,1.5l0,12c0,0.828 -0.672,1.5 -1.5,1.5l-17,0c-0.828,0 -1.5,-0.672 -1.5,-1.5l0,-12c0,-0.828 0.672,-1.5 1.5,-1.5l17,0Zm-0.85,1l-15.3,0c-0.745,0 -1.35,0.583 -1.35,1.3l0,10.4c0,0.717 0.605,1.3 1.35,1.3l15.3,0c0.745,0 1.35,-0.583 1.35,-1.3l0,-10.4c0,-0.717 -0.605,-1.3 -1.35,-1.3l0,0Z" /><path
id="path6"
style="fill:#9b9b9b;"
d="M19.5,1c0.828,0 1.5,0.672 1.5,1.5l0,12c0,0.828 -0.672,1.5 -1.5,1.5l-17,0c-0.828,0 -1.5,-0.672 -1.5,-1.5l0,-12c0,-0.828 0.672,-1.5 1.5,-1.5l17,0Zm-0.85,1l-15.3,0c-0.745,0 -1.35,0.583 -1.35,1.3l0,10.4c0,0.717 0.605,1.3 1.35,1.3l15.3,0c0.745,0 1.35,-0.583 1.35,-1.3l0,-10.4c0,-0.717 -0.605,-1.3 -1.35,-1.3l0,0Z" /></g></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg10" inkscape:version="0.91 r13725" sodipodi:docname="flipmarker.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 22 17"
style="enable-background:new 0 0 22 17;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;fill-opacity:0.4919;}
.st1{fill:none;stroke:#2F2F2F;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;}
.st2{fill:#9B9B9B;}
</style>
<rect id="rect2" x="2" y="2" class="st0" width="18" height="13"/>
<g id="g8">
<path id="path4" inkscape:connector-curvature="0" class="st1" d="M19.5,1C20.3,1,21,1.7,21,2.5v12c0,0.8-0.7,1.5-1.5,1.5h-17
C1.7,16,1,15.3,1,14.5v-12C1,1.7,1.7,1,2.5,1H19.5z M18.6,2H3.3C2.6,2,2,2.6,2,3.3v10.4C2,14.4,2.6,15,3.3,15h15.3
c0.7,0,1.4-0.6,1.4-1.3V3.3C20,2.6,19.4,2,18.6,2L18.6,2z"/>
<path id="path6" inkscape:connector-curvature="0" class="st2" d="M19.5,1C20.3,1,21,1.7,21,2.5v12c0,0.8-0.7,1.5-1.5,1.5h-17
C1.7,16,1,15.3,1,14.5v-12C1,1.7,1.7,1,2.5,1H19.5z M18.6,2H3.3C2.6,2,2,2.6,2,3.3v10.4C2,14.4,2.6,15,3.3,15h15.3
c0.7,0,1.4-0.6,1.4-1.3V3.3C20,2.6,19.4,2,18.6,2L18.6,2z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -1,23 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg8"
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"
xml:space="preserve"
version="1.1"
viewBox="0 0 14 15"
height="100%"
width="100%"><metadata
id="metadata14"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs12" /><g
style="display:inline"
id="g6"><path
id="path4"
style="fill:#3e3e3e;fill-opacity:1"
d="M 14,13 H 0 V 2 H 14 Z M 1,3 v 9 H 13 V 3 Z" /></g></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg8" inkscape:version="0.91 r13725" sodipodi:docname="flipslider.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 14 15"
style="enable-background:new 0 0 14 15;" xml:space="preserve">
<style type="text/css">
.st0{fill:#3E3E3E;}
</style>
<path id="path4" inkscape:connector-curvature="0" class="st0" d="M14,13H0V2h14V13z M1,3v9h12V3H1z"/>
</svg>

Before

Width:  |  Height:  |  Size: 935 B

After

Width:  |  Height:  |  Size: 883 B

View file

@ -1,58 +1,15 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg4489"
version="1.1"
viewBox="0 0 14 14"
height="100%"
width="100%">
<defs
id="defs4483" />
<metadata
id="metadata4486">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(0,-1106.5197)"
id="layer1" />
<rect
y="4"
x="2"
height="2"
width="10"
id="rect4493"
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.99999988;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.54901961;paint-order:normal" />
<rect
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.99999988;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.54901961;paint-order:normal"
id="rect4495"
width="10"
height="2"
x="2"
y="9" />
<rect
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:1.99999988;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.54901961;paint-order:normal"
id="rect4485"
width="10"
height="2"
x="2"
y="4" />
<rect
y="9"
x="2"
height="2"
width="10"
id="rect4487"
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:1.99999988;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.54901961;paint-order:normal" />
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg4489" inkscape:version="0.91 r13725" sodipodi:docname="fsp_checked.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 14 14"
style="enable-background:new 0 0 14 14;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;stroke:#000000;stroke-width:2;stroke-linecap:square;stroke-opacity:0.549;}
.st1{fill:#E6E6E6;}
</style>
<rect id="rect4493" x="2" y="4" class="st0" width="10" height="2"/>
<rect id="rect4495" x="2" y="9" class="st0" width="10" height="2"/>
<rect id="rect4485" x="2" y="4" class="st1" width="10" height="2"/>
<rect id="rect4487" x="2" y="9" class="st1" width="10" height="2"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -1,58 +1,15 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg4489"
version="1.1"
viewBox="0 0 14 14"
height="100%"
width="100%">
<defs
id="defs4483" />
<metadata
id="metadata4486">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(0,-1106.5197)"
id="layer1" />
<rect
y="4"
x="2"
height="2"
width="10"
id="rect4493"
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.99999988;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.54901961;paint-order:normal" />
<rect
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.99999988;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.54901961;paint-order:normal"
id="rect4495"
width="10"
height="2"
x="2"
y="9" />
<rect
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:1.99999988;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.54901961;paint-order:normal"
id="rect4485"
width="10"
height="2"
x="2"
y="4" />
<rect
y="9"
x="2"
height="2"
width="10"
id="rect4487"
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:1.99999988;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.54901961;paint-order:normal" />
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg4489" inkscape:version="0.91 r13725" sodipodi:docname="fsp_unchecked.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 14 14"
style="enable-background:new 0 0 14 14;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;stroke:#000000;stroke-width:2;stroke-linecap:square;stroke-opacity:0.549;}
.st1{fill:#E6E6E6;}
</style>
<rect id="rect4493" x="2" y="4" class="st0" width="10" height="2"/>
<rect id="rect4495" x="2" y="9" class="st0" width="10" height="2"/>
<rect id="rect4485" x="2" y="4" class="st1" width="10" height="2"/>
<rect id="rect4487" x="2" y="9" class="st1" width="10" height="2"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -1,38 +1,23 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
width="100%"
height="100%"
viewBox="0 0 15 15"
version="1.1"
id="svg4489">
<defs
id="defs4483" />
<metadata
id="metadata4486">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1"
transform="translate(0,-1106.5197)" />
<path
d="m 12.466459,8.13701 c 0.02674,-0.20802 0.04678,-0.416 0.04678,-0.63702 0,-0.22098 -0.02005,-0.42899 -0.04678,-0.63697 L 13.876434,5.7905 c 0.126965,-0.0975 0.160375,-0.273 0.08019,-0.41599 L 12.620155,3.1255 c -0.08019,-0.143 -0.260611,-0.195 -0.407623,-0.143 l -1.663902,0.65 C 10.201152,3.37249 9.8269414,3.158 9.4193173,2.9955 L 9.1653881,1.273 C 9.1453391,1.117 9.0050124,1 8.8379533,1 H 6.1650076 C 5.9979488,1 5.8576196,1.117 5.8375725,1.273 L 5.5836433,2.9955 C 5.1760201,3.158 4.8018087,3.379 4.4543269,3.6325 l -1.6639045,-0.65 c -0.153694,-0.0584 -0.3274349,0 -0.4076231,0.143 L 1.0463299,5.37451 C 0.95945965,5.5175 0.99955275,5.693 1.1265179,5.7905 l 1.4099752,1.07252 c -0.026729,0.20798 -0.046777,0.4225 -0.046777,0.63697 0,0.21452 0.020047,0.429 0.046777,0.63702 l -1.4099752,1.0725 c -0.12696451,0.0974 -0.16037613,0.27301 -0.080188,0.416 l 1.3364694,2.24901 c 0.080187,0.143 0.2606115,0.195 0.4076231,0.143 l 1.6639045,-0.65001 c 0.3474819,0.26 0.7216933,0.47451 1.1293165,0.637 l 0.2539291,1.7225 c 0.020047,0.156 0.1603763,0.273 0.3274351,0.273 h 2.6729385 c 0.1670589,0 0.3073876,-0.117 0.3274345,-0.273 L 9.41931,12.00451 c 0.4076239,-0.16249 0.781834,-0.3835 1.129317,-0.637 l 1.663902,0.65001 c 0.153695,0.0584 0.327436,0 0.407624,-0.143 l 1.336469,-2.24901 c 0.08019,-0.14299 0.04678,-0.3185 -0.08019,-0.416 z m -4.9649821,1.638 c -1.2896929,0 -2.3388215,-1.0205 -2.3388215,-2.27502 0,-1.25449 1.0491286,-2.27499 2.3388215,-2.27499 1.2896928,0 2.3388221,1.0205 2.3388221,2.27499 0,1.25452 -1.0491293,2.27502 -2.3388221,2.27502 z"
id="path4497"
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.54901961" />
<path
style="fill:#e6e6e6;fill-opacity:1;stroke-width:1"
id="path4"
d="m 12.466459,8.13701 c 0.02674,-0.20802 0.04678,-0.416 0.04678,-0.63702 0,-0.22098 -0.02005,-0.42899 -0.04678,-0.63697 L 13.876434,5.7905 c 0.126965,-0.0975 0.160375,-0.273 0.08019,-0.41599 L 12.620155,3.1255 c -0.08019,-0.143 -0.260611,-0.195 -0.407623,-0.143 l -1.663902,0.65 C 10.201152,3.37249 9.8269414,3.158 9.4193173,2.9955 L 9.1653881,1.273 C 9.1453391,1.117 9.0050124,1 8.8379533,1 H 6.1650076 C 5.9979488,1 5.8576196,1.117 5.8375725,1.273 L 5.5836433,2.9955 C 5.1760201,3.158 4.8018087,3.379 4.4543269,3.6325 l -1.6639045,-0.65 c -0.153694,-0.0584 -0.3274349,0 -0.4076231,0.143 L 1.0463299,5.37451 C 0.95945965,5.5175 0.99955275,5.693 1.1265179,5.7905 l 1.4099752,1.07252 c -0.026729,0.20798 -0.046777,0.4225 -0.046777,0.63697 0,0.21452 0.020047,0.429 0.046777,0.63702 l -1.4099752,1.0725 c -0.12696451,0.0974 -0.16037613,0.27301 -0.080188,0.416 l 1.3364694,2.24901 c 0.080187,0.143 0.2606115,0.195 0.4076231,0.143 l 1.6639045,-0.65001 c 0.3474819,0.26 0.7216933,0.47451 1.1293165,0.637 l 0.2539291,1.7225 c 0.020047,0.156 0.1603763,0.273 0.3274351,0.273 h 2.6729385 c 0.1670589,0 0.3073876,-0.117 0.3274345,-0.273 L 9.41931,12.00451 c 0.4076239,-0.16249 0.781834,-0.3835 1.129317,-0.637 l 1.663902,0.65001 c 0.153695,0.0584 0.327436,0 0.407624,-0.143 l 1.336469,-2.24901 c 0.08019,-0.14299 0.04678,-0.3185 -0.08019,-0.416 z m -4.9649821,1.638 c -1.2896929,0 -2.3388215,-1.0205 -2.3388215,-2.27502 0,-1.25449 1.0491286,-2.27499 2.3388215,-2.27499 1.2896928,0 2.3388221,1.0205 2.3388221,2.27499 0,1.25452 -1.0491293,2.27502 -2.3388221,2.27502 z" />
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg4489" inkscape:version="0.91 r13725" sodipodi:docname="gear.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 15 15"
style="enable-background:new 0 0 15 15;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;stroke:#000000;stroke-width:2;stroke-opacity:0.549;}
.st1{fill:#E6E6E6;}
</style>
<path id="path4497" inkscape:connector-curvature="0" class="st0" d="M12.5,8.1c0-0.2,0-0.4,0-0.6c0-0.2,0-0.4,0-0.6l1.4-1.1
C14,5.7,14,5.5,14,5.4l-1.3-2.2C12.5,3,12.4,2.9,12.2,3l-1.7,0.7C10.2,3.4,9.8,3.2,9.4,3L9.2,1.3C9.1,1.1,9,1,8.8,1H6.2
C6,1,5.9,1.1,5.8,1.3L5.6,3C5.2,3.2,4.8,3.4,4.5,3.6L2.8,3C2.6,2.9,2.5,3,2.4,3.1L1,5.4C1,5.5,1,5.7,1.1,5.8l1.4,1.1
c0,0.2,0,0.4,0,0.6c0,0.2,0,0.4,0,0.6L1.1,9.2C1,9.3,1,9.5,1,9.6l1.3,2.2C2.5,12,2.6,12.1,2.8,12l1.7-0.7c0.3,0.3,0.7,0.5,1.1,0.6
l0.3,1.7C5.9,13.9,6,14,6.2,14h2.7c0.2,0,0.3-0.1,0.3-0.3L9.4,12c0.4-0.2,0.8-0.4,1.1-0.6l1.7,0.7c0.2,0.1,0.3,0,0.4-0.1L14,9.6
c0.1-0.1,0-0.3-0.1-0.4L12.5,8.1z M7.5,9.8c-1.3,0-2.3-1-2.3-2.3c0-1.3,1-2.3,2.3-2.3s2.3,1,2.3,2.3C9.8,8.8,8.8,9.8,7.5,9.8z"/>
<path id="path4" inkscape:connector-curvature="0" class="st1" d="M12.5,8.1c0-0.2,0-0.4,0-0.6c0-0.2,0-0.4,0-0.6l1.4-1.1
C14,5.7,14,5.5,14,5.4l-1.3-2.2C12.5,3,12.4,2.9,12.2,3l-1.7,0.7C10.2,3.4,9.8,3.2,9.4,3L9.2,1.3C9.1,1.1,9,1,8.8,1H6.2
C6,1,5.9,1.1,5.8,1.3L5.6,3C5.2,3.2,4.8,3.4,4.5,3.6L2.8,3C2.6,2.9,2.5,3,2.4,3.1L1,5.4C1,5.5,1,5.7,1.1,5.8l1.4,1.1
c0,0.2,0,0.4,0,0.6c0,0.2,0,0.4,0,0.6L1.1,9.2C1,9.3,1,9.5,1,9.6l1.3,2.2C2.5,12,2.6,12.1,2.8,12l1.7-0.7c0.3,0.3,0.7,0.5,1.1,0.6
l0.3,1.7C5.9,13.9,6,14,6.2,14h2.7c0.2,0,0.3-0.1,0.3-0.3L9.4,12c0.4-0.2,0.8-0.4,1.1-0.6l1.7,0.7c0.2,0.1,0.3,0,0.4-0.1L14,9.6
c0.1-0.1,0-0.3-0.1-0.4L12.5,8.1z M7.5,9.8c-1.3,0-2.3-1-2.3-2.3c0-1.3,1-2.3,2.3-2.3s2.3,1,2.3,2.3C9.8,8.8,8.8,9.8,7.5,9.8z"/>
</svg>

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

View file

@ -1,47 +1,23 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg6"
style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41420996"
xml:space="preserve"
version="1.1"
viewBox="0 0 18 18"
height="100%"
width="100%"><metadata
id="metadata12"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs10" /><rect
id="rect2"
style="clip-rule:evenodd;fill:none;fill-rule:evenodd;stroke-width:0.05555556;stroke-linejoin:round;stroke-miterlimit:1.41420996"
height="1.0000001"
width="1.0000001"
y="17"
x="-7.1525574e-007" /><path
id="path4493"
d="m 9.5000001,2.9999987 c -1.9322341,-3e-7 -3.4989225,1.56386 -3.5000003,3.4960941 V 6.999999 H 6.9999999 V 6.4960928 C 7.0010799,5.1161438 8.1200511,3.9999983 9.5000001,3.9999988 10.879949,3.9999983 11.998922,5.1161438 12,6.4960928 V 6.999999 h 1 V 6.4960928 C 12.9989,4.5638587 11.432234,2.9999984 9.5000001,2.9999987 Z M 4.9999997,7.9999991 V 15 H 14 V 7.9999991 Z"
style="clip-rule:evenodd;fill:#fbfbfb;fill-opacity:1;fill-rule:evenodd;stroke:#303030;stroke-width:2.00000024;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" /><g
style="clip-rule:evenodd;fill:#e6e6e6;fill-opacity:1;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41420996"
id="g4491"
transform="matrix(0.05555556,0,0,0.05555556,-8e-7,-1.4e-6)"><path
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:36;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-opacity:0.27638191;paint-order:markers stroke fill"
d="M 90,144 V 270 H 252 V 144 Z"
id="rect4488" /><path
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:36;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-opacity:0.27638191;paint-order:markers stroke fill"
d="m 171,54 c -34.78021,-5e-6 -62.98059,28.18463 -63,62.96484 V 126 h 18 v -9.03516 C 126.01941,92.12576 146.16091,71.999992 171,72 c 24.83909,-8e-6 44.98059,20.12576 45,44.96484 V 126 h 18 v -9.03516 C 233.98059,82.18463 205.78021,53.999995 171,54 Z"
id="path4509" /></g><circle
style="fill:#303030;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
id="path820"
cx="9.5"
cy="10.5"
r="1.5" /><rect
style="fill:#303030;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
id="rect822"
width="1.5"
height="3"
x="8.749999"
y="10.999999" /></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg6" inkscape:version="0.91 r13725" sodipodi:docname="layer_header_lock.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 18 18"
style="enable-background:new 0 0 18 18;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;}
.st1{fill:#FBFBFB;stroke:#303030;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:1.4142;}
.st2{fill:#E6E6E6;}
.st3{fill:#303030;}
</style>
<rect id="rect2" x="2" y="17" class="st0" width="1" height="1"/>
<path id="path4493" inkscape:connector-curvature="0" class="st1" d="M11.5,3C9.6,3,8,4.6,8,6.5V7h1V6.5C9,5.1,10.1,4,11.5,4
C12.9,4,14,5.1,14,6.5V7h1V6.5C15,4.6,13.4,3,11.5,3z M7,8v7h9V8H7z"/>
<g id="g4491" transform="matrix(0.05555556,0,0,0.05555556,-8e-7,-1.4e-6)">
<path id="rect4488" inkscape:connector-curvature="0" class="st2" d="M126,144v126h162V144H126z"/>
<path id="path4509" inkscape:connector-curvature="0" class="st2" d="M207,54c-34.8,0-63,28.2-63,63v9h18v-9c0-24.8,20.2-45,45-45
c24.8,0,45,20.1,45,45v9h18v-9C270,82.2,241.8,54,207,54z"/>
</g>
<circle id="path820" class="st3" cx="11.5" cy="10.5" r="1.5"/>
<rect id="rect822" x="10.7" y="11" class="st3" width="1.5" height="3"/>
</svg>

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -1,35 +1,18 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg6"
style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41420996"
xml:space="preserve"
version="1.1"
viewBox="0 0 18 18"
height="100%"
width="100%"><metadata
id="metadata12"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs10" /><path
style="clip-rule:evenodd;fill:#e6e6e6;fill-opacity:1;fill-rule:evenodd;stroke:#303030;stroke-width:1.99999988;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
d="m 2,9.5762712 c 0,0 2.6226666,-4.4900001 7,-4.4900001 4.377334,0 7,4.4900001 7,4.4900001 0,0 -2.6124,4.5099998 -7,4.5099998 -4.3876001,0 -7,-4.5099998 -7,-4.5099998 z"
id="path821" /><path
id="path832"
d="m 2,9.5762712 c 0,0 2.6226666,-4.4900001 7,-4.4900001 4.377334,0 7,4.4900001 7,4.4900001 0,0 -2.6124,4.5099998 -7,4.5099998 -4.3876001,0 -7,-4.5099998 -7,-4.5099998 z"
style="clip-rule:evenodd;fill:#e6e6e6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.99999988;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-opacity:0.76470588;paint-order:stroke fill markers" /><ellipse
id="path21"
cx="9"
cy="9.5862713"
rx="3.5"
ry="3.6207628"
style="clip-rule:evenodd;fill:#303030;fill-opacity:1;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41420996" /><circle
style="clip-rule:evenodd;fill:#e6e6e6;fill-opacity:1;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41420996"
id="path1450"
cx="8"
cy="8.5862713"
r="1.5" /></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg6" inkscape:version="0.91 r13725" sodipodi:docname="layer_header_prev_eye.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 18 18"
style="enable-background:new 0 0 18 18;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E6E6E6;stroke:#303030;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:1.4142;}
.st1{fill:#E6E6E6;}
.st2{fill:#303030;}
</style>
<path id="path821" inkscape:connector-curvature="0" class="st0" d="M2,9.6c0,0,2.6-4.5,7-4.5s7,4.5,7,4.5s-2.6,4.5-7,4.5
S2,9.6,2,9.6z"/>
<path id="path832" inkscape:connector-curvature="0" class="st1" d="M2,9.6c0,0,2.6-4.5,7-4.5s7,4.5,7,4.5s-2.6,4.5-7,4.5
S2,9.6,2,9.6z"/>
<ellipse id="path21" class="st2" cx="9" cy="9.6" rx="3.5" ry="3.6"/>
<circle id="path1450" class="st1" cx="8" cy="8.6" r="1.5"/>
</svg>

Before

Width:  |  Height:  |  Size: 2 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -1,36 +1,15 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg6"
style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41420996"
xml:space="preserve"
version="1.1"
viewBox="0 0 18 18"
height="100%"
width="100%"><metadata
id="metadata12"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs10" /><ellipse
style="clip-rule:evenodd;fill:#e6e6e6;fill-opacity:1;fill-rule:evenodd;stroke:#303030;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke fill markers"
id="path1869"
cx="9"
cy="9.4999657"
rx="6.5000262"
ry="6.5000339" /><ellipse
ry="6.5000339"
rx="6.5000262"
cy="9.4999657"
cx="9"
id="ellipse9"
style="clip-rule:evenodd;fill:#e6e6e6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.76470588;paint-order:stroke fill markers" /><rect
style="clip-rule:evenodd;fill:#303030;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke fill markers"
id="rect1871"
width="8"
height="6.9999995"
x="5"
y="5.9999318" /></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg6" inkscape:version="0.91 r13725" sodipodi:docname="layer_header_table_view.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 18 18"
style="enable-background:new 0 0 18 18;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E6E6E6;stroke:#303030;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:1.4142;}
.st1{fill:#E6E6E6;}
.st2{fill:#303030;}
</style>
<ellipse id="path1869" class="st0" cx="9" cy="9.5" rx="6.5" ry="6.5"/>
<ellipse id="ellipse9" class="st1" cx="9" cy="9.5" rx="6.5" ry="6.5"/>
<rect id="rect1871" x="5" y="6" class="st2" width="8" height="7"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -1,24 +1,10 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg4"
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"
xml:space="preserve"
version="1.1"
viewBox="0 0 11 11"
height="100%"
width="100%"><metadata
id="metadata10"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs8" /><rect
style="fill-opacity:1;fill:#000000"
id="rect2"
height="1"
width="7"
y="5"
x="2" /></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg4" inkscape:version="0.91 r13725" sodipodi:docname="minus.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 11 11"
style="enable-background:new 0 0 11 11;" xml:space="preserve">
<sodipodi:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="namedview6" inkscape:current-layer="svg4" inkscape:cx="5.5" inkscape:cy="5.5" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-height="480" inkscape:window-maximized="0" inkscape:window-width="796" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="21.454545" objecttolerance="10" pagecolor="#ffffff" showgrid="false">
</sodipodi:namedview>
<rect id="rect2" x="2" y="5" width="7" height="1"/>
</svg>

Before

Width:  |  Height:  |  Size: 880 B

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -1,30 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
width="100%"
height="100%"
viewBox="0 0 18 18"
version="1.1"
xml:space="preserve"
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"
id="svg10"><metadata
id="metadata16"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs14" /><rect
x="0"
y="0"
width="18"
height="18"
style="fill:none;"
id="rect2" /><path
id="path4"
style="fill:#e6e6e6;fill-opacity:1"
d="M 14,9 5,4 v 10 z" /><path
id="path6"
style="fill-opacity:0.54901963;fill:#000000"
d="m 5.066,3.002 0.063,0.006 0.062,0.01 0.061,0.014 0.061,0.018 0.059,0.022 0.058,0.025 0.056,0.029 9,5 0.053,0.032 0.052,0.035 0.049,0.039 0.047,0.041 0.044,0.045 0.041,0.047 0.039,0.049 0.035,0.052 0.031,0.054 0.029,0.056 0.024,0.057 0.021,0.059 0.018,0.06 0.013,0.061 0.01,0.062 0.006,0.062 L 15,9 14.998,9.063 14.992,9.125 14.982,9.187 14.969,9.248 14.951,9.308 14.93,9.367 14.906,9.424 14.877,9.48 14.846,9.534 14.811,9.586 14.772,9.635 14.731,9.682 14.687,9.727 14.64,9.768 l -0.049,0.039 -0.052,0.035 -0.053,0.032 -9,5 L 5.43,14.903 5.372,14.928 5.313,14.95 5.252,14.968 5.191,14.982 5.129,14.992 5.066,14.998 5.003,15 4.94,14.998 4.878,14.992 4.816,14.983 4.754,14.969 4.694,14.952 4.634,14.931 4.576,14.906 4.52,14.877 4.466,14.845 4.414,14.81 4.364,14.772 4.317,14.73 4.272,14.686 4.23,14.639 4.192,14.589 4.156,14.537 4.124,14.483 4.096,14.427 4.071,14.369 4.049,14.31 4.032,14.249 4.018,14.188 4.008,14.126 4.002,14.063 4,14 V 4 L 4.002,3.937 4.008,3.874 4.018,3.812 4.032,3.751 4.049,3.69 4.071,3.631 4.096,3.573 4.124,3.517 4.156,3.463 4.192,3.411 4.23,3.361 4.272,3.314 4.317,3.27 4.364,3.228 4.414,3.19 4.466,3.155 4.52,3.123 4.576,3.094 4.634,3.069 4.694,3.048 4.754,3.031 4.816,3.017 4.878,3.008 4.94,3.002 5.003,3 Z M 5,14 14,9 5,4 Z" /></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg10" inkscape:version="0.91 r13725" sodipodi:docname="nextkey.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 18 18"
style="enable-background:new 0 0 18 18;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;}
.st1{fill:#E6E6E6;}
.st2{fill-opacity:0.549;}
</style>
<rect id="rect2" y="0" class="st0" width="18" height="18"/>
<path id="path4" inkscape:connector-curvature="0" class="st1" d="M14,9L5,4v10L14,9z"/>
<path id="path6" inkscape:connector-curvature="0" class="st2" d="M5.1,3L5.1,3l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0l9,5l0.1,0
l0.1,0l0,0l0,0l0,0l0,0l0,0l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1L15,9l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1
l0,0.1l0,0.1l0,0.1l0,0l0,0l0,0l0,0l0,0l-0.1,0l-0.1,0l-9,5l-0.1,0l-0.1,0l-0.1,0l-0.1,0l-0.1,0l-0.1,0l-0.1,0L5,15l-0.1,0l-0.1,0
l-0.1,0l-0.1,0l-0.1,0l-0.1,0l-0.1,0l-0.1,0l-0.1,0l-0.1,0l-0.1,0l0,0l0,0l0,0l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1
l0-0.1l0-0.1L4,14V4l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0,0l0,0l0,0l0,0l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0
l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0H5.1L5.1,3z M5,14l9-5L5,4V14z"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -1,31 +1,22 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg10"
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"
xml:space="preserve"
version="1.1"
viewBox="0 0 18 18"
height="100%"
width="100%"><metadata
id="metadata16"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs14" /><rect
id="rect2"
style="fill:none;"
height="18"
width="18"
y="0"
x="0" /><g
id="g8"><path
id="path4"
style="fill:#e6e6e6;fill-opacity:0.2;"
d="M14,9l-9,-5l0,10l9,-5Z" /><path
id="path6"
style="fill-opacity:0.301961;"
d="M5.066,3.002l0.063,0.006l0.062,0.01l0.061,0.014l0.061,0.018l0.059,0.022l0.058,0.025l0.056,0.029l9,5l0.053,0.032l0.052,0.035l0.049,0.039l0.047,0.041l0.044,0.045l0.041,0.047l0.039,0.049l0.035,0.052l0.031,0.054l0.029,0.056l0.024,0.057l0.021,0.059l0.018,0.06l0.013,0.061l0.01,0.062l0.006,0.062l0.002,0.063l-0.002,0.063l-0.006,0.062l-0.01,0.062l-0.013,0.061l-0.018,0.06l-0.021,0.059l-0.024,0.057l-0.029,0.056l-0.031,0.054l-0.035,0.052l-0.039,0.049l-0.041,0.047l-0.044,0.045l-0.047,0.041l-0.049,0.039l-0.052,0.035l-0.053,0.032l-9,5l-0.056,0.029l-0.058,0.025l-0.059,0.022l-0.061,0.018l-0.061,0.014l-0.062,0.01l-0.063,0.006l-0.063,0.002l-0.063,-0.002l-0.062,-0.006l-0.062,-0.009l-0.062,-0.014l-0.06,-0.017l-0.06,-0.021l-0.058,-0.025l-0.056,-0.029l-0.054,-0.032l-0.052,-0.035l-0.05,-0.038l-0.047,-0.042l-0.045,-0.044l-0.042,-0.047l-0.038,-0.05l-0.036,-0.052l-0.032,-0.054l-0.028,-0.056l-0.025,-0.058l-0.022,-0.059l-0.017,-0.061l-0.014,-0.061l-0.01,-0.062l-0.006,-0.063l-0.002,-0.063l0,-10l0.002,-0.063l0.006,-0.063l0.01,-0.062l0.014,-0.061l0.017,-0.061l0.022,-0.059l0.025,-0.058l0.028,-0.056l0.032,-0.054l0.036,-0.052l0.038,-0.05l0.042,-0.047l0.045,-0.044l0.047,-0.042l0.05,-0.038l0.052,-0.035l0.054,-0.032l0.056,-0.029l0.058,-0.025l0.06,-0.021l0.06,-0.017l0.062,-0.014l0.062,-0.009l0.062,-0.006l0.063,-0.002l0.063,0.002Zm-0.066,10.998l9,-5l-9,-5l0,10Z" /></g></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg10" inkscape:version="0.91 r13725" sodipodi:docname="nextkey_disabled.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 18 18"
style="enable-background:new 0 0 18 18;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;}
.st1{fill:#E6E6E6;fill-opacity:0.2;}
.st2{fill-opacity:0.302;}
</style>
<rect id="rect2" y="0" class="st0" width="18" height="18"/>
<g id="g8">
<path id="path4" inkscape:connector-curvature="0" class="st1" d="M14,9L5,4v10L14,9z"/>
<path id="path6" inkscape:connector-curvature="0" class="st2" d="M5.1,3L5.1,3l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0l9,5l0.1,0
l0.1,0l0,0l0,0l0,0l0,0l0,0l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1L15,9l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1
l0,0.1l0,0.1l0,0.1l0,0.1l0,0l0,0l0,0l0,0l0,0l-0.1,0l-0.1,0l-9,5l-0.1,0l-0.1,0l-0.1,0l-0.1,0l-0.1,0l-0.1,0l-0.1,0L5,15l-0.1,0
l-0.1,0l-0.1,0l-0.1,0l-0.1,0l-0.1,0l-0.1,0l-0.1,0l-0.1,0l-0.1,0l-0.1,0l0,0l0,0l0,0l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1
l0-0.1l0-0.1l0-0.1L4,14V4l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0,0l0,0l0,0l0,0l0.1,0l0.1,0l0.1,0l0.1,0
l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0H5.1L5.1,3z M5,14l9-5L5,4V14z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -1,30 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg10"
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"
xml:space="preserve"
version="1.1"
viewBox="0 0 18 18"
height="100%"
width="100%"><metadata
id="metadata16"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs14" /><rect
id="rect2"
style="fill:none;"
height="18"
width="18"
y="0"
x="0" /><path
d="M 14,9 5,4 v 10 z"
style="fill:#ffffff"
id="path4" /><path
d="m 5.066,3.002 0.063,0.006 0.062,0.01 0.061,0.014 0.061,0.018 0.059,0.022 0.058,0.025 0.056,0.029 9,5 0.053,0.032 0.052,0.035 0.049,0.039 0.047,0.041 0.044,0.045 0.041,0.047 0.039,0.049 0.035,0.052 0.031,0.054 0.029,0.056 0.024,0.057 0.021,0.059 0.018,0.06 0.013,0.061 0.01,0.062 0.006,0.062 L 15,9 14.998,9.063 14.992,9.125 14.982,9.187 14.969,9.248 14.951,9.308 14.93,9.367 14.906,9.424 14.877,9.48 14.846,9.534 14.811,9.586 14.772,9.635 14.731,9.682 14.687,9.727 14.64,9.768 l -0.049,0.039 -0.052,0.035 -0.053,0.032 -9,5 L 5.43,14.903 5.372,14.928 5.313,14.95 5.252,14.968 5.191,14.982 5.129,14.992 5.066,14.998 5.003,15 4.94,14.998 4.878,14.992 4.816,14.983 4.754,14.969 4.694,14.952 4.634,14.931 4.576,14.906 4.52,14.877 4.466,14.845 4.414,14.81 4.364,14.772 4.317,14.73 4.272,14.686 4.23,14.639 4.192,14.589 4.156,14.537 4.124,14.483 4.096,14.427 4.071,14.369 4.049,14.31 4.032,14.249 4.018,14.188 4.008,14.126 4.002,14.063 4,14 V 4 L 4.002,3.937 4.008,3.874 4.018,3.812 4.032,3.751 4.049,3.69 4.071,3.631 4.096,3.573 4.124,3.517 4.156,3.463 4.192,3.411 4.23,3.361 4.272,3.314 4.317,3.27 4.364,3.228 4.414,3.19 4.466,3.155 4.52,3.123 4.576,3.094 4.634,3.069 4.694,3.048 4.754,3.031 4.816,3.017 4.878,3.008 4.94,3.002 5.003,3 Z M 5,14 14,9 5,4 Z"
style="fill-opacity:0.54901963;fill:#000000"
id="path6" /></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg10" inkscape:version="0.91 r13725" sodipodi:docname="nextkey_over.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 18 18"
style="enable-background:new 0 0 18 18;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;}
.st1{fill:#FFFFFF;}
.st2{fill-opacity:0.549;}
</style>
<rect id="rect2" y="0" class="st0" width="18" height="18"/>
<path id="path4" inkscape:connector-curvature="0" class="st1" d="M14,9L5,4v10L14,9z"/>
<path id="path6" inkscape:connector-curvature="0" class="st2" d="M5.1,3L5.1,3l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0l9,5l0.1,0
l0.1,0l0,0l0,0l0,0l0,0l0,0l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1L15,9l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1
l0,0.1l0,0.1l0,0.1l0,0l0,0l0,0l0,0l0,0l-0.1,0l-0.1,0l-9,5l-0.1,0l-0.1,0l-0.1,0l-0.1,0l-0.1,0l-0.1,0l-0.1,0L5,15l-0.1,0l-0.1,0
l-0.1,0l-0.1,0l-0.1,0l-0.1,0l-0.1,0l-0.1,0l-0.1,0l-0.1,0l-0.1,0l0,0l0,0l0,0l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1
l0-0.1l0-0.1L4,14V4l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0,0l0,0l0,0l0,0l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0
l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0H5.1L5.1,3z M5,14l9-5L5,4V14z"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -1 +1,8 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 11 11" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"><path d="M2,5l3,0l0,-3l1,0l0,3l3,0l0,1l-3,0l0,3l-1,0l0,-3l-3,0l0,-1Z"/></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg2" inkscape:version="0.91 r13725" sodipodi:docname="plus.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 11 11"
style="enable-background:new 0 0 11 11;" xml:space="preserve">
<path id="path4" inkscape:connector-curvature="0" d="M2,5h3V2h1v3h3v1H6v3H5V6H2V5z"/>
</svg>

Before

Width:  |  Height:  |  Size: 487 B

After

Width:  |  Height:  |  Size: 808 B

View file

@ -1,30 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
width="100%"
height="100%"
viewBox="0 0 18 18"
version="1.1"
xml:space="preserve"
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"
id="svg10"><metadata
id="metadata16"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs14" /><rect
x="0"
y="0"
width="18"
height="18"
style="fill:none;"
id="rect2" /><path
id="path4"
style="fill:#e6e6e6;fill-opacity:1"
d="M 4,9 13,4 V 14 Z" /><path
id="path6"
style="fill-opacity:0.54901963;fill:#000000"
d="m 12.934,3.002 -0.063,0.006 -0.062,0.01 -0.061,0.014 -0.061,0.018 -0.059,0.022 -0.058,0.025 -0.056,0.029 -9,5 L 3.461,8.158 3.409,8.193 3.36,8.232 3.313,8.273 3.269,8.318 3.228,8.365 3.189,8.414 3.154,8.466 3.123,8.52 3.094,8.576 3.07,8.633 3.049,8.692 3.031,8.752 3.018,8.813 3.008,8.875 3.002,8.937 3,9 3.002,9.063 3.008,9.125 3.018,9.187 3.031,9.248 3.049,9.308 3.07,9.367 3.094,9.424 3.123,9.48 3.154,9.534 3.189,9.586 3.228,9.635 3.269,9.682 3.313,9.727 3.36,9.768 l 0.049,0.039 0.052,0.035 0.053,0.032 9,5 0.056,0.029 0.058,0.025 0.059,0.022 0.061,0.018 0.061,0.014 0.062,0.01 0.063,0.006 0.063,0.002 0.063,-0.002 0.062,-0.006 0.062,-0.009 0.062,-0.014 0.06,-0.017 0.06,-0.021 0.058,-0.025 0.056,-0.029 0.054,-0.032 0.052,-0.035 0.05,-0.038 0.047,-0.042 0.045,-0.044 0.042,-0.047 0.038,-0.05 0.036,-0.052 0.032,-0.054 0.028,-0.056 0.025,-0.058 0.022,-0.059 0.017,-0.061 0.014,-0.061 0.01,-0.062 0.006,-0.063 L 14,14 V 4 L 13.998,3.937 13.992,3.874 13.982,3.812 13.968,3.751 13.951,3.69 13.929,3.631 13.904,3.573 13.876,3.517 13.844,3.463 13.808,3.411 13.77,3.361 13.728,3.314 13.683,3.27 13.636,3.228 13.586,3.19 13.534,3.155 13.48,3.123 13.424,3.094 13.366,3.069 13.306,3.048 13.246,3.031 13.184,3.017 13.122,3.008 13.06,3.002 12.997,3 Z M 13,14 4,9 13,4 Z" /></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg10" inkscape:version="0.91 r13725" sodipodi:docname="prevkey.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 18 18"
style="enable-background:new 0 0 18 18;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;}
.st1{fill:#E6E6E6;}
.st2{fill-opacity:0.549;}
</style>
<rect id="rect2" y="0" class="st0" width="18" height="18"/>
<path id="path4" inkscape:connector-curvature="0" class="st1" d="M4,9l9-5v10L4,9z"/>
<path id="path6" inkscape:connector-curvature="0" class="st2" d="M12.9,3L12.9,3l-0.1,0l-0.1,0l-0.1,0l-0.1,0l-0.1,0l-0.1,0l-9,5
l-0.1,0l-0.1,0l0,0l0,0l0,0l0,0l0,0l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1L3,9l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1
l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1l0,0l0,0l0,0l0,0l0,0l0.1,0l0.1,0l9,5l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0
l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0l0,0l0,0l0,0l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1
l0-0.1V4l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0,0l0,0l0,0l0,0l0,0l-0.1,0l-0.1,0l-0.1,0l-0.1,0l-0.1,0
l-0.1,0l-0.1,0l-0.1,0l-0.1,0H12.9L12.9,3z M13,14L4,9l9-5V14z"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -1,31 +1,22 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg10"
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"
xml:space="preserve"
version="1.1"
viewBox="0 0 18 18"
height="100%"
width="100%"><metadata
id="metadata16"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs14" /><rect
id="rect2"
style="fill:none;"
height="18"
width="18"
y="0"
x="0" /><g
id="g8"><path
id="path4"
style="fill:#e6e6e6;fill-opacity:0.2;"
d="M4,9l9,-5l0,10l-9,-5Z" /><path
id="path6"
style="fill-opacity:0.301961;"
d="M12.934,3.002l-0.063,0.006l-0.062,0.01l-0.061,0.014l-0.061,0.018l-0.059,0.022l-0.058,0.025l-0.056,0.029l-9,5l-0.053,0.032l-0.052,0.035l-0.049,0.039l-0.047,0.041l-0.044,0.045l-0.041,0.047l-0.039,0.049l-0.035,0.052l-0.031,0.054l-0.029,0.056l-0.024,0.057l-0.021,0.059l-0.018,0.06l-0.013,0.061l-0.01,0.062l-0.006,0.062l-0.002,0.063l0.002,0.063l0.006,0.062l0.01,0.062l0.013,0.061l0.018,0.06l0.021,0.059l0.024,0.057l0.029,0.056l0.031,0.054l0.035,0.052l0.039,0.049l0.041,0.047l0.044,0.045l0.047,0.041l0.049,0.039l0.052,0.035l0.053,0.032l9,5l0.056,0.029l0.058,0.025l0.059,0.022l0.061,0.018l0.061,0.014l0.062,0.01l0.063,0.006l0.063,0.002l0.063,-0.002l0.062,-0.006l0.062,-0.009l0.062,-0.014l0.06,-0.017l0.06,-0.021l0.058,-0.025l0.056,-0.029l0.054,-0.032l0.052,-0.035l0.05,-0.038l0.047,-0.042l0.045,-0.044l0.042,-0.047l0.038,-0.05l0.036,-0.052l0.032,-0.054l0.028,-0.056l0.025,-0.058l0.022,-0.059l0.017,-0.061l0.014,-0.061l0.01,-0.062l0.006,-0.063l0.002,-0.063l0,-10l-0.002,-0.063l-0.006,-0.063l-0.01,-0.062l-0.014,-0.061l-0.017,-0.061l-0.022,-0.059l-0.025,-0.058l-0.028,-0.056l-0.032,-0.054l-0.036,-0.052l-0.038,-0.05l-0.042,-0.047l-0.045,-0.044l-0.047,-0.042l-0.05,-0.038l-0.052,-0.035l-0.054,-0.032l-0.056,-0.029l-0.058,-0.025l-0.06,-0.021l-0.06,-0.017l-0.062,-0.014l-0.062,-0.009l-0.062,-0.006l-0.063,-0.002l-0.063,0.002l0,0Zm0.066,10.998l-9,-5l9,-5l0,10Z" /></g></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg10" inkscape:version="0.91 r13725" sodipodi:docname="prevkey_disabled.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 18 18"
style="enable-background:new 0 0 18 18;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;}
.st1{fill:#E6E6E6;fill-opacity:0.2;}
.st2{fill-opacity:0.302;}
</style>
<rect id="rect2" y="0" class="st0" width="18" height="18"/>
<g id="g8">
<path id="path4" inkscape:connector-curvature="0" class="st1" d="M4,9l9-5v10L4,9z"/>
<path id="path6" inkscape:connector-curvature="0" class="st2" d="M12.9,3L12.9,3l-0.1,0l-0.1,0l-0.1,0l-0.1,0l-0.1,0l-0.1,0l-9,5
l-0.1,0l-0.1,0l0,0l0,0l0,0l0,0l0,0l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1L3,9l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1
l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1l0,0l0,0l0,0l0,0l0,0l0.1,0l0.1,0l9,5l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0
l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0l0,0l0,0l0,0l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1
l0-0.1V4l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0,0l0,0l0,0l0,0l0,0l-0.1,0l-0.1,0l-0.1,0l-0.1,0l-0.1,0
l-0.1,0l-0.1,0l-0.1,0l-0.1,0H12.9L12.9,3L12.9,3z M13,14L4,9l9-5V14z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -1,30 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg10"
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"
xml:space="preserve"
version="1.1"
viewBox="0 0 18 18"
height="100%"
width="100%"><metadata
id="metadata16"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs14" /><rect
id="rect2"
style="fill:none;"
height="18"
width="18"
y="0"
x="0" /><path
d="M 4,9 13,4 V 14 Z"
style="fill:#ffffff"
id="path4" /><path
d="m 12.934,3.002 -0.063,0.006 -0.062,0.01 -0.061,0.014 -0.061,0.018 -0.059,0.022 -0.058,0.025 -0.056,0.029 -9,5 L 3.461,8.158 3.409,8.193 3.36,8.232 3.313,8.273 3.269,8.318 3.228,8.365 3.189,8.414 3.154,8.466 3.123,8.52 3.094,8.576 3.07,8.633 3.049,8.692 3.031,8.752 3.018,8.813 3.008,8.875 3.002,8.937 3,9 3.002,9.063 3.008,9.125 3.018,9.187 3.031,9.248 3.049,9.308 3.07,9.367 3.094,9.424 3.123,9.48 3.154,9.534 3.189,9.586 3.228,9.635 3.269,9.682 3.313,9.727 3.36,9.768 l 0.049,0.039 0.052,0.035 0.053,0.032 9,5 0.056,0.029 0.058,0.025 0.059,0.022 0.061,0.018 0.061,0.014 0.062,0.01 0.063,0.006 0.063,0.002 0.063,-0.002 0.062,-0.006 0.062,-0.009 0.062,-0.014 0.06,-0.017 0.06,-0.021 0.058,-0.025 0.056,-0.029 0.054,-0.032 0.052,-0.035 0.05,-0.038 0.047,-0.042 0.045,-0.044 0.042,-0.047 0.038,-0.05 0.036,-0.052 0.032,-0.054 0.028,-0.056 0.025,-0.058 0.022,-0.059 0.017,-0.061 0.014,-0.061 0.01,-0.062 0.006,-0.063 L 14,14 V 4 L 13.998,3.937 13.992,3.874 13.982,3.812 13.968,3.751 13.951,3.69 13.929,3.631 13.904,3.573 13.876,3.517 13.844,3.463 13.808,3.411 13.77,3.361 13.728,3.314 13.683,3.27 13.636,3.228 13.586,3.19 13.534,3.155 13.48,3.123 13.424,3.094 13.366,3.069 13.306,3.048 13.246,3.031 13.184,3.017 13.122,3.008 13.06,3.002 12.997,3 Z M 13,14 4,9 13,4 Z"
style="fill-opacity:0.54901963;stroke:none;stroke-opacity:1;fill:#000000"
id="path6" /></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg10" inkscape:version="0.91 r13725" sodipodi:docname="prevkey_over.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 18 18"
style="enable-background:new 0 0 18 18;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;}
.st1{fill:#FFFFFF;}
.st2{fill-opacity:0.549;}
</style>
<rect id="rect2" y="0" class="st0" width="18" height="18"/>
<path id="path4" inkscape:connector-curvature="0" class="st1" d="M4,9l9-5v10L4,9z"/>
<path id="path6" inkscape:connector-curvature="0" class="st2" d="M12.9,3L12.9,3l-0.1,0l-0.1,0l-0.1,0l-0.1,0l-0.1,0l-0.1,0l-9,5
l-0.1,0l-0.1,0l0,0l0,0l0,0l0,0l0,0l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1L3,9l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1
l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1l0,0l0,0l0,0l0,0l0,0l0.1,0l0.1,0l9,5l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0
l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0l0,0l0,0l0,0l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1
l0-0.1V4l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0,0l0,0l0,0l0,0l0,0l-0.1,0l-0.1,0l-0.1,0l-0.1,0l-0.1,0
l-0.1,0l-0.1,0l-0.1,0l-0.1,0H12.9L12.9,3z M13,14L4,9l9-5V14z"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -1,31 +1,16 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg6"
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;"
xml:space="preserve"
version="1.1"
viewBox="0 0 11 11"
height="100%"
width="100%"><metadata
id="metadata12"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs10" /><circle
r="4.5"
cy="5.5"
cx="5.5"
id="path4484"
style="fill:#ffffff;fill-opacity:0.64705884;stroke:none;stroke-width:1.29999995;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;paint-order:markers stroke fill" /><path
id="circle2"
d="M 5.4915254,0 A 5.5,5.5 0 0 0 -0.00847458,5.5 5.5,5.5 0 0 0 5.4915254,11 5.5,5.5 0 0 0 10.991526,5.5 5.5,5.5 0 0 0 5.4915254,0 Z m 0,1 a 4.5,4.5 0 0 1 4.5,4.5 4.5,4.5 0 0 1 -4.5,4.5 A 4.5,4.5 0 0 1 0.99152542,5.5 4.5,4.5 0 0 1 5.4915254,1 Z"
style="clip-rule:evenodd;fill:#000000;fill-opacity:0.43089432;fill-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5" /><circle
r="2.4957628"
cy="5.4957628"
cx="5.4957628"
id="path4497"
style="fill:#000000;fill-opacity:0.82926828;stroke:none;stroke-width:1.29999995;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" /></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg6" inkscape:version="0.91 r13725" sodipodi:docname="radiobutton_checked.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 11 11"
style="enable-background:new 0 0 11 11;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;fill-opacity:0.6471;}
.st1{fill-opacity:0.4309;}
.st2{fill-opacity:0.8293;}
</style>
<circle id="path4484" class="st0" cx="5.5" cy="5.5" r="4.5"/>
<path id="circle2" inkscape:connector-curvature="0" class="st1" d="M5.5,0C2.5,0,0,2.5,0,5.5S2.5,11,5.5,11S11,8.5,11,5.5v0
C11,2.5,8.5,0,5.5,0L5.5,0z M5.5,1C8,1,10,3,10,5.5l0,0C10,8,8,10,5.5,10S1,8,1,5.5l0,0C1,3,3,1,5.5,1z"/>
<circle id="path4497" class="st2" cx="5.5" cy="5.5" r="2.5"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -1,26 +1,14 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg6"
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;"
xml:space="preserve"
version="1.1"
viewBox="0 0 11 11"
height="100%"
width="100%"><metadata
id="metadata12"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs10" /><circle
r="4.5"
cy="5.5"
cx="5.5"
id="path4483"
style="fill:#ffffff;fill-opacity:0.64634144;stroke:none;stroke-width:1.29999995;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;paint-order:markers stroke fill" /><path
id="circle2"
d="M 5.5 0 A 5.5 5.5 0 0 0 0 5.5 A 5.5 5.5 0 0 0 5.5 11 A 5.5 5.5 0 0 0 11 5.5 A 5.5 5.5 0 0 0 5.5 0 z M 5.5 1 A 4.5 4.5 0 0 1 10 5.5 A 4.5 4.5 0 0 1 5.5 10 A 4.5 4.5 0 0 1 1 5.5 A 4.5 4.5 0 0 1 5.5 1 z "
style="fill:#000000;fill-opacity:0.43089432" /></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg6" inkscape:version="0.91 r13725" sodipodi:docname="radiobutton_unchecked.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 11 11"
style="enable-background:new 0 0 11 11;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;fill-opacity:0.6463;}
.st1{fill-opacity:0.4309;}
</style>
<circle id="path4483" class="st0" cx="5.5" cy="5.5" r="4.5"/>
<path id="circle2" inkscape:connector-curvature="0" class="st1" d="M5.5,0C2.5,0,0,2.5,0,5.5S2.5,11,5.5,11S11,8.5,11,5.5
S8.5,0,5.5,0z M5.5,1C8,1,10,3,10,5.5S8,10,5.5,10S1,8,1,5.5S3,1,5.5,1z"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -1,21 +1,13 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
width="100%"
height="100%"
viewBox="0 0 16 16"
version="1.1"
xml:space="preserve"
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"
id="svg4"><metadata
id="metadata10"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs8" /><path
d="M 10.722125,6.0000002 H 5.277875 4.5 L 8,10 11.5,6.0000002 Z"
style="clip-rule:evenodd;fill:#000000;fill-opacity:0.78431374;fill-rule:evenodd;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:1.41420996"
id="path2" /></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg4" inkscape:version="0.91 r13725" sodipodi:docname="scroll-down.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 16 16"
style="enable-background:new 0 0 16 16;" xml:space="preserve">
<style type="text/css">
.st0{fill-opacity:0.7843;}
</style>
<sodipodi:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="namedview6" inkscape:current-layer="svg4" inkscape:cx="8" inkscape:cy="8" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-height="480" inkscape:window-maximized="0" inkscape:window-width="796" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="14.75" objecttolerance="10" pagecolor="#ffffff" showgrid="false">
</sodipodi:namedview>
<path id="path2" inkscape:connector-curvature="0" class="st0" d="M10.7,6H5.3H4.5L8,10l3.5-4H10.7z"/>
</svg>

Before

Width:  |  Height:  |  Size: 1,008 B

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -1,21 +1,13 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
width="100%"
height="100%"
viewBox="0 0 16 16"
version="1.1"
xml:space="preserve"
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"
id="svg4"><metadata
id="metadata10"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs8" /><path
d="M 9.9999999,10.722125 V 5.277875 4.5 L 6,8 9.9999999,11.5 Z"
style="clip-rule:evenodd;fill:#000000;fill-opacity:0.78431374;fill-rule:evenodd;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:1.41420996"
id="path2" /></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg4" inkscape:version="0.91 r13725" sodipodi:docname="scroll-left.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 16 16"
style="enable-background:new 0 0 16 16;" xml:space="preserve">
<style type="text/css">
.st0{fill-opacity:0.7843;}
</style>
<sodipodi:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="namedview6" inkscape:current-layer="svg4" inkscape:cx="8" inkscape:cy="8" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-height="480" inkscape:window-maximized="0" inkscape:window-width="796" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="14.75" objecttolerance="10" pagecolor="#ffffff" showgrid="false">
</sodipodi:namedview>
<path id="path2" inkscape:connector-curvature="0" class="st0" d="M10,10.7V5.3V4.5L6,8l4,3.5V10.7z"/>
</svg>

Before

Width:  |  Height:  |  Size: 1,007 B

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -1,21 +1,13 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
width="100%"
height="100%"
viewBox="0 0 16 16"
version="1.1"
xml:space="preserve"
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"
id="svg4"><metadata
id="metadata10"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs8" /><path
d="m 6.0000001,5.2778753 v 5.4442497 0.777876 L 10,8 6.0000001,4.5000003 Z"
style="clip-rule:evenodd;fill:#000000;fill-opacity:0.78431374;fill-rule:evenodd;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:1.41420996"
id="path2" /></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg4" inkscape:version="0.91 r13725" sodipodi:docname="scroll-right.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 16 16"
style="enable-background:new 0 0 16 16;" xml:space="preserve">
<style type="text/css">
.st0{fill-opacity:0.7843;}
</style>
<sodipodi:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="namedview6" inkscape:current-layer="svg4" inkscape:cx="8" inkscape:cy="8" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-height="480" inkscape:window-maximized="0" inkscape:window-width="796" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="14.75" objecttolerance="10" pagecolor="#ffffff" showgrid="false">
</sodipodi:namedview>
<path id="path2" inkscape:connector-curvature="0" class="st0" d="M6,5.3v5.4v0.8L10,8L6,4.5V5.3z"/>
</svg>

Before

Width:  |  Height:  |  Size: 1,019 B

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -1,21 +1,13 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
width="100%"
height="100%"
viewBox="0 0 16 16"
version="1.1"
xml:space="preserve"
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"
id="svg4"><metadata
id="metadata10"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs8" /><path
d="M 10.722125,10 H 5.277875 4.5 L 8,6 l 3.5,4 z"
style="clip-rule:evenodd;fill:#000000;fill-opacity:0.78431374;fill-rule:evenodd;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:1.41420996"
id="path2" /></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg4" inkscape:version="0.91 r13725" sodipodi:docname="scroll-up.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 16 16"
style="enable-background:new 0 0 16 16;" xml:space="preserve">
<style type="text/css">
.st0{fill-opacity:0.7843;}
</style>
<sodipodi:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="namedview6" inkscape:current-layer="svg4" inkscape:cx="8" inkscape:cy="8" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-height="480" inkscape:window-maximized="0" inkscape:window-width="796" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="14.75" objecttolerance="10" pagecolor="#ffffff" showgrid="false">
</sodipodi:namedview>
<path id="path2" inkscape:connector-curvature="0" class="st0" d="M10.7,10H5.3H4.5L8,6l3.5,4H10.7z"/>
</svg>

Before

Width:  |  Height:  |  Size: 993 B

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -1 +1,12 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 13 11" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:square;stroke-miterlimit:1.5;"><path d="M10.5,7.5l-3,0" style="fill:none;stroke:#1b1b1b;stroke-opacity:0.501961;stroke-width:1px;"/><path d="M2.5,7.5l3,0" style="fill:none;stroke:#1b1b1b;stroke-opacity:0.501961;stroke-width:1px;"/></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg2" inkscape:version="0.91 r13725" sodipodi:docname="segment_disabled.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 13 11"
style="enable-background:new 0 0 13 11;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;stroke:#1B1B1B;stroke-linecap:square;stroke-miterlimit:1.5;stroke-opacity:0.502;}
</style>
<path id="path4" inkscape:connector-curvature="0" class="st0" d="M10.5,7.5h-3"/>
<path id="path6" inkscape:connector-curvature="0" class="st0" d="M2.5,7.5h3"/>
</svg>

Before

Width:  |  Height:  |  Size: 612 B

After

Width:  |  Height:  |  Size: 1 KiB

View file

@ -1 +1,12 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 13 11" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"><path d="M6,6l1,0l0,-2l5,0l0,5l-5,0l0,-2l-1,0l0,2l-5,0l0,-5c1.667,0 3.333,0 5,0l0,2Zm2,1l0,1l3,0l0,-3c-1,0 -2,0 -3,0l0,1l1,0l0,1l-1,0Zm-3,-1l0,-1l-3,0l0,3c1,0 2,0 3,0l0,-1l-1,0l0,-1l1,0Z" style="fill:#d6d6d6;"/></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg2" inkscape:version="0.91 r13725" sodipodi:docname="segment_linked.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 13 11"
style="enable-background:new 0 0 13 11;" xml:space="preserve">
<style type="text/css">
.st0{fill:#D6D6D6;}
</style>
<path id="path4" inkscape:connector-curvature="0" class="st0" d="M6,6h1V4h5v5H7V7H6v2H1V4c1.7,0,3.3,0,5,0V6z M8,7v1h3V5
c-1,0-2,0-3,0v1h1v1H8z M5,6V5H2v3c1,0,2,0,3,0V7H4V6H5z"/>
</svg>

Before

Width:  |  Height:  |  Size: 627 B

After

Width:  |  Height:  |  Size: 965 B

View file

@ -1 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 13 11" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"><path d="M12,9l-4,0l0,-1l3,0l0,-3l-3,0l0,-1l4,0l0,5Zm-7,-4l-3,0l0,3l3,0l0,1l-4,0l0,-5l4,0l0,1Z" style="fill:#242424;"/></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg2" inkscape:version="0.91 r13725" sodipodi:docname="segment_unlinked.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 13 11"
style="enable-background:new 0 0 13 11;" xml:space="preserve">
<style type="text/css">
.st0{fill:#242424;}
</style>
<path id="path4" inkscape:connector-curvature="0" class="st0" d="M12,9H8V8h3V5H8V4h4V9z M5,5H2v3h3v1H1V4h4V5z"/>
</svg>

Before

Width:  |  Height:  |  Size: 535 B

After

Width:  |  Height:  |  Size: 901 B

View file

@ -1 +1,17 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 21 17" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"><g><rect x="2" y="1" width="1" height="15"/><rect x="1" y="14" width="18" height="1"/><rect x="4" y="5" width="1" height="1"/><rect x="6" y="5" width="1" height="1"/><rect x="8" y="5" width="1" height="1"/><rect x="13" y="8" width="1" height="1"/><rect x="13" y="10" width="1" height="1"/><rect x="13" y="12" width="1" height="1"/><path d="M15,4l0,3l-3,0l0,-3l3,0Zm-1,2l0,-1l-1,0l0,1l1,0Z"/><rect x="10" y="5" width="1" height="1"/></g></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg2" inkscape:version="0.91 r13725" sodipodi:docname="selectiontool_position.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 21 17"
style="enable-background:new 0 0 21 17;" xml:space="preserve">
<rect id="rect6" x="2.5" y="1" width="1" height="15"/>
<rect id="rect8" x="1.5" y="14" width="18" height="1"/>
<rect id="rect10" x="4.5" y="5" width="1" height="1"/>
<rect id="rect12" x="6.5" y="5" width="1" height="1"/>
<rect id="rect14" x="8.5" y="5" width="1" height="1"/>
<rect id="rect16" x="13.5" y="8" width="1" height="1"/>
<rect id="rect18" x="13.5" y="10" width="1" height="1"/>
<rect id="rect20" x="13.5" y="12" width="1" height="1"/>
<path id="path22" inkscape:connector-curvature="0" d="M15.5,4v3h-3V4H15.5z M14.5,6V5h-1v1H14.5z"/>
<rect id="rect24" x="10.5" y="5" width="1" height="1"/>
</svg>

Before

Width:  |  Height:  |  Size: 852 B

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -1 +1,13 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 21 17" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-miterlimit:1.5;"><path d="M13,1l-10.5,13.5l16.5,0" style="fill:none;stroke:#000;stroke-width:1px;"/><path d="M12.5,1.5c0,0 5.916,3.904 6,12.5" style="fill:none;stroke:#000;stroke-width:1.4px;stroke-miterlimit:1;stroke-dasharray:1.4,1.82,0,0;stroke-dashoffset:1.4;"/></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg2" inkscape:version="0.91 r13725" sodipodi:docname="selectiontool_rotation.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 21 17"
style="enable-background:new 0 0 21 17;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;stroke:#000000;stroke-miterlimit:1.5;}
.st1{fill:none;stroke:#000000;stroke-width:1.4;stroke-miterlimit:1;stroke-dasharray:1.4,1.82,0,0;stroke-dashoffset:1;}
</style>
<path id="path4" inkscape:connector-curvature="0" class="st0" d="M12.8,1L2.3,14.5h16.5"/>
<path id="path6" inkscape:connector-curvature="0" class="st1" d="M12.3,1.5c0,0,5.9,3.9,6,12.5"/>
</svg>

Before

Width:  |  Height:  |  Size: 639 B

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -1 +1,14 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 21 17" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"><path d="M17,14l1,0l0,-1l1,0l0,2l-2,0l0,-1Zm-14,0l10,0l0,-6l-10,0l0,6Zm15,-4l1,0l0,2l-1,0l0,-2Zm0,-3l1,0l0,2l-1,0l0,-2Zm0,-3l1,0l0,2l-1,0l0,-2Zm-16,-3l2,0l0,1l-1,0l0,1l-1,0l0,-2Zm17,2l-1,0l0,-1l-1,0l0,-1l2,0l0,2Zm-14,-2l2,0l0,1l-2,0l0,-1Zm3,0l2,0l0,1l-2,0l0,-1Zm3,0l2,0l0,1l-2,0l0,-1Zm3,0l2,0l0,1l-2,0l0,-1Zm-11,3l0,3l11,0l0,7l1,0l0,1l-13,0l0,-11l1,0Z"/><rect x="3" y="8" width="10" height="6" style="fill:#ddd;"/></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg2" inkscape:version="0.91 r13725" sodipodi:docname="selectiontool_scalepeg.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 21 17"
style="enable-background:new 0 0 21 17;" xml:space="preserve">
<style type="text/css">
.st0{fill:#DDDDDD;}
</style>
<path id="path4" inkscape:connector-curvature="0" d="M17,14h1v-1h1v2h-2V14z M3,14h10V8H3V14z M18,10h1v2h-1V10z M18,7h1v2h-1V7z
M18,4h1v2h-1V4z M2,1h2v1H3v1H2V1z M19,3h-1V2h-1V1h2V3z M5,1h2v1H5V1z M8,1h2v1H8V1z M11,1h2v1h-2V1z M14,1h2v1h-2V1z M3,4v3h11v7
h1v1H2V4H3z"/>
<rect id="rect6" x="3" y="8" class="st0" width="10" height="6"/>
</svg>

Before

Width:  |  Height:  |  Size: 830 B

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -1 +1,14 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 21 17" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;"><rect x="3" y="7" width="15" height="3"/><path d="M10.5,11l3,3.5l-6,0l3,-3.5Z" style="fill:#dbdbdb;stroke:#050505;stroke-width:1px;"/><path d="M10.5,6l3,-3.5l-6,0l3,3.5Z" style="fill:#dbdbdb;stroke:#000;stroke-width:1px;"/></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg2" inkscape:version="0.91 r13725" sodipodi:docname="selectiontool_thickness.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 21 17"
style="enable-background:new 0 0 21 17;" xml:space="preserve">
<style type="text/css">
.st0{fill:#DBDBDB;stroke:#050505;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;}
.st1{fill:#DBDBDB;stroke:#000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;}
</style>
<rect id="rect4" x="3" y="7" width="15" height="3"/>
<path id="path6" inkscape:connector-curvature="0" class="st0" d="M10.5,11l3,3.5h-6L10.5,11z"/>
<path id="path8" inkscape:connector-curvature="0" class="st1" d="M10.5,6l3-3.5h-6L10.5,6z"/>
</svg>

Before

Width:  |  Height:  |  Size: 656 B

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -1,24 +1,13 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg4"
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"
xml:space="preserve"
version="1.1"
viewBox="0 0 4 4"
height="100%"
width="100%"><metadata
id="metadata10"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs8" /><rect
id="rect2"
style="fill-opacity:0.39024389;fill:#000000"
height="4"
width="4"
y="0"
x="0" /></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg4" inkscape:version="0.91 r13725" sodipodi:docname="slider-groove.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 4 4"
style="enable-background:new 0 0 4 4;" xml:space="preserve">
<style type="text/css">
.st0{fill-opacity:0.3902;}
</style>
<sodipodi:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="namedview6" inkscape:current-layer="svg4" inkscape:cx="2" inkscape:cy="2" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-height="480" inkscape:window-maximized="0" inkscape:window-width="796" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="59" objecttolerance="10" pagecolor="#ffffff" showgrid="false">
</sodipodi:namedview>
<rect id="rect2" y="0" class="st0" width="4" height="4"/>
</svg>

Before

Width:  |  Height:  |  Size: 887 B

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -1,24 +1,13 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg4"
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"
xml:space="preserve"
version="1.1"
viewBox="0 0 4 4"
height="100%"
width="100%"><metadata
id="metadata10"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs8" /><rect
id="rect2"
style="fill-opacity:0.16260162;fill:#000000"
height="4"
width="4"
y="0"
x="0" /></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg4" inkscape:version="0.91 r13725" sodipodi:docname="slider-groove_disabled.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 4 4"
style="enable-background:new 0 0 4 4;" xml:space="preserve">
<style type="text/css">
.st0{fill-opacity:0.1626;}
</style>
<sodipodi:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="namedview6" inkscape:current-layer="svg4" inkscape:cx="2" inkscape:cy="2" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-height="480" inkscape:window-maximized="0" inkscape:window-width="796" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="59" objecttolerance="10" pagecolor="#ffffff" showgrid="false">
</sodipodi:namedview>
<rect id="rect2" y="0" class="st0" width="4" height="4"/>
</svg>

Before

Width:  |  Height:  |  Size: 887 B

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -1,45 +1,15 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
width="10"
height="16"
viewBox="0 0 10 16"
version="1.1"
id="svg4553">
<defs
id="defs4547" />
<metadata
id="metadata4550">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<rect
style="fill:none;fill-opacity:1;stroke:#3e3e3e;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
id="rect4492"
width="8"
height="14"
x="1"
y="1"
ry="2"
rx="2" />
<rect
rx="2"
ry="2"
y="1"
x="1"
height="14"
width="8"
id="rect4490"
style="fill:#bbbbbb;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" />
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg4553" inkscape:version="0.91 r13725" sodipodi:docname="slider-handle.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 10 16"
style="enable-background:new 0 0 10 16;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;stroke:#3E3E3E;stroke-width:2;stroke-linecap:square;}
.st1{fill:#BBBBBB;}
</style>
<sodipodi:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="namedview7" inkscape:current-layer="svg4553" inkscape:cx="5" inkscape:cy="8" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-height="480" inkscape:window-maximized="0" inkscape:window-width="796" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="14.75" objecttolerance="10" pagecolor="#ffffff" showgrid="false">
</sodipodi:namedview>
<path id="rect4492" class="st0" d="M3,1h4c1.1,0,2,0.9,2,2v10c0,1.1-0.9,2-2,2H3c-1.1,0-2-0.9-2-2V3C1,1.9,1.9,1,3,1z"/>
<path id="rect4490" class="st1" d="M3,1h4c1.1,0,2,0.9,2,2v10c0,1.1-0.9,2-2,2H3c-1.1,0-2-0.9-2-2V3C1,1.9,1.9,1,3,1z"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -1,45 +1,15 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg4553"
version="1.1"
viewBox="0 0 10 16"
height="16"
width="10">
<defs
id="defs4547" />
<metadata
id="metadata4550">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<rect
rx="2"
ry="2"
y="1"
x="1"
height="14"
width="8"
id="rect4492"
style="fill:none;fill-opacity:1;stroke:#626262;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" />
<rect
style="fill:#9d9d9d;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
id="rect4490"
width="8"
height="14"
x="1"
y="1"
ry="2"
rx="2" />
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg4553" inkscape:version="0.91 r13725" sodipodi:docname="slider-handle_disabled.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 10 16"
style="enable-background:new 0 0 10 16;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;stroke:#626262;stroke-width:2;stroke-linecap:square;}
.st1{fill:#9D9D9D;}
</style>
<sodipodi:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="namedview7" inkscape:current-layer="svg4553" inkscape:cx="5" inkscape:cy="8" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-height="480" inkscape:window-maximized="0" inkscape:window-width="796" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="14.75" objecttolerance="10" pagecolor="#ffffff" showgrid="false">
</sodipodi:namedview>
<path id="rect4492" class="st0" d="M3,1h4c1.1,0,2,0.9,2,2v10c0,1.1-0.9,2-2,2H3c-1.1,0-2-0.9-2-2V3C1,1.9,1.9,1,3,1z"/>
<path id="rect4490" class="st1" d="M3,1h4c1.1,0,2,0.9,2,2v10c0,1.1-0.9,2-2,2H3c-1.1,0-2-0.9-2-2V3C1,1.9,1.9,1,3,1z"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -1,42 +1,19 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
width="100%"
height="100%"
viewBox="0 0 15 15"
version="1.1"
id="svg4489">
<defs
id="defs4483" />
<metadata
id="metadata4486">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1"
transform="translate(0,-1106.5197)" />
<path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.54901961;paint-order:markers stroke fill"
d="M 2,1 C 1.446,1 1,1.4460072 1,2 v 2 2 4 c 0,0 0,1 1,1 H 3 V 9 7 5 C 3,4.44601 3.446,4 4,4 h 5 c 0.554,0 1,0.44601 1,1 v 1 h 2 V 4 C 12,3.44601 11.554,3 11,3 H 6 V 2 C 6,1.4460072 5.554,1 5,1 Z M 5,5 C 4.446,5 4,5.44601 4,6 v 2 5 c 0,0 0,1 1,1 h 8 c 0,0 1,0 1,-1 V 8 C 14,7.44601 13.554,7 13,7 H 9 V 6 C 9,5.44601 8.554,5 8,5 Z"
id="path4487" />
<path
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
d="M 2,1 C 1.446,1 1,1.4460072 1,2 v 2 2 4 c 0,0 0,1 1,1 H 3 V 9 7 5 C 3,4.44601 3.446,4 4,4 h 5 c 0.554,0 1,0.44601 1,1 v 1 h 2 V 4 C 12,3.44601 11.554,3 11,3 H 6 V 2 C 6,1.4460072 5.554,1 5,1 Z"
id="rect4508" />
<path
id="rect4521"
d="M 5,5 C 4.446,5 4,5.44601 4,6 v 2 5 c 0,0 0,1 1,1 h 8 c 0,0 1,0 1,-1 V 8 C 14,7.44601 13.554,7 13,7 H 9 V 6 C 9,5.44601 8.554,5 8,5 Z"
style="fill:#5db8e6;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" />
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg4489" inkscape:version="0.91 r13725" sodipodi:docname="subfolder.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 15 15"
style="enable-background:new 0 0 15 15;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.549;}
.st1{fill:#E6E6E6;}
.st2{fill:#5DB8E6;}
</style>
<path id="path4487" inkscape:connector-curvature="0" class="st0" d="M2,1C1.4,1,1,1.4,1,2v2v2v4c0,0,0,1,1,1h1V9V7V5
c0-0.6,0.4-1,1-1h5c0.6,0,1,0.4,1,1v1h2V4c0-0.6-0.4-1-1-1H6V2c0-0.6-0.4-1-1-1H2z M5,5C4.4,5,4,5.4,4,6v2v5c0,0,0,1,1,1h8
c0,0,1,0,1-1V8c0-0.6-0.4-1-1-1H9V6c0-0.6-0.4-1-1-1H5z"/>
<path id="rect4508" inkscape:connector-curvature="0" class="st1" d="M2,1C1.4,1,1,1.4,1,2v2v2v4c0,0,0,1,1,1h1V9V7V5
c0-0.6,0.4-1,1-1h5c0.6,0,1,0.4,1,1v1h2V4c0-0.6-0.4-1-1-1H6V2c0-0.6-0.4-1-1-1H2z"/>
<path id="rect4521" inkscape:connector-curvature="0" class="st2" d="M5,5C4.4,5,4,5.4,4,6v2v5c0,0,0,1,1,1h8c0,0,1,0,1-1V8
c0-0.6-0.4-1-1-1H9V6c0-0.6-0.4-1-1-1H5z"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -1,30 +1,17 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg6"
style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41420996"
xml:space="preserve"
version="1.1"
viewBox="0 0 18 18"
height="100%"
width="100%"><metadata
id="metadata12"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs10" /><path
d="M 9.5,12 13,8 H 6 Z"
style="fill:#ebebeb;stroke:#303030;stroke-opacity:1;stroke-width:2;stroke-miterlimit:1.41420996;stroke-dasharray:none"
id="path824" /><rect
id="rect2"
style="fill:none"
height="17"
width="17"
y="0"
x="0" /><path
id="path4"
style="fill:#ebebeb"
d="M 9.5,12 13,8 H 6 Z" /></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg6" inkscape:version="0.91 r13725" sodipodi:docname="timeline_config.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 18 18"
style="enable-background:new 0 0 18 18;" xml:space="preserve">
<style type="text/css">
.st0{fill:#EBEBEB;stroke:#303030;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:1.4142;}
.st1{fill:none;}
.st2{fill:#EBEBEB;}
</style>
<sodipodi:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="namedview8" inkscape:current-layer="svg6" inkscape:cx="9" inkscape:cy="9" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-height="480" inkscape:window-maximized="0" inkscape:window-width="796" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="13.111111" objecttolerance="10" pagecolor="#ffffff" showgrid="false">
</sodipodi:namedview>
<path id="path824" inkscape:connector-curvature="0" class="st0" d="M9,12l3.5-4h-7L9,12z"/>
<rect id="rect2" x="0.5" y="0" class="st1" width="17" height="17"/>
<path id="path4" inkscape:connector-curvature="0" class="st2" d="M9,12l3.5-4h-7L9,12z"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -1,26 +1,16 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
width="100%"
height="100%"
viewBox="0 0 18 18"
version="1.1"
xml:space="preserve"
style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41420996"
id="svg6"><metadata
id="metadata12"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs10" /><path
id="path4506"
d="M 9.5 6 A 3.5 3.5 0 0 0 6 9.5 A 3.5 3.5 0 0 0 9.5 13 A 3.5 3.5 0 0 0 13 9.5 A 3.5 3.5 0 0 0 9.5 6 z M 9.5 7 A 2.5 2.5 0 0 1 12 9.5 A 2.5 2.5 0 0 1 9.5 12 A 2.5 2.5 0 0 1 7 9.5 A 2.5 2.5 0 0 1 9.5 7 z "
style="fill:#303030;fill-opacity:0.44705882;stroke:none;stroke-width:1.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" /><circle
style="fill:#8f8f8f;fill-opacity:0.44705883;stroke:none;stroke-width:1.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
id="circle4508"
cx="9.5"
cy="9.5"
r="2.5" /></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg6" inkscape:version="0.91 r13725" sodipodi:docname="timeline_lock_off.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 18 18"
style="enable-background:new 0 0 18 18;" xml:space="preserve">
<style type="text/css">
.st0{fill:#303030;fill-opacity:0.4471;}
.st1{fill:#8F8F8F;fill-opacity:0.4471;}
</style>
<sodipodi:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="namedview7" inkscape:current-layer="svg6" inkscape:cx="9" inkscape:cy="9" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-height="480" inkscape:window-maximized="0" inkscape:window-width="796" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="13.111111" objecttolerance="10" pagecolor="#ffffff" showgrid="false">
</sodipodi:namedview>
<path id="path4506" inkscape:connector-curvature="0" class="st0" d="M9,6C7.1,6,5.5,7.6,5.5,9.5S7.1,13,9,13s3.5-1.6,3.5-3.5
S10.9,6,9,6z M9,7c1.4,0,2.5,1.1,2.5,2.5S10.4,12,9,12s-2.5-1.1-2.5-2.5S7.6,7,9,7z"/>
<circle id="circle4508" class="st1" cx="9" cy="9.5" r="2.5"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -1,26 +1,14 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg6"
style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41420996"
xml:space="preserve"
version="1.1"
viewBox="0 0 18 18"
height="100%"
width="100%"><metadata
id="metadata12"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs10" /><path
style="fill:#303030;fill-opacity:1;stroke:none;stroke-width:1.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
d="M 9.5 6 A 3.5 3.5 0 0 0 6 9.5 A 3.5 3.5 0 0 0 9.5 13 A 3.5 3.5 0 0 0 13 9.5 A 3.5 3.5 0 0 0 9.5 6 z M 9.5 7 A 2.5 2.5 0 0 1 12 9.5 A 2.5 2.5 0 0 1 9.5 12 A 2.5 2.5 0 0 1 7 9.5 A 2.5 2.5 0 0 1 9.5 7 z "
id="path4506" /><circle
r="2.5"
cy="9.5"
cx="9.5"
id="circle4508"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" /></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg6" inkscape:version="0.91 r13725" sodipodi:docname="timeline_lock_on.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 18 18"
style="enable-background:new 0 0 18 18;" xml:space="preserve">
<style type="text/css">
.st0{fill:#303030;}
.st1{fill:#FFFFFF;}
</style>
<path id="path4506" inkscape:connector-curvature="0" class="st0" d="M9,6C7.1,6,5.5,7.6,5.5,9.5S7.1,13,9,13s3.5-1.6,3.5-3.5
S10.9,6,9,6z M9,7c1.4,0,2.5,1.1,2.5,2.5S10.4,12,9,12s-2.5-1.1-2.5-2.5S7.6,7,9,7z"/>
<circle id="circle4508" class="st1" cx="9" cy="9.5" r="2.5"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -1,26 +1,14 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
width="100%"
height="100%"
viewBox="0 0 18 18"
version="1.1"
xml:space="preserve"
style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41420996"
id="svg6"><metadata
id="metadata12"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs10" /><path
id="path4506"
d="M 9.5 6 A 3.5 3.5 0 0 0 6 9.5 A 3.5 3.5 0 0 0 9.5 13 A 3.5 3.5 0 0 0 13 9.5 A 3.5 3.5 0 0 0 9.5 6 z M 9.5 7 A 2.5 2.5 0 0 1 12 9.5 A 2.5 2.5 0 0 1 9.5 12 A 2.5 2.5 0 0 1 7 9.5 A 2.5 2.5 0 0 1 9.5 7 z "
style="fill:#303030;fill-opacity:0.44705882;stroke:none;stroke-width:1.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" /><circle
style="fill:#8f8f8f;fill-opacity:0.44705883;stroke:none;stroke-width:1.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
id="circle4508"
cx="9.5"
cy="9.5"
r="2.5" /></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg6" inkscape:version="0.91 r13725" sodipodi:docname="timeline_prev_eye_off.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 18 18"
style="enable-background:new 0 0 18 18;" xml:space="preserve">
<style type="text/css">
.st0{fill:#303030;fill-opacity:0.4471;}
.st1{fill:#8F8F8F;fill-opacity:0.4471;}
</style>
<path id="path4506" inkscape:connector-curvature="0" class="st0" d="M9,6C7.1,6,5.5,7.6,5.5,9.5S7.1,13,9,13s3.5-1.6,3.5-3.5
S10.9,6,9,6z M9,7c1.4,0,2.5,1.1,2.5,2.5S10.4,12,9,12s-2.5-1.1-2.5-2.5S7.6,7,9,7z"/>
<circle id="circle4508" class="st1" cx="9" cy="9.5" r="2.5"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -1,27 +1,14 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
width="100%"
height="100%"
viewBox="0 0 18 18"
version="1.1"
xml:space="preserve"
style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41420996"
id="svg6"><metadata
id="metadata12"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs10" /><path
id="path4506"
d="M 9.4999995,5.0000004 A 4.4999998,4.4999998 0 0 0 4.9999998,9.5000002 4.4999998,4.4999998 0 0 0 9.4999995,13.999999 4.4999998,4.4999998 0 0 0 13.999997,9.5000002 4.4999998,4.4999998 0 0 0 9.4999995,5.0000004 Z m 0,1.2857141 A 3.2142855,3.2142855 0 0 1 12.714283,9.5000002 3.2142855,3.2142855 0 0 1 9.4999995,12.714285 3.2142855,3.2142855 0 0 1 6.2857139,9.5000002 3.2142855,3.2142855 0 0 1 9.4999995,6.2857145 Z"
style="fill:#303030;fill-opacity:1;stroke:none;stroke-width:1.99999964;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" /><ellipse
ry="3.5"
rx="3.5000002"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.99999964;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
id="circle4508"
cx="9.5"
cy="9.5" /></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg6" inkscape:version="0.91 r13725" sodipodi:docname="timeline_prev_eye_on.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 18 18"
style="enable-background:new 0 0 18 18;" xml:space="preserve">
<style type="text/css">
.st0{fill:#303030;}
.st1{fill:#FFFFFF;}
</style>
<path id="path4506" inkscape:connector-curvature="0" class="st0" d="M9,5C6.5,5,4.5,7,4.5,9.5C4.5,12,6.5,14,9,14
c2.5,0,4.5-2,4.5-4.5S11.5,5,9,5z M9,6.3c1.8,0,3.2,1.4,3.2,3.2s-1.4,3.2-3.2,3.2c-1.8,0-3.2-1.4-3.2-3.2C5.8,7.7,7.2,6.3,9,6.3z"/>
<ellipse id="circle4508" class="st1" cx="9" cy="9.5" rx="3.5" ry="3.5"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -1,26 +1,14 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
width="100%"
height="100%"
viewBox="0 0 18 18"
version="1.1"
xml:space="preserve"
style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41420996"
id="svg6"><metadata
id="metadata12"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs10" /><path
id="path4506"
d="M 9.5 6 A 3.5 3.5 0 0 0 6 9.5 A 3.5 3.5 0 0 0 9.5 13 A 3.5 3.5 0 0 0 13 9.5 A 3.5 3.5 0 0 0 9.5 6 z M 9.5 7 A 2.5 2.5 0 0 1 12 9.5 A 2.5 2.5 0 0 1 9.5 12 A 2.5 2.5 0 0 1 7 9.5 A 2.5 2.5 0 0 1 9.5 7 z "
style="fill:#303030;fill-opacity:0.44705882;stroke:none;stroke-width:1.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" /><circle
style="fill:#8f8f8f;fill-opacity:0.44705883;stroke:none;stroke-width:1.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
id="circle4508"
cx="9.5"
cy="9.5"
r="2.5" /></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg6" inkscape:version="0.91 r13725" sodipodi:docname="timeline_table_view_off.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 18 18"
style="enable-background:new 0 0 18 18;" xml:space="preserve">
<style type="text/css">
.st0{fill:#303030;fill-opacity:0.4471;}
.st1{fill:#8F8F8F;fill-opacity:0.4471;}
</style>
<path id="path4506" inkscape:connector-curvature="0" class="st0" d="M9,6C7.1,6,5.5,7.6,5.5,9.5S7.1,13,9,13s3.5-1.6,3.5-3.5
S10.9,6,9,6z M9,7c1.4,0,2.5,1.1,2.5,2.5S10.4,12,9,12s-2.5-1.1-2.5-2.5S7.6,7,9,7z"/>
<circle id="circle4508" class="st1" cx="9" cy="9.5" r="2.5"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -1,27 +1,14 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
width="100%"
height="100%"
viewBox="0 0 18 18"
version="1.1"
xml:space="preserve"
style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41420996"
id="svg6"><metadata
id="metadata12"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs10" /><path
id="path4506"
d="M 9.4999995,5.0000004 A 4.4999998,4.4999998 0 0 0 4.9999998,9.5000002 4.4999998,4.4999998 0 0 0 9.4999995,13.999999 4.4999998,4.4999998 0 0 0 13.999997,9.5000002 4.4999998,4.4999998 0 0 0 9.4999995,5.0000004 Z m 0,1.2857141 A 3.2142855,3.2142855 0 0 1 12.714283,9.5000002 3.2142855,3.2142855 0 0 1 9.4999995,12.714285 3.2142855,3.2142855 0 0 1 6.2857139,9.5000002 3.2142855,3.2142855 0 0 1 9.4999995,6.2857145 Z"
style="fill:#303030;fill-opacity:1;stroke:none;stroke-width:1.99999964;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" /><ellipse
ry="3.5"
rx="3.5000002"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.99999964;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
id="circle4508"
cx="9.5"
cy="9.5" /></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg6" inkscape:version="0.91 r13725" sodipodi:docname="timeline_table_view_on.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 18 18"
style="enable-background:new 0 0 18 18;" xml:space="preserve">
<style type="text/css">
.st0{fill:#303030;}
.st1{fill:#FFFFFF;}
</style>
<path id="path4506" inkscape:connector-curvature="0" class="st0" d="M9,5C6.5,5,4.5,7,4.5,9.5C4.5,12,6.5,14,9,14
c2.5,0,4.5-2,4.5-4.5S11.5,5,9,5z M9,6.3c1.8,0,3.2,1.4,3.2,3.2s-1.4,3.2-3.2,3.2c-1.8,0-3.2-1.4-3.2-3.2C5.8,7.7,7.2,6.3,9,6.3z"/>
<ellipse id="circle4508" class="st1" cx="9" cy="9.5" rx="3.5" ry="3.5"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -1,24 +1,14 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
width="100%"
height="100%"
viewBox="0 0 18 18"
version="1.1"
xml:space="preserve"
style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41420996"
id="svg6"><metadata
id="metadata12"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs10" /><path
id="path822"
d="M 9.5 5 A 4.4999998 4.4999998 0 0 0 5 9.5 A 4.4999998 4.4999998 0 0 0 9.5 14 A 4.4999998 4.4999998 0 0 0 14 9.5 A 4.4999998 4.4999998 0 0 0 9.5 5 z "
style="fill:#303030;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" /><path
style="clip-rule:evenodd;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.99999964;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
d="M 9 6.0410156 A 3.5000002 3.5 0 0 0 6 9.5 A 3.5000002 3.5 0 0 0 9 12.960938 L 9 6.0410156 z "
id="circle4508" /></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg6" inkscape:version="0.91 r13725" sodipodi:docname="timeline_table_view_transp.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 18 18"
style="enable-background:new 0 0 18 18;" xml:space="preserve">
<style type="text/css">
.st0{fill:#303030;}
.st1{fill:#FFFFFF;}
</style>
<path id="path822" inkscape:connector-curvature="0" class="st0" d="M9,5C6.5,5,4.5,7,4.5,9.5S6.5,14,9,14s4.5-2,4.5-4.5S11.5,5,9,5
z"/>
<path id="circle4508" inkscape:connector-curvature="0" class="st1" d="M8.5,6c-1.7,0.2-3,1.7-3,3.5c0,1.7,1.3,3.2,3,3.5V6z"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -1 +1,10 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 14 17" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"><path d="M7,14.012l0,2.988l-1,0l0,-3l-4,0l0,-9l4,0l0,-5l1,0l0,5l4,0l0,4l3,0l0,1l-3,0l0,4c-1.333,0 -2.667,0.036 -4,0.012Zm3,-5.511l0,-2.501l-7,0l0,7l7,0c0,-1.5 0,-4.499 0,-4.499Z"/><path d="M7,9l2,0l0,1l-2,0l0,2l-1,0l0,-2l-2,0l0,-1l2,0l0,-2l1,0l0,2Z"/></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg2" inkscape:version="0.91 r13725" sodipodi:docname="tree17_branch-closed.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 14 17"
style="enable-background:new 0 0 14 17;" xml:space="preserve">
<path id="path4" inkscape:connector-curvature="0" d="M7,14v3H6v-3H2V5h4V0h1v5h4v4h3v1h-3v4C9.7,14,8.3,14,7,14z M10,8.5V6H3v7h7
C10,11.5,10,8.5,10,8.5z"/>
<path id="path6" inkscape:connector-curvature="0" d="M7,9h2v1H7v2H6v-2H4V9h2V7h1V9z"/>
</svg>

Before

Width:  |  Height:  |  Size: 667 B

After

Width:  |  Height:  |  Size: 980 B

View file

@ -1 +1,9 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 14 17" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"><path d="M7,5l4,0l0,4l3,0l0,1l-3,0l0,4l-9,0l0,-9l4,0l0,-5l1,0l0,5Zm-4,1l0,7l7,0l0,-7c-2.333,0 -4.667,0 -7,0Z"/><path d="M7,9l2,0l0,1l-2,0l0,2l-1,0l0,-2l-2,0l0,-1l2,0l0,-2l1,0c0,0.667 0,1.333 0,2Z" style="fill-rule:nonzero;"/></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg2" inkscape:version="0.91 r13725" sodipodi:docname="tree17_branch-closed_nosib.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 14 17"
style="enable-background:new 0 0 14 17;" xml:space="preserve">
<path id="path4" inkscape:connector-curvature="0" d="M7,5h4v4h3v1h-3v4H2V5h4V0h1V5z M3,6v7h7V6C7.7,6,5.3,6,3,6z"/>
<path id="path6" inkscape:connector-curvature="0" d="M7,9h2v1H7v2H6v-2H4V9h2V7h1C7,7.7,7,8.3,7,9z"/>
</svg>

Before

Width:  |  Height:  |  Size: 641 B

After

Width:  |  Height:  |  Size: 960 B

View file

@ -1 +1,13 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 14 17" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-miterlimit:2;"><path d="M6.5,0l0,9.5l7.5,0" style="fill:none;stroke:#000;stroke-width:1px;"/></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg2" inkscape:version="0.91 r13725" sodipodi:docname="tree17_branch-end.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 14 17"
style="enable-background:new 0 0 14 17;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;stroke:#000000;stroke-linecap:round;stroke-miterlimit:2;}
</style>
<sodipodi:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="namedview6" inkscape:current-layer="svg2" inkscape:cx="7" inkscape:cy="8.5" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-height="480" inkscape:window-maximized="0" inkscape:window-width="796" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="13.882353" objecttolerance="10" pagecolor="#ffffff" showgrid="false">
</sodipodi:namedview>
<path id="path4" inkscape:connector-curvature="0" class="st0" d="M6.5,0v9.5H14"/>
</svg>

Before

Width:  |  Height:  |  Size: 487 B

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -1 +1,12 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 14 17" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;"><path d="M6.5,9.5l7.5,0" style="fill:none;stroke:#000;stroke-width:1px;"/><path d="M6.5,0l0,17" style="fill:none;stroke:#000;stroke-width:1px;"/></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg2" inkscape:version="0.91 r13725" sodipodi:docname="tree17_branch-more.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 14 17"
style="enable-background:new 0 0 14 17;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;stroke:#000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;}
</style>
<path id="path4" inkscape:connector-curvature="0" class="st0" d="M6.5,9.5H14"/>
<path id="path6" inkscape:connector-curvature="0" class="st0" d="M6.5,0v17"/>
</svg>

Before

Width:  |  Height:  |  Size: 578 B

After

Width:  |  Height:  |  Size: 1 KiB

View file

@ -1 +1,10 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 14 17" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"><path d="M7,14.012l0,2.988l-1,0l0,-3l-4,0l0,-9l4,0l0,-5l1,0l0,5l4,0l0,4l3,0l0,1l-3,0l0,4c-1.333,0 -2.667,0.036 -4,0.012Zm3,-5.511l0,-2.501l-7,0l0,7l7,0c0,-1.5 0,-4.499 0,-4.499Z"/><rect x="4" y="9" width="5" height="1"/></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg2" inkscape:version="0.91 r13725" sodipodi:docname="tree17_branch-open.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 14 17"
style="enable-background:new 0 0 14 17;" xml:space="preserve">
<path id="path4" inkscape:connector-curvature="0" d="M7,14v3H6v-3H2V5h4V0h1v5h4v4h3v1h-3v4C9.7,14,8.3,14,7,14z M10,8.5V6H3v7h7
C10,11.5,10,8.5,10,8.5z"/>
<rect id="rect6" x="4" y="9" width="5" height="1"/>
</svg>

Before

Width:  |  Height:  |  Size: 636 B

After

Width:  |  Height:  |  Size: 943 B

View file

@ -1 +1,9 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 14 17" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"><path d="M7,5l4,0l0,4l3,0l0,1l-3,0l0,4l-9,0l0,-9l4,0l0,-5l1,0l0,5Zm-4,1l0,7l7,0l0,-7c-2.333,0 -4.667,0 -7,0Z"/><rect x="4" y="9" width="5" height="1"/></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg2" inkscape:version="0.91 r13725" sodipodi:docname="tree17_branch-open_nosib.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 14 17"
style="enable-background:new 0 0 14 17;" xml:space="preserve">
<path id="path4" inkscape:connector-curvature="0" d="M7,5h4v4h3v1h-3v4H2V5h4V0h1V5z M3,6v7h7V6C7.7,6,5.3,6,3,6z"/>
<rect id="rect6" x="4" y="9" width="5" height="1"/>
</svg>

Before

Width:  |  Height:  |  Size: 567 B

After

Width:  |  Height:  |  Size: 909 B

View file

@ -1 +1,13 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 14 17" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;"><path d="M6.5,0l0,17" style="fill:none;stroke:#000;stroke-width:1px;"/></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg2" inkscape:version="0.91 r13725" sodipodi:docname="tree17_vline.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 14 17"
style="enable-background:new 0 0 14 17;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;stroke:#000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;}
</style>
<sodipodi:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="namedview6" inkscape:current-layer="svg2" inkscape:cx="7" inkscape:cy="8.5" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-height="480" inkscape:window-maximized="0" inkscape:window-width="796" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="13.882353" objecttolerance="10" pagecolor="#ffffff" showgrid="false">
</sodipodi:namedview>
<path id="path4" inkscape:connector-curvature="0" class="st0" d="M6.5,0v17"/>
</svg>

Before

Width:  |  Height:  |  Size: 504 B

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -1 +1,10 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 14 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"><path d="M7,16.012l0,5.988l-1,0l0,-6l-4,0l0,-9l4,0l0,-7l1,0l0,7l4,0l0,4l3,0l0,1l-3,0l0,4c-1.333,0 -2.667,0.036 -4,0.012Zm3,-5.511l0,-2.501l-7,0l0,7l7,0c0,-1.5 0,-4.499 0,-4.499Z"/><path d="M7,11l2,0l0,1l-2,0l0,2l-1,0l0,-2l-2,0l0,-1l2,0l0,-2l1,0l0,2Z"/></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg2" inkscape:version="0.91 r13725" sodipodi:docname="tree22_branch-closed.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 14 22"
style="enable-background:new 0 0 14 22;" xml:space="preserve">
<path id="path4" inkscape:connector-curvature="0" d="M7,16v6H6v-6H2V7h4V0h1v7h4v4h3v1h-3v4C9.7,16,8.3,16,7,16z M10,10.5V8H3v7h7
C10,13.5,10,10.5,10,10.5z"/>
<path id="path6" inkscape:connector-curvature="0" d="M7,11h2v1H7v2H6v-2H4v-1h2V9h1V11z"/>
</svg>

Before

Width:  |  Height:  |  Size: 668 B

After

Width:  |  Height:  |  Size: 986 B

View file

@ -1 +1,10 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 14 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"><path d="M11,16c-1.333,0 -9,0 -9,0l0,-9l4,0l0,-7l1,0l0,7l4,0l0,4l3,0l0,1l-3,0l0,4Zm-1,-5.499l0,-2.501l-7,0l0,7l7,0c0,-1.5 0,-4.499 0,-4.499Z"/><path d="M7,11l2,0l0,1l-2,0l0,2l-1,0l0,-2l-2,0l0,-1l2,0l0,-2l1,0l0,2Z"/></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg2" inkscape:version="0.91 r13725" sodipodi:docname="tree22_branch-closed_nosib.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 14 22"
style="enable-background:new 0 0 14 22;" xml:space="preserve">
<path id="path4" inkscape:connector-curvature="0" d="M11,16c-1.3,0-9,0-9,0V7h4V0h1v7h4v4h3v1h-3V16z M10,10.5V8H3v7h7
C10,13.5,10,10.5,10,10.5z"/>
<path id="path6" inkscape:connector-curvature="0" d="M7,11h2v1H7v2H6v-2H4v-1h2V9h1V11z"/>
</svg>

Before

Width:  |  Height:  |  Size: 631 B

After

Width:  |  Height:  |  Size: 981 B

View file

@ -1 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 14 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-miterlimit:2;"><path d="M6.5,0l0,11.5l7.5,0" style="fill:none;stroke:#000;stroke-width:1px;"/></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg2" inkscape:version="0.91 r13725" sodipodi:docname="tree22_branch-end.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 14 22"
style="enable-background:new 0 0 14 22;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;stroke:#000000;stroke-linecap:round;stroke-miterlimit:2;}
</style>
<path id="path4" inkscape:connector-curvature="0" class="st0" d="M6.5,0v11.5H14"/>
</svg>

Before

Width:  |  Height:  |  Size: 488 B

After

Width:  |  Height:  |  Size: 925 B

View file

@ -1 +1,12 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 14 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;"><path d="M6.5,11.5l7.5,0" style="fill:none;stroke:#000;stroke-width:1px;"/><path d="M6.5,-0.5l0,23" style="fill:none;stroke:#000;stroke-width:1px;"/></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg2" inkscape:version="0.91 r13725" sodipodi:docname="tree22_branch-more.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 14 22"
style="enable-background:new 0 0 14 22;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;stroke:#000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;}
</style>
<path id="path4" inkscape:connector-curvature="0" class="st0" d="M6.5,11.5H14"/>
<path id="path6" inkscape:connector-curvature="0" class="st0" d="M6.5-0.5v23"/>
</svg>

Before

Width:  |  Height:  |  Size: 582 B

After

Width:  |  Height:  |  Size: 1 KiB

View file

@ -1 +1,10 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 14 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"><path d="M7,16.012l0,5.988l-1,0l0,-6l-4,0l0,-9l4,0l0,-7l1,0l0,7l4,0l0,4l3,0l0,1l-3,0l0,4c-1.333,0 -2.667,0.036 -4,0.012Zm3,-5.511l0,-2.501l-7,0l0,7l7,0c0,-1.5 0,-4.499 0,-4.499Z"/><rect x="4" y="11" width="5" height="1"/></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg2" inkscape:version="0.91 r13725" sodipodi:docname="tree22_branch-open.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 14 22"
style="enable-background:new 0 0 14 22;" xml:space="preserve">
<path id="path4" inkscape:connector-curvature="0" d="M7,16v6H6v-6H2V7h4V0h1v7h4v4h3v1h-3v4C9.7,16,8.3,16,7,16z M10,10.5V8H3v7h7
C10,13.5,10,10.5,10,10.5z"/>
<rect id="rect6" x="4" y="11" width="5" height="1"/>
</svg>

Before

Width:  |  Height:  |  Size: 637 B

After

Width:  |  Height:  |  Size: 947 B

View file

@ -1 +1,12 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 14 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"><path d="M11,16c-1.333,0 -9,0 -9,0l0,-9l4,0l0,-7l1,0l0,7l4,0l0,4l3,0l0,1l-3,0l0,4Zm-1,-5.499l0,-2.501l-7,0l0,7l7,0c0,-1.5 0,-4.499 0,-4.499Z"/><rect x="4" y="11" width="5" height="1"/></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg2" inkscape:version="0.91 r13725" sodipodi:docname="tree22_branch-open_nosib.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 14 22"
style="enable-background:new 0 0 14 22;" xml:space="preserve">
<sodipodi:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="namedview8" inkscape:current-layer="svg2" inkscape:cx="7" inkscape:cy="11" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-height="480" inkscape:window-maximized="0" inkscape:window-width="796" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="10.727273" objecttolerance="10" pagecolor="#ffffff" showgrid="false">
</sodipodi:namedview>
<path id="path4" inkscape:connector-curvature="0" d="M11,16c-1.3,0-9,0-9,0V7h4V0h1v7h4v4h3v1h-3V16z M10,10.5V8H3v7h7
C10,13.5,10,10.5,10,10.5z"/>
<rect id="rect6" x="4" y="11" width="5" height="1"/>
</svg>

Before

Width:  |  Height:  |  Size: 600 B

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -1 +1,13 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 14 22" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;"><path d="M6.5,-0.5l0,23" style="fill:none;stroke:#000;stroke-width:1px;"/></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg2" inkscape:version="0.91 r13725" sodipodi:docname="tree22_vline.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 14 22"
style="enable-background:new 0 0 14 22;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;stroke:#000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;}
</style>
<sodipodi:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="namedview6" inkscape:current-layer="svg2" inkscape:cx="7" inkscape:cy="11" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-height="480" inkscape:window-maximized="0" inkscape:window-width="796" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="10.727273" objecttolerance="10" pagecolor="#ffffff" showgrid="false">
</sodipodi:namedview>
<path id="path4" inkscape:connector-curvature="0" class="st0" d="M6.5-0.5v23"/>
</svg>

Before

Width:  |  Height:  |  Size: 507 B

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -1,30 +1,17 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg6"
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"
xml:space="preserve"
version="1.1"
viewBox="0 0 17 17"
height="100%"
width="100%"><metadata
id="metadata12"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs10" /><path
d="M8.5,11l3.5,-4l-7,0l3.5,4Z"
style="fill:#e6e6e6;fill-opacity:1;stroke:#303030;stroke-opacity:1;stroke-width:2;stroke-miterlimit:1.41420996;stroke-dasharray:none"
id="path822" /><rect
id="rect2"
style="fill:none;"
height="17"
width="17"
y="0"
x="0" /><path
id="path4"
style="fill:#e6e6e6;fill-opacity:1"
d="M8.5,11l3.5,-4l-7,0l3.5,4Z" /></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg6" inkscape:version="0.91 r13725" sodipodi:docname="x_config.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 17 17"
style="enable-background:new 0 0 17 17;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E6E6E6;stroke:#303030;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:1.4142;}
.st1{fill:none;}
.st2{fill:#E6E6E6;}
</style>
<sodipodi:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="namedview8" inkscape:current-layer="svg6" inkscape:cx="8.5" inkscape:cy="8.5" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-height="480" inkscape:window-maximized="0" inkscape:window-width="796" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="13.882353" objecttolerance="10" pagecolor="#ffffff" showgrid="false">
</sodipodi:namedview>
<path id="path822" inkscape:connector-curvature="0" class="st0" d="M8.5,11L12,7H5L8.5,11z"/>
<rect id="rect2" y="0" class="st1" width="17" height="17"/>
<path id="path4" inkscape:connector-curvature="0" class="st2" d="M8.5,11L12,7H5L8.5,11z"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -1,53 +1,16 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg6"
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"
xml:space="preserve"
version="1.1"
viewBox="0 0 17 17"
height="100%"
width="100%"
sodipodi:docname="x_lock_off.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="640"
inkscape:window-height="480"
id="namedview9"
showgrid="false"
inkscape:zoom="13.882353"
inkscape:cx="8.5"
inkscape:cy="8.5"
inkscape:current-layer="svg6" /><metadata
id="metadata12"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
id="defs10" /><rect
id="rect2"
style="clip-rule:evenodd;fill:none;fill-rule:evenodd;stroke-width:0.05555556;stroke-linejoin:round;stroke-miterlimit:1.41420996"
height="1.0000001"
width="1.0000001"
y="16.000004"
x="-1.0000007" /><g
style="clip-rule:evenodd;fill:#000000;fill-opacity:0.31300813;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41420996"
id="g4491"
transform="matrix(0.05555556,0,0,0.05555556,-1.0000008,-1.000001)"><path
style="fill:#000000;fill-opacity:0.31300813;stroke:none;stroke-width:36;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-opacity:0.27638191;paint-order:markers stroke fill"
d="m 171,54 c -34.78021,-5e-6 -62.98059,28.18463 -63,62.96484 V 126 h 18 v -9.03516 C 126.01941,92.12576 146.16091,71.999992 171,72 c 24.83909,-8e-6 44.98059,20.12576 45,44.96484 V 126 h 18 v -9.03516 C 233.98059,82.18463 205.78021,53.999995 171,54 Z"
id="path4509" /></g><path
id="rect845"
d="m 4,7 v 7 h 9 V 7 Z M 8.5,8 A 1.5,1.5 0 0 1 10,9.5 1.5,1.5 0 0 1 9.25,10.796875 V 13 H 7.75 V 10.796875 A 1.5,1.5 0 0 1 7,9.5 1.5,1.5 0 0 1 8.5,8 Z"
style="fill:#000000;fill-opacity:0.31300813;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" /></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg6" inkscape:version="0.91 r13725" sodipodi:docname="x_lock_off.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 17 17"
style="enable-background:new 0 0 17 17;" xml:space="preserve">
<style type="text/css">
.st0{fill-opacity:0.313;}
</style>
<g id="g4491" transform="matrix(0.05555556,0,0,0.05555556,-1.0000008,-1.000001)">
<path id="path4509" inkscape:connector-curvature="0" class="st0" d="M171,54c-34.8,0-63,28.2-63,63v9h18v-9c0-24.8,20.2-45,45-45
c24.8,0,45,20.1,45,45v9h18v-9C234,82.2,205.8,54,171,54z"/>
</g>
<path id="rect845" inkscape:connector-curvature="0" class="st0" d="M4,7v7h9V7H4z M8.5,8C9.3,8,10,8.7,10,9.5c0,0.5-0.3,1-0.8,1.3
V13H7.8v-2.2C7.3,10.5,7,10,7,9.5C7,8.7,7.7,8,8.5,8z"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -1,41 +1,21 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg6"
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"
xml:space="preserve"
version="1.1"
viewBox="0 0 17 17"
height="100%"
width="100%"><metadata
id="metadata12"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs10" /><path
id="path4493"
d="m 8.4999999,1.9999995 c -1.9322343,-3e-7 -3.4989227,1.56386 -3.5000005,3.4960939 v 0.503906 H 5.9999995 V 5.4960934 C 6.0010795,4.1161444 7.1200507,2.9999991 8.4999999,2.9999996 9.8799489,2.9999991 10.998922,4.1161444 11,5.4960934 v 0.503906 h 1 V 5.4960934 C 11.9989,3.5638595 10.432234,1.9999992 8.4999999,1.9999995 Z M 3.9999993,7.0000004 V 14.000001 H 13 V 7.0000004 Z"
style="clip-rule:evenodd;fill:#fbfbfb;fill-opacity:1;fill-rule:evenodd;stroke:#303030;stroke-width:2.00000024;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" /><g
style="clip-rule:evenodd;fill:#e6e6e6;fill-opacity:1;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41420996"
id="g4491"
transform="matrix(0.05555556,0,0,0.05555556,-1.0000011,-1.0000006)"><path
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:36;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-opacity:0.27638191;paint-order:markers stroke fill"
d="M 90,144 V 270 H 252 V 144 Z"
id="rect4488" /><path
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:36;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-opacity:0.27638191;paint-order:markers stroke fill"
d="m 171,54 c -34.78021,-5e-6 -62.98059,28.18463 -63,62.96484 V 126 h 18 v -9.03516 C 126.01941,92.12576 146.16091,71.999992 171,72 c 24.83909,-8e-6 44.98059,20.12576 45,44.96484 V 126 h 18 v -9.03516 C 233.98059,82.18463 205.78021,53.999995 171,54 Z"
id="path4509" /></g><circle
style="fill:#303030;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
id="path820"
cx="8.5"
cy="9.500001"
r="1.5" /><rect
style="fill:#303030;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
id="rect822"
width="1.5"
height="3"
x="7.7499986"
y="10" /></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg6" inkscape:version="0.91 r13725" sodipodi:docname="x_lock_on.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 17 17"
style="enable-background:new 0 0 17 17;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FBFBFB;stroke:#303030;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:1.4142;}
.st1{fill:#E6E6E6;}
.st2{fill:#303030;}
</style>
<path id="path4493" inkscape:connector-curvature="0" class="st0" d="M8.5,2C6.6,2,5,3.6,5,5.5V6h1V5.5C6,4.1,7.1,3,8.5,3
C9.9,3,11,4.1,11,5.5V6h1V5.5C12,3.6,10.4,2,8.5,2z M4,7v7h9V7H4z"/>
<g id="g4491" transform="matrix(0.05555556,0,0,0.05555556,-1.0000011,-1.0000006)">
<path id="rect4488" inkscape:connector-curvature="0" class="st1" d="M90,144v126h162V144H90z"/>
<path id="path4509" inkscape:connector-curvature="0" class="st1" d="M171,54c-34.8,0-63,28.2-63,63v9h18v-9c0-24.8,20.2-45,45-45
c24.8,0,45,20.1,45,45v9h18v-9C234,82.2,205.8,54,171,54z"/>
</g>
<circle id="path820" class="st2" cx="8.5" cy="9.5" r="1.5"/>
<rect id="rect822" x="7.7" y="10" class="st2" width="1.5" height="3"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -1,41 +1,12 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg6"
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"
xml:space="preserve"
version="1.1"
viewBox="0 0 18 17"
height="100%"
width="100%"
sodipodi:docname="x_prev_eye_off.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="640"
inkscape:window-height="480"
id="namedview6"
showgrid="false"
inkscape:zoom="13.882353"
inkscape:cx="9"
inkscape:cy="8.5"
inkscape:current-layer="svg6" /><metadata
id="metadata12"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
id="defs10" /><path
id="path1617"
d="m 2.4995699,8 c 0,0 2.4354946,3 6.5004301,3 4.064935,0 6.50043,-3 6.50043,-3 0,0 -2.425961,2 -6.50043,2 C 4.9255305,10 2.4995699,8 2.4995699,8 Z"
style="clip-rule:evenodd;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-opacity:0.31300813;paint-order:stroke fill markers" /></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg6" inkscape:version="0.91 r13725" sodipodi:docname="x_prev_eye_off.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 18 17"
style="enable-background:new 0 0 18 17;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;stroke:#000000;stroke-linejoin:round;stroke-miterlimit:1.4142;stroke-opacity:0.313;}
</style>
<path id="path1617" inkscape:connector-curvature="0" class="st0" d="M2.5,8c0,0,2.4,3,6.5,3s6.5-3,6.5-3s-2.4,2-6.5,2S2.5,8,2.5,8z
"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1,000 B

View file

@ -1,35 +1,18 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
width="100%"
height="100%"
viewBox="0 0 18 17"
version="1.1"
xml:space="preserve"
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"
id="svg6"><metadata
id="metadata12"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs10" /><path
style="clip-rule:evenodd;fill:#e6e6e6;fill-opacity:1;fill-rule:evenodd;stroke:#303030;stroke-width:1.99999988;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
d="M 2,8.49 C 2,8.49 4.6226666,4 8.9999999,4 13.377334,4 16,8.49 16,8.49 16,8.49 13.3876,13 8.9999999,13 4.6123999,13 2,8.49 2,8.49 Z"
id="path821" /><path
id="path832"
d="M 2,8.49 C 2,8.49 4.6226666,4 8.9999999,4 13.377334,4 16,8.49 16,8.49 16,8.49 13.3876,13 8.9999999,13 4.6123999,13 2,8.49 2,8.49 Z"
style="clip-rule:evenodd;fill:#e6e6e6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.99999988;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-opacity:0.76470588;paint-order:stroke fill markers" /><ellipse
id="path21"
cx="9"
cy="8.5"
rx="3.5"
ry="3.6207628"
style="clip-rule:evenodd;fill:#303030;fill-opacity:1;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41420996" /><circle
style="clip-rule:evenodd;fill:#e6e6e6;fill-opacity:1;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41420996"
id="path1450"
cx="8"
cy="7.5"
r="1.5" /></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg6" inkscape:version="0.91 r13725" sodipodi:docname="x_prev_eye_on.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 18 17"
style="enable-background:new 0 0 18 17;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E6E6E6;stroke:#303030;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:1.4142;}
.st1{fill:#E6E6E6;}
.st2{fill:#303030;}
</style>
<path id="path821" inkscape:connector-curvature="0" class="st0" d="M2,8.5C2,8.5,4.6,4,9,4s7,4.5,7,4.5S13.4,13,9,13S2,8.5,2,8.5z"
/>
<path id="path832" inkscape:connector-curvature="0" class="st1" d="M2,8.5C2,8.5,4.6,4,9,4s7,4.5,7,4.5S13.4,13,9,13S2,8.5,2,8.5z"
/>
<ellipse id="path21" class="st2" cx="9" cy="8.5" rx="3.5" ry="3.6"/>
<circle id="path1450" class="st1" cx="8" cy="7.5" r="1.5"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -1,41 +1,12 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg6"
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"
xml:space="preserve"
version="1.1"
viewBox="0 0 18 17"
height="100%"
width="100%"
sodipodi:docname="x_table_view_off.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="640"
inkscape:window-height="480"
id="namedview6"
showgrid="false"
inkscape:zoom="13.882353"
inkscape:cx="9"
inkscape:cy="8.5"
inkscape:current-layer="svg6" /><metadata
id="metadata12"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
id="defs10" /><path
id="ellipse9"
d="M 9 2 A 6.5000262 6.5000339 0 0 0 2.5 8.5 A 6.5000262 6.5000339 0 0 0 9 15 A 6.5000262 6.5000339 0 0 0 15.5 8.5 A 6.5000262 6.5000339 0 0 0 9 2 z M 5 5 L 13 5 L 13 12 L 5 12 L 5 5 z "
style="clip-rule:evenodd;fill:#000000;fill-opacity:0.31300813;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.76470588;paint-order:stroke fill markers" /></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg6" inkscape:version="0.91 r13725" sodipodi:docname="x_table_view_off.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 18 17"
style="enable-background:new 0 0 18 17;" xml:space="preserve">
<style type="text/css">
.st0{fill-opacity:0.313;}
</style>
<path id="ellipse9" inkscape:connector-curvature="0" class="st0" d="M9,2C5.4,2,2.5,4.9,2.5,8.5C2.5,12.1,5.4,15,9,15
c3.6,0,6.5-2.9,6.5-6.5C15.5,4.9,12.6,2,9,2z M5,5h8v7H5V5z"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 972 B

View file

@ -1,36 +1,15 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg6"
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"
xml:space="preserve"
version="1.1"
viewBox="0 0 18 17"
height="100%"
width="100%"><metadata
id="metadata12"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs10" /><ellipse
style="clip-rule:evenodd;fill:#e6e6e6;fill-opacity:1;fill-rule:evenodd;stroke:#303030;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke fill markers"
id="path1869"
cx="9"
cy="8.5000343"
rx="6.5000262"
ry="6.5000339" /><ellipse
ry="6.5000339"
rx="6.5000262"
cy="8.5000343"
cx="9"
id="ellipse9"
style="clip-rule:evenodd;fill:#e6e6e6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.76470588;paint-order:stroke fill markers" /><rect
style="clip-rule:evenodd;fill:#303030;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke fill markers"
id="rect1871"
width="8"
height="6.9999995"
x="5"
y="5" /></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg6" inkscape:version="0.91 r13725" sodipodi:docname="x_table_view_on.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 18 17"
style="enable-background:new 0 0 18 17;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E6E6E6;stroke:#303030;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:1.4142;}
.st1{fill:#E6E6E6;}
.st2{fill:#303030;}
</style>
<ellipse id="path1869" class="st0" cx="9" cy="8.5" rx="6.5" ry="6.5"/>
<ellipse id="ellipse9" class="st1" cx="9" cy="8.5" rx="6.5" ry="6.5"/>
<rect id="rect1871" x="5" y="5" class="st2" width="8" height="7"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -1,30 +1,17 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
width="100%"
height="100%"
viewBox="0 0 18 17"
version="1.1"
xml:space="preserve"
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"
id="svg6"><metadata
id="metadata12"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs10" /><ellipse
ry="6.5000339"
rx="6.5000262"
cy="8.5000343"
cx="9"
id="path1869"
style="clip-rule:evenodd;fill:#303030;fill-opacity:1;fill-rule:evenodd;stroke:#303030;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke fill markers" /><path
id="ellipse9"
d="M 9 2 A 6.5000262 6.5000339 0 0 0 2.5 8.5 A 6.5000262 6.5000339 0 0 0 9 15 L 9 12 L 5 12 L 5 5 L 9 5 L 9 2 z "
style="clip-rule:evenodd;fill:#e6e6e6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.76470588;paint-order:stroke fill markers" /><path
style="clip-rule:evenodd;fill:#656565;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.76470588;paint-order:stroke fill markers"
d="M 9,2 A 6.5000262,6.5000339 0 0 1 15.5,8.5 6.5000262,6.5000339 0 0 1 9,15 v -3 h 4 V 5 H 9 Z"
id="path826" /></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg6" inkscape:version="0.91 r13725" sodipodi:docname="x_table_view_transp.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 18 17"
style="enable-background:new 0 0 18 17;" xml:space="preserve">
<style type="text/css">
.st0{fill:#303030;stroke:#303030;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:1.4142;}
.st1{fill:#E6E6E6;}
.st2{fill:#656565;}
</style>
<ellipse id="path1869" class="st0" cx="9" cy="8.5" rx="6.5" ry="6.5"/>
<path id="ellipse9" inkscape:connector-curvature="0" class="st1" d="M9,2C5.4,2,2.5,4.9,2.5,8.5C2.5,12.1,5.4,15,9,15v-3H5V5h4V2z"
/>
<path id="path826" inkscape:connector-curvature="0" class="st2" d="M9,2c3.6,0,6.5,2.9,6.5,6.5c0,3.6-2.9,6.5-6.5,6.5v-3h4V5H9V2z"
/>
</svg>

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -1,67 +1,21 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg4489"
version="1.1"
viewBox="0 0 18 18"
height="100%"
width="100%">
<defs
id="defs4483" />
<metadata
id="metadata4486">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(0,-1106.5197)"
id="layer1" />
<rect
x="0"
y="17.000002"
width="1.0000001"
height="1.0000001"
style="clip-rule:evenodd;fill:none;fill-rule:evenodd;stroke-width:0.05555556;stroke-linejoin:round;stroke-miterlimit:1.41420996"
id="rect2" />
<path
style="clip-rule:evenodd;fill:#fbfbfb;fill-opacity:1;fill-rule:evenodd;stroke:#303030;stroke-width:2.00000024;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
d="m 9.5000008,3.0000001 c -1.9322341,-3e-7 -3.4989225,1.56386 -3.5000003,3.4960941 V 7.0000004 H 7.0000006 V 6.4960942 c 0.00108,-1.379949 1.1200512,-2.4960945 2.5000002,-2.496094 1.3799492,-5e-7 2.4989222,1.116145 2.5000002,2.496094 v 0.5039062 h 1 V 6.4960942 C 12.998923,4.5638601 11.432235,2.9999998 9.5000008,3.0000001 Z M 5.0000004,8.0000005 V 15.000001 H 14.000001 V 8.0000005 Z"
id="path4493" />
<g
transform="scale(0.05555556)"
id="g4491"
style="clip-rule:evenodd;fill:#e6e6e6;fill-opacity:1;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41420996">
<path
id="rect4488"
d="M 90,144 V 270 H 252 V 144 Z"
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:36;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-opacity:0.27638191;paint-order:markers stroke fill" />
<path
id="path4509"
d="m 171,54 c -34.78021,-5e-6 -62.98059,28.18463 -63,62.96484 V 126 h 18 v -9.03516 C 126.01941,92.12576 146.16091,71.999992 171,72 c 24.83909,-8e-6 44.98059,20.12576 45,44.96484 V 126 h 18 v -9.03516 C 233.98059,82.18463 205.78021,53.999995 171,54 Z"
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:36;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-opacity:0.27638191;paint-order:markers stroke fill" />
</g>
<circle
r="1.5"
cy="10.500001"
cx="9.500001"
id="path820"
style="fill:#303030;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" />
<rect
y="11"
x="8.75"
height="3"
width="1.5"
id="rect822"
style="fill:#303030;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" />
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg4489" inkscape:version="0.91 r13725" sodipodi:docname="cam_lock.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 18 18"
style="enable-background:new 0 0 18 18;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FBFBFB;stroke:#303030;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:1.4142;}
.st1{fill:#E6E6E6;}
.st2{fill:#303030;}
</style>
<path id="path4493" inkscape:connector-curvature="0" class="st0" d="M9,3C7.1,3,5.5,4.6,5.5,6.5V7h1V6.5C6.5,5.1,7.6,4,9,4
c1.4,0,2.5,1.1,2.5,2.5V7h1V6.5C12.5,4.6,10.9,3,9,3z M4.5,8v7h9V8L4.5,8z"/>
<g id="g4491" transform="scale(0.05555556,0.05555556)">
<path id="rect4488" inkscape:connector-curvature="0" class="st1" d="M81,144v126h162V144H81z"/>
<path id="path4509" inkscape:connector-curvature="0" class="st1" d="M162,54c-34.8,0-63,28.2-63,63v9h18v-9c0-24.8,20.2-45,45-45
c24.8,0,45,20.1,45,45v9h18v-9C225,82.2,196.8,54,162,54z"/>
</g>
<circle id="path820" class="st2" cx="9" cy="10.5" r="1.5"/>
<rect id="rect822" x="8.3" y="11" class="st2" width="1.5" height="3"/>
</svg>

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -1,62 +1,21 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg4489"
version="1.1"
viewBox="0 0 18 18"
height="100%"
width="100%">
<defs
id="defs4483" />
<metadata
id="metadata4486">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(0,-1106.5197)"
id="layer1" />
<rect
x="0"
y="17.000002"
width="1.0000001"
height="1.0000001"
style="clip-rule:evenodd;fill:none;fill-rule:evenodd;stroke-width:0.05555556;stroke-linejoin:round;stroke-miterlimit:1.41420996"
id="rect2" />
<path
style="clip-rule:evenodd;fill:#303030;fill-opacity:0.78431373;fill-rule:evenodd;stroke:#303030;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
d="M 12.5,2 C 10.567766,1.9999997 9.0010783,3.565813 9,5.4980469 V 7 h 1 V 5.4980469 C 10.001078,4.118098 11.120051,2.9999996 12.5,3 c 1.379949,-4e-7 2.498922,1.118098 2.5,2.4980469 V 7 h 1 V 5.4980469 C 15.998922,3.565813 14.432234,1.9999997 12.5,2 Z M 3,8 v 7 h 9 V 8 Z"
id="path4509" />
<path
id="path4491"
d="m 12.500001,2.0000002 c -1.932234,-3e-7 -3.4989219,1.5658129 -3.5000003,3.4980469 V 7.0000006 H 10.000001 V 5.4980471 c 0.0011,-1.379949 1.12005,-2.4980473 2.5,-2.4980469 1.37995,-4e-7 2.498922,1.1180979 2.5,2.4980469 v 1.5019535 h 1 V 5.4980471 c -0.0011,-1.932234 -1.567766,-3.4980472 -3.5,-3.4980469 z"
style="clip-rule:evenodd;fill:#e6e6e6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.00000024;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" />
<path
id="path4493"
d="M 3.0000002,8.0000006 V 15.000001 H 12.000001 V 8.0000006 Z"
style="clip-rule:evenodd;fill:#e6e6e6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.00000024;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" />
<circle
r="1.5"
cy="10.500001"
cx="7.5"
id="path820"
style="fill:#303030;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" />
<rect
y="11"
x="6.749999"
height="3"
width="1.5"
id="rect822"
style="fill:#303030;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal" />
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg4489" inkscape:version="0.91 r13725" sodipodi:docname="cam_unlock.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 18 18"
style="enable-background:new 0 0 18 18;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;}
.st1{fill:#303030;fill-opacity:0.7843;stroke:#303030;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:1.4142;}
.st2{fill:#E6E6E6;}
.st3{fill:#303030;}
</style>
<rect id="rect2" x="1" y="17" class="st0" width="1" height="1"/>
<path id="path4509" inkscape:connector-curvature="0" class="st1" d="M13.5,2C11.6,2,10,3.6,10,5.5V7h1V5.5C11,4.1,12.1,3,13.5,3
C14.9,3,16,4.1,16,5.5V7h1V5.5C17,3.6,15.4,2,13.5,2z M4,8v7h9V8H4z"/>
<path id="path4491" inkscape:connector-curvature="0" class="st2" d="M13.5,2C11.6,2,10,3.6,10,5.5V7h1V5.5C11,4.1,12.1,3,13.5,3
C14.9,3,16,4.1,16,5.5V7h1V5.5C17,3.6,15.4,2,13.5,2z"/>
<path id="path4493" inkscape:connector-curvature="0" class="st2" d="M4,8v7h9V8L4,8z"/>
<circle id="path820" class="st3" cx="8.5" cy="10.5" r="1.5"/>
<rect id="rect822" x="7.7" y="11" class="st3" width="1.5" height="3"/>
</svg>

Before

Width:  |  Height:  |  Size: 3 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -1,38 +1,14 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
width="100%"
height="100%"
viewBox="0 0 16 16"
version="1.1"
id="svg4489">
<defs
id="defs4483" />
<metadata
id="metadata4486">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1"
transform="translate(0,-1106.5197)" />
<path
d="M 2,9.9999999 6,14 13.999999,3.9999999"
style="clip-rule:evenodd;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;stroke-dasharray:none;stroke-opacity:0.51219512"
id="path4483" />
<path
id="path2"
style="clip-rule:evenodd;fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;stroke-dasharray:none;stroke-opacity:1"
d="M 2,8.9999999 6,13 13.999999,2.9999999" />
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg4489" inkscape:version="0.91 r13725" sodipodi:docname="checkmark.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 16 16"
style="enable-background:new 0 0 16 16;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;stroke-opacity:0.5122;}
.st1{fill:none;stroke:#FFFFFF;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;}
</style>
<path id="path4483" inkscape:connector-curvature="0" class="st0" d="M2,10l4,4l8-10"/>
<path id="path2" inkscape:connector-curvature="0" class="st1" d="M2,9l4,4l8-10"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -1,38 +1,18 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg4489"
version="1.1"
viewBox="0 0 16 16"
height="100%"
width="100%">
<defs
id="defs4483" />
<metadata
id="metadata4486">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(0,-1106.5197)"
id="layer1" />
<path
id="path4483"
style="clip-rule:evenodd;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;stroke-dasharray:none;stroke-opacity:0.51219512"
d="M 2,9.9999999 6,14 13.999999,3.9999999" />
<path
d="M 2,8.9999999 6,13 13.999999,2.9999999"
style="clip-rule:evenodd;fill:none;fill-rule:evenodd;stroke:#919191;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;stroke-dasharray:none;stroke-opacity:1"
id="path2" />
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg4489" inkscape:version="0.91 r13725" sodipodi:docname="checkmark_disabled.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 16 16"
style="enable-background:new 0 0 16 16;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;stroke-opacity:0.5122;}
.st1{fill:none;stroke:#919191;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;}
</style>
<sodipodi:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="namedview8" inkscape:current-layer="svg4489" inkscape:cx="8" inkscape:cy="8" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-height="480" inkscape:window-maximized="0" inkscape:window-width="796" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="14.75" objecttolerance="10" pagecolor="#ffffff" showgrid="false">
</sodipodi:namedview>
<g id="layer1" transform="translate(0,-1106.5197)">
</g>
<path id="path4483" inkscape:connector-curvature="0" class="st0" d="M2,10l4,4l8-10"/>
<path id="path2" inkscape:connector-curvature="0" class="st1" d="M2,9l4,4l8-10"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -1,34 +1,15 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg4489"
version="1.1"
viewBox="0 0 16 16"
height="100%"
width="100%">
<defs
id="defs4483" />
<metadata
id="metadata4486">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(0,-1106.5197)"
id="layer1" />
<path
id="path2"
style="clip-rule:evenodd;fill:#ffffff;fill-opacity:0.78431373;fill-rule:evenodd;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:1.41420996"
d="M 10.722125,7 H 5.277875 4.5 L 8,11 11.5,7 Z" />
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg4489" inkscape:version="0.91 r13725" sodipodi:docname="combo-down.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 16 16"
style="enable-background:new 0 0 16 16;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;fill-opacity:0.7843;}
</style>
<sodipodi:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="namedview7" inkscape:current-layer="svg4489" inkscape:cx="8" inkscape:cy="8" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-height="480" inkscape:window-maximized="0" inkscape:window-width="796" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="14.75" objecttolerance="10" pagecolor="#ffffff" showgrid="false">
</sodipodi:namedview>
<g id="layer1" transform="translate(0,-1106.5197)">
</g>
<path id="path2" inkscape:connector-curvature="0" class="st0" d="M10.7,7H5.3H4.5L8,11l3.5-4H10.7z"/>
</svg>

Before

Width:  |  Height:  |  Size: 1,011 B

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -1,34 +1,15 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg4489"
version="1.1"
viewBox="0 0 16 16"
height="100%"
width="100%">
<defs
id="defs4483" />
<metadata
id="metadata4486">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(0,-1106.5197)"
id="layer1" />
<path
id="path2"
style="clip-rule:evenodd;fill:#ffffff;fill-opacity:0.31372549;fill-rule:evenodd;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:1.41420996"
d="M 10.722125,7 H 5.277875 4.5 L 8,11 11.5,7 Z" />
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg4489" inkscape:version="0.91 r13725" sodipodi:docname="combo-down_disabled.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 16 16"
style="enable-background:new 0 0 16 16;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;fill-opacity:0.3137;}
</style>
<sodipodi:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="namedview7" inkscape:current-layer="svg4489" inkscape:cx="8" inkscape:cy="8" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-height="480" inkscape:window-maximized="0" inkscape:window-width="796" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="14.75" objecttolerance="10" pagecolor="#ffffff" showgrid="false">
</sodipodi:namedview>
<g id="layer1" transform="translate(0,-1106.5197)">
</g>
<path id="path2" inkscape:connector-curvature="0" class="st0" d="M10.7,7H5.3H4.5L8,11l3.5-4H10.7z"/>
</svg>

Before

Width:  |  Height:  |  Size: 1,011 B

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -1,34 +1,15 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg4489"
version="1.1"
viewBox="0 0 16 16"
height="100%"
width="100%">
<defs
id="defs4483" />
<metadata
id="metadata4486">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(0,-1106.5197)"
id="layer1" />
<path
id="path2"
style="clip-rule:evenodd;fill:#ffffff;fill-opacity:0.78431373;fill-rule:evenodd;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:1.41420996"
d="M 10.722125,7 H 5.277875 4.5 L 8,11 11.5,7 Z" />
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg4489" inkscape:version="0.91 r13725" sodipodi:docname="combo-down_pressed.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 16 16"
style="enable-background:new 0 0 16 16;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;fill-opacity:0.7843;}
</style>
<sodipodi:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="namedview7" inkscape:current-layer="svg4489" inkscape:cx="8" inkscape:cy="8" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-height="480" inkscape:window-maximized="0" inkscape:window-width="796" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="14.75" objecttolerance="10" pagecolor="#ffffff" showgrid="false">
</sodipodi:namedview>
<g id="layer1" transform="translate(0,-1106.5197)">
</g>
<path id="path2" inkscape:connector-curvature="0" class="st0" d="M10.7,7H5.3H4.5L8,11l3.5-4H10.7z"/>
</svg>

Before

Width:  |  Height:  |  Size: 1,011 B

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -1,45 +1,25 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
width="100%"
height="100%"
viewBox="0 0 22 17"
version="1.1"
id="svg4489">
<defs
id="defs4483" />
<metadata
id="metadata4486">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1"
transform="translate(0,-1106.5197)" />
<rect
x="2"
y="2"
width="18"
height="13"
style="clip-rule:evenodd;fill:#ffffff;fill-opacity:0.17647101;fill-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5"
id="rect2" />
<path
id="path4"
style="clip-rule:evenodd;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#161616;stroke-width:2px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;stroke-opacity:1"
d="M 19.5,1 C 20.328,1 21,1.672 21,2.5 v 12 C 21,15.328 20.328,16 19.5,16 H 2.5 C 1.672,16 1,15.328 1,14.5 V 2.5 C 1,1.672 1.672,1 2.5,1 Z M 18.65,2 H 3.35 C 2.605,2 2,2.583 2,3.3 V 13.7 C 2,14.417 2.605,15 3.35,15 h 15.3 C 19.395,15 20,14.417 20,13.7 V 3.3 C 20,2.583 19.395,2 18.65,2 Z" />
<path
id="path6"
style="clip-rule:evenodd;fill:#717171;fill-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5"
d="M 19.5,1 C 20.328,1 21,1.672 21,2.5 v 12 C 21,15.328 20.328,16 19.5,16 H 2.5 C 1.672,16 1,15.328 1,14.5 V 2.5 C 1,1.672 1.672,1 2.5,1 Z M 18.65,2 H 3.35 C 2.605,2 2,2.583 2,3.3 V 13.7 C 2,14.417 2.605,15 3.35,15 h 15.3 C 19.395,15 20,14.417 20,13.7 V 3.3 C 20,2.583 19.395,2 18.65,2 Z" />
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg4489" inkscape:version="0.91 r13725" sodipodi:docname="flipmarker.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 22 17"
style="enable-background:new 0 0 22 17;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;fill-opacity:0.1765;}
.st1{fill:none;stroke:#161616;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;}
.st2{fill:#717171;}
</style>
<sodipodi:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="namedview9" inkscape:current-layer="svg4489" inkscape:cx="11" inkscape:cy="8.5" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-height="480" inkscape:window-maximized="0" inkscape:window-width="796" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="13.882353" objecttolerance="10" pagecolor="#ffffff" showgrid="false">
</sodipodi:namedview>
<g id="layer1" transform="translate(0,-1106.5197)">
</g>
<g>
<rect id="rect2" x="2" y="2" class="st0" width="18" height="13"/>
<path id="path4" inkscape:connector-curvature="0" class="st1" d="M19.5,1C20.3,1,21,1.7,21,2.5v12c0,0.8-0.7,1.5-1.5,1.5h-17
C1.7,16,1,15.3,1,14.5v-12C1,1.7,1.7,1,2.5,1H19.5z M18.6,2H3.3C2.6,2,2,2.6,2,3.3v10.4C2,14.4,2.6,15,3.3,15h15.3
c0.7,0,1.4-0.6,1.4-1.3V3.3C20,2.6,19.4,2,18.6,2z"/>
<path id="path6" inkscape:connector-curvature="0" class="st2" d="M19.5,1C20.3,1,21,1.7,21,2.5v12c0,0.8-0.7,1.5-1.5,1.5h-17
C1.7,16,1,15.3,1,14.5v-12C1,1.7,1.7,1,2.5,1H19.5z M18.6,2H3.3C2.6,2,2,2.6,2,3.3v10.4C2,14.4,2.6,15,3.3,15h15.3
c0.7,0,1.4-0.6,1.4-1.3V3.3C20,2.6,19.4,2,18.6,2z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

View file

@ -1,49 +1,21 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
width="100%"
height="100%"
viewBox="0 0 22 17"
version="1.1"
id="svg4489">
<defs
id="defs4483" />
<metadata
id="metadata4486">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1"
transform="translate(0,-1106.5197)" />
<rect
id="rect2"
style="clip-rule:evenodd;fill:#ffffff;fill-opacity:0.17647101;fill-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5"
height="13"
width="18"
y="2"
x="2" />
<g
id="g8"
style="clip-rule:evenodd;fill-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5">
<path
id="path4"
style="fill:none;stroke:#1b1b1b;stroke-width:2px"
d="M 19.5,1 C 20.328,1 21,1.672 21,2.5 v 12 C 21,15.328 20.328,16 19.5,16 H 2.5 C 1.672,16 1,15.328 1,14.5 V 2.5 C 1,1.672 1.672,1 2.5,1 Z M 18.65,2 H 3.35 C 2.605,2 2,2.583 2,3.3 V 13.7 C 2,14.417 2.605,15 3.35,15 h 15.3 C 19.395,15 20,14.417 20,13.7 V 3.3 C 20,2.583 19.395,2 18.65,2 Z" />
<path
id="path6"
style="fill:#565656"
d="M 19.5,1 C 20.328,1 21,1.672 21,2.5 v 12 C 21,15.328 20.328,16 19.5,16 H 2.5 C 1.672,16 1,15.328 1,14.5 V 2.5 C 1,1.672 1.672,1 2.5,1 Z M 18.65,2 H 3.35 C 2.605,2 2,2.583 2,3.3 V 13.7 C 2,14.417 2.605,15 3.35,15 h 15.3 C 19.395,15 20,14.417 20,13.7 V 3.3 C 20,2.583 19.395,2 18.65,2 Z" />
</g>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg4489" inkscape:version="0.91 r13725" sodipodi:docname="flipmarker_dark.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 22 17"
style="enable-background:new 0 0 22 17;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;fill-opacity:0.1765;}
.st1{fill:none;stroke:#1B1B1B;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;}
.st2{fill:#565656;}
</style>
<rect id="rect2" x="2" y="2" class="st0" width="18" height="13"/>
<g id="g8">
<path id="path4" inkscape:connector-curvature="0" class="st1" d="M19.5,1C20.3,1,21,1.7,21,2.5v12c0,0.8-0.7,1.5-1.5,1.5h-17
C1.7,16,1,15.3,1,14.5v-12C1,1.7,1.7,1,2.5,1H19.5z M18.6,2H3.3C2.6,2,2,2.6,2,3.3v10.4C2,14.4,2.6,15,3.3,15h15.3
c0.7,0,1.4-0.6,1.4-1.3V3.3C20,2.6,19.4,2,18.6,2z"/>
<path id="path6" inkscape:connector-curvature="0" class="st2" d="M19.5,1C20.3,1,21,1.7,21,2.5v12c0,0.8-0.7,1.5-1.5,1.5h-17
C1.7,16,1,15.3,1,14.5v-12C1,1.7,1.7,1,2.5,1H19.5z M18.6,2H3.3C2.6,2,2,2.6,2,3.3v10.4C2,14.4,2.6,15,3.3,15h15.3
c0.7,0,1.4-0.6,1.4-1.3V3.3C20,2.6,19.4,2,18.6,2z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -1,34 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
width="100%"
height="100%"
viewBox="0 0 14 15"
version="1.1"
id="svg4489">
<defs
id="defs4483" />
<metadata
id="metadata4486">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1"
transform="translate(0,-1106.5197)" />
<path
d="M 14,13 H 0 V 2 H 14 Z M 1,3 v 9 H 13 V 3 Z"
style="clip-rule:evenodd;fill:#252525;fill-opacity:1;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41420996"
id="path4" />
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg4489" inkscape:version="0.91 r13725" sodipodi:docname="flipslider.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 14 15"
style="enable-background:new 0 0 14 15;" xml:space="preserve">
<style type="text/css">
.st0{fill:#252525;}
</style>
<path id="path4" inkscape:connector-curvature="0" class="st0" d="M14,13H0V2h14V13z M1,3v9h12V3H1z"/>
</svg>

Before

Width:  |  Height:  |  Size: 986 B

After

Width:  |  Height:  |  Size: 886 B

View file

@ -1,34 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
width="100%"
height="100%"
viewBox="0 0 14 15"
version="1.1"
id="svg4489">
<defs
id="defs4483" />
<metadata
id="metadata4486">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1"
transform="translate(0,-1106.5197)" />
<path
d="M 14,13 H 0 V 2 H 14 Z M 1,3 v 9 H 13 V 3 Z"
style="clip-rule:evenodd;fill:#1a1a1a;fill-opacity:1;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41420996"
id="path4" />
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg4489" inkscape:version="0.91 r13725" sodipodi:docname="flipslider_dark.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 14 15"
style="enable-background:new 0 0 14 15;" xml:space="preserve">
<style type="text/css">
.st0{fill:#1A1A1A;}
</style>
<path id="path4" inkscape:connector-curvature="0" class="st0" d="M14,13H0V2h14V13z M1,3v9h12V3H1z"/>
</svg>

Before

Width:  |  Height:  |  Size: 986 B

After

Width:  |  Height:  |  Size: 891 B

View file

@ -1,58 +1,15 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg4489"
version="1.1"
viewBox="0 0 14 14"
height="100%"
width="100%">
<defs
id="defs4483" />
<metadata
id="metadata4486">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(0,-1106.5197)"
id="layer1" />
<rect
y="4"
x="2"
height="2"
width="10"
id="rect4493"
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.99999988;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.54901961;paint-order:normal" />
<rect
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.99999988;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.54901961;paint-order:normal"
id="rect4495"
width="10"
height="2"
x="2"
y="9" />
<rect
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:1.99999988;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.54901961;paint-order:normal"
id="rect4485"
width="10"
height="2"
x="2"
y="4" />
<rect
y="9"
x="2"
height="2"
width="10"
id="rect4487"
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:1.99999988;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.54901961;paint-order:normal" />
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg4489" inkscape:version="0.91 r13725" sodipodi:docname="fsp_checked.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 14 14"
style="enable-background:new 0 0 14 14;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;stroke:#000000;stroke-width:2;stroke-linecap:square;stroke-opacity:0.549;}
.st1{fill:#E6E6E6;}
</style>
<rect id="rect4493" x="2" y="4" class="st0" width="10" height="2"/>
<rect id="rect4495" x="2" y="9" class="st0" width="10" height="2"/>
<rect id="rect4485" x="2" y="4" class="st1" width="10" height="2"/>
<rect id="rect4487" x="2" y="9" class="st1" width="10" height="2"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -1,58 +1,15 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg4489"
version="1.1"
viewBox="0 0 14 14"
height="100%"
width="100%">
<defs
id="defs4483" />
<metadata
id="metadata4486">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(0,-1106.5197)"
id="layer1" />
<rect
y="4"
x="2"
height="2"
width="10"
id="rect4493"
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.99999988;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.54901961;paint-order:normal" />
<rect
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.99999988;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.54901961;paint-order:normal"
id="rect4495"
width="10"
height="2"
x="2"
y="9" />
<rect
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:1.99999988;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.54901961;paint-order:normal"
id="rect4485"
width="10"
height="2"
x="2"
y="4" />
<rect
y="9"
x="2"
height="2"
width="10"
id="rect4487"
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:1.99999988;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.54901961;paint-order:normal" />
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg4489" inkscape:version="0.91 r13725" sodipodi:docname="fsp_unchecked.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 14 14"
style="enable-background:new 0 0 14 14;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;stroke:#000000;stroke-width:2;stroke-linecap:square;stroke-opacity:0.549;}
.st1{fill:#E6E6E6;}
</style>
<rect id="rect4493" x="2" y="4" class="st0" width="10" height="2"/>
<rect id="rect4495" x="2" y="9" class="st0" width="10" height="2"/>
<rect id="rect4485" x="2" y="4" class="st1" width="10" height="2"/>
<rect id="rect4487" x="2" y="9" class="st1" width="10" height="2"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -1,38 +1,23 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
width="100%"
height="100%"
viewBox="0 0 15 15"
version="1.1"
id="svg4489">
<defs
id="defs4483" />
<metadata
id="metadata4486">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1"
transform="translate(0,-1106.5197)" />
<path
d="m 12.466459,8.13701 c 0.02674,-0.20802 0.04678,-0.416 0.04678,-0.63702 0,-0.22098 -0.02005,-0.42899 -0.04678,-0.63697 L 13.876434,5.7905 c 0.126965,-0.0975 0.160375,-0.273 0.08019,-0.41599 L 12.620155,3.1255 c -0.08019,-0.143 -0.260611,-0.195 -0.407623,-0.143 l -1.663902,0.65 C 10.201152,3.37249 9.8269414,3.158 9.4193173,2.9955 L 9.1653881,1.273 C 9.1453391,1.117 9.0050124,1 8.8379533,1 H 6.1650076 C 5.9979488,1 5.8576196,1.117 5.8375725,1.273 L 5.5836433,2.9955 C 5.1760201,3.158 4.8018087,3.379 4.4543269,3.6325 l -1.6639045,-0.65 c -0.153694,-0.0584 -0.3274349,0 -0.4076231,0.143 L 1.0463299,5.37451 C 0.95945965,5.5175 0.99955275,5.693 1.1265179,5.7905 l 1.4099752,1.07252 c -0.026729,0.20798 -0.046777,0.4225 -0.046777,0.63697 0,0.21452 0.020047,0.429 0.046777,0.63702 l -1.4099752,1.0725 c -0.12696451,0.0974 -0.16037613,0.27301 -0.080188,0.416 l 1.3364694,2.24901 c 0.080187,0.143 0.2606115,0.195 0.4076231,0.143 l 1.6639045,-0.65001 c 0.3474819,0.26 0.7216933,0.47451 1.1293165,0.637 l 0.2539291,1.7225 c 0.020047,0.156 0.1603763,0.273 0.3274351,0.273 h 2.6729385 c 0.1670589,0 0.3073876,-0.117 0.3274345,-0.273 L 9.41931,12.00451 c 0.4076239,-0.16249 0.781834,-0.3835 1.129317,-0.637 l 1.663902,0.65001 c 0.153695,0.0584 0.327436,0 0.407624,-0.143 l 1.336469,-2.24901 c 0.08019,-0.14299 0.04678,-0.3185 -0.08019,-0.416 z m -4.9649821,1.638 c -1.2896929,0 -2.3388215,-1.0205 -2.3388215,-2.27502 0,-1.25449 1.0491286,-2.27499 2.3388215,-2.27499 1.2896928,0 2.3388221,1.0205 2.3388221,2.27499 0,1.25452 -1.0491293,2.27502 -2.3388221,2.27502 z"
id="path4497"
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.54901961" />
<path
style="fill:#e6e6e6;fill-opacity:1;stroke-width:1"
id="path4"
d="m 12.466459,8.13701 c 0.02674,-0.20802 0.04678,-0.416 0.04678,-0.63702 0,-0.22098 -0.02005,-0.42899 -0.04678,-0.63697 L 13.876434,5.7905 c 0.126965,-0.0975 0.160375,-0.273 0.08019,-0.41599 L 12.620155,3.1255 c -0.08019,-0.143 -0.260611,-0.195 -0.407623,-0.143 l -1.663902,0.65 C 10.201152,3.37249 9.8269414,3.158 9.4193173,2.9955 L 9.1653881,1.273 C 9.1453391,1.117 9.0050124,1 8.8379533,1 H 6.1650076 C 5.9979488,1 5.8576196,1.117 5.8375725,1.273 L 5.5836433,2.9955 C 5.1760201,3.158 4.8018087,3.379 4.4543269,3.6325 l -1.6639045,-0.65 c -0.153694,-0.0584 -0.3274349,0 -0.4076231,0.143 L 1.0463299,5.37451 C 0.95945965,5.5175 0.99955275,5.693 1.1265179,5.7905 l 1.4099752,1.07252 c -0.026729,0.20798 -0.046777,0.4225 -0.046777,0.63697 0,0.21452 0.020047,0.429 0.046777,0.63702 l -1.4099752,1.0725 c -0.12696451,0.0974 -0.16037613,0.27301 -0.080188,0.416 l 1.3364694,2.24901 c 0.080187,0.143 0.2606115,0.195 0.4076231,0.143 l 1.6639045,-0.65001 c 0.3474819,0.26 0.7216933,0.47451 1.1293165,0.637 l 0.2539291,1.7225 c 0.020047,0.156 0.1603763,0.273 0.3274351,0.273 h 2.6729385 c 0.1670589,0 0.3073876,-0.117 0.3274345,-0.273 L 9.41931,12.00451 c 0.4076239,-0.16249 0.781834,-0.3835 1.129317,-0.637 l 1.663902,0.65001 c 0.153695,0.0584 0.327436,0 0.407624,-0.143 l 1.336469,-2.24901 c 0.08019,-0.14299 0.04678,-0.3185 -0.08019,-0.416 z m -4.9649821,1.638 c -1.2896929,0 -2.3388215,-1.0205 -2.3388215,-2.27502 0,-1.25449 1.0491286,-2.27499 2.3388215,-2.27499 1.2896928,0 2.3388221,1.0205 2.3388221,2.27499 0,1.25452 -1.0491293,2.27502 -2.3388221,2.27502 z" />
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg4489" inkscape:version="0.91 r13725" sodipodi:docname="gear.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 15 15"
style="enable-background:new 0 0 15 15;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;stroke:#000000;stroke-width:2;stroke-opacity:0.549;}
.st1{fill:#E6E6E6;}
</style>
<path id="path4497" inkscape:connector-curvature="0" class="st0" d="M12.5,8.1c0-0.2,0-0.4,0-0.6c0-0.2,0-0.4,0-0.6l1.4-1.1
C14,5.7,14,5.5,14,5.4l-1.3-2.2C12.5,3,12.4,2.9,12.2,3l-1.7,0.7C10.2,3.4,9.8,3.2,9.4,3L9.2,1.3C9.1,1.1,9,1,8.8,1H6.2
C6,1,5.9,1.1,5.8,1.3L5.6,3C5.2,3.2,4.8,3.4,4.5,3.6L2.8,3C2.6,2.9,2.5,3,2.4,3.1L1,5.4C1,5.5,1,5.7,1.1,5.8l1.4,1.1
c0,0.2,0,0.4,0,0.6c0,0.2,0,0.4,0,0.6L1.1,9.2C1,9.3,1,9.5,1,9.6l1.3,2.2C2.5,12,2.6,12.1,2.8,12l1.7-0.7c0.3,0.3,0.7,0.5,1.1,0.6
l0.3,1.7C5.9,13.9,6,14,6.2,14h2.7c0.2,0,0.3-0.1,0.3-0.3L9.4,12c0.4-0.2,0.8-0.4,1.1-0.6l1.7,0.7c0.2,0.1,0.3,0,0.4-0.1L14,9.6
c0.1-0.1,0-0.3-0.1-0.4L12.5,8.1z M7.5,9.8c-1.3,0-2.3-1-2.3-2.3c0-1.3,1-2.3,2.3-2.3s2.3,1,2.3,2.3C9.8,8.8,8.8,9.8,7.5,9.8z"/>
<path id="path4" inkscape:connector-curvature="0" class="st1" d="M12.5,8.1c0-0.2,0-0.4,0-0.6c0-0.2,0-0.4,0-0.6l1.4-1.1
C14,5.7,14,5.5,14,5.4l-1.3-2.2C12.5,3,12.4,2.9,12.2,3l-1.7,0.7C10.2,3.4,9.8,3.2,9.4,3L9.2,1.3C9.1,1.1,9,1,8.8,1H6.2
C6,1,5.9,1.1,5.8,1.3L5.6,3C5.2,3.2,4.8,3.4,4.5,3.6L2.8,3C2.6,2.9,2.5,3,2.4,3.1L1,5.4C1,5.5,1,5.7,1.1,5.8l1.4,1.1
c0,0.2,0,0.4,0,0.6c0,0.2,0,0.4,0,0.6L1.1,9.2C1,9.3,1,9.5,1,9.6l1.3,2.2C2.5,12,2.6,12.1,2.8,12l1.7-0.7c0.3,0.3,0.7,0.5,1.1,0.6
l0.3,1.7C5.9,13.9,6,14,6.2,14h2.7c0.2,0,0.3-0.1,0.3-0.3L9.4,12c0.4-0.2,0.8-0.4,1.1-0.6l1.7,0.7c0.2,0.1,0.3,0,0.4-0.1L14,9.6
c0.1-0.1,0-0.3-0.1-0.4L12.5,8.1z M7.5,9.8c-1.3,0-2.3-1-2.3-2.3c0-1.3,1-2.3,2.3-2.3s2.3,1,2.3,2.3C9.8,8.8,8.8,9.8,7.5,9.8z"/>
</svg>

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

View file

@ -1,47 +1,21 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg6"
style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41420996"
xml:space="preserve"
version="1.1"
viewBox="0 0 18 18"
height="100%"
width="100%"><metadata
id="metadata12"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs10" /><rect
id="rect2"
style="clip-rule:evenodd;fill:none;fill-rule:evenodd;stroke-width:0.05555556;stroke-linejoin:round;stroke-miterlimit:1.41420996"
height="1.0000001"
width="1.0000001"
y="17"
x="-7.1525574e-007" /><path
id="path4493"
d="m 9.5000001,2.9999987 c -1.9322341,-3e-7 -3.4989225,1.56386 -3.5000003,3.4960941 V 6.999999 H 6.9999999 V 6.4960928 C 7.0010799,5.1161438 8.1200511,3.9999983 9.5000001,3.9999988 10.879949,3.9999983 11.998922,5.1161438 12,6.4960928 V 6.999999 h 1 V 6.4960928 C 12.9989,4.5638587 11.432234,2.9999984 9.5000001,2.9999987 Z M 4.9999997,7.9999991 V 15 H 14 V 7.9999991 Z"
style="clip-rule:evenodd;fill:#fbfbfb;fill-opacity:1;fill-rule:evenodd;stroke:#303030;stroke-width:2.00000024;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" /><g
style="clip-rule:evenodd;fill:#e6e6e6;fill-opacity:1;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41420996"
id="g4491"
transform="matrix(0.05555556,0,0,0.05555556,-8e-7,-1.4e-6)"><path
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:36;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-opacity:0.27638191;paint-order:markers stroke fill"
d="M 90,144 V 270 H 252 V 144 Z"
id="rect4488" /><path
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:36;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-opacity:0.27638191;paint-order:markers stroke fill"
d="m 171,54 c -34.78021,-5e-6 -62.98059,28.18463 -63,62.96484 V 126 h 18 v -9.03516 C 126.01941,92.12576 146.16091,71.999992 171,72 c 24.83909,-8e-6 44.98059,20.12576 45,44.96484 V 126 h 18 v -9.03516 C 233.98059,82.18463 205.78021,53.999995 171,54 Z"
id="path4509" /></g><circle
style="fill:#303030;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
id="path820"
cx="9.5"
cy="10.5"
r="1.5" /><rect
style="fill:#303030;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
id="rect822"
width="1.5"
height="3"
x="8.749999"
y="10.999999" /></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg6" inkscape:version="0.91 r13725" sodipodi:docname="layer_header_lock.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 18 18"
style="enable-background:new 0 0 18 18;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FBFBFB;stroke:#303030;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:1.4142;}
.st1{fill:#E6E6E6;}
.st2{fill:#303030;}
</style>
<path id="path4493" inkscape:connector-curvature="0" class="st0" d="M9,3C7.1,3,5.5,4.6,5.5,6.5V7h1V6.5C6.5,5.1,7.6,4,9,4
c1.4,0,2.5,1.1,2.5,2.5V7h1V6.5C12.5,4.6,10.9,3,9,3z M4.5,8v7h9V8H4.5z"/>
<g id="g4491" transform="matrix(0.05555556,0,0,0.05555556,-8e-7,-1.4e-6)">
<path id="rect4488" inkscape:connector-curvature="0" class="st1" d="M81,144v126h162V144H81z"/>
<path id="path4509" inkscape:connector-curvature="0" class="st1" d="M162,54c-34.8,0-63,28.2-63,63v9h18v-9c0-24.8,20.2-45,45-45
c24.8,0,45,20.1,45,45v9h18v-9C225,82.2,196.8,54,162,54z"/>
</g>
<circle id="path820" class="st2" cx="9" cy="10.5" r="1.5"/>
<rect id="rect822" x="8.2" y="11" class="st2" width="1.5" height="3"/>
</svg>

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -1,35 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg6"
style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41420996"
xml:space="preserve"
version="1.1"
viewBox="0 0 18 18"
height="100%"
width="100%"><metadata
id="metadata12"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs10" /><path
style="clip-rule:evenodd;fill:#e6e6e6;fill-opacity:1;fill-rule:evenodd;stroke:#303030;stroke-width:1.99999988;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
d="m 2,9.5762712 c 0,0 2.6226666,-4.4900001 7,-4.4900001 4.377334,0 7,4.4900001 7,4.4900001 0,0 -2.6124,4.5099998 -7,4.5099998 -4.3876001,0 -7,-4.5099998 -7,-4.5099998 z"
id="path821" /><path
id="path832"
d="m 2,9.5762712 c 0,0 2.6226666,-4.4900001 7,-4.4900001 4.377334,0 7,4.4900001 7,4.4900001 0,0 -2.6124,4.5099998 -7,4.5099998 -4.3876001,0 -7,-4.5099998 -7,-4.5099998 z"
style="clip-rule:evenodd;fill:#e6e6e6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.99999988;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-opacity:0.76470588;paint-order:stroke fill markers" /><ellipse
id="path21"
cx="9"
cy="9.5862713"
rx="3.5"
ry="3.6207628"
style="clip-rule:evenodd;fill:#303030;fill-opacity:1;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41420996" /><circle
style="clip-rule:evenodd;fill:#e6e6e6;fill-opacity:1;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41420996"
id="path1450"
cx="8"
cy="8.5862713"
r="1.5" /></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg6" inkscape:version="0.91 r13725" sodipodi:docname="layer_header_prev_eye.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 18 18"
style="enable-background:new 0 0 18 18;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E6E6E6;stroke:#303030;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:1.4142;}
.st1{fill:#E6E6E6;}
.st2{fill:#303030;}
</style>
<sodipodi:namedview bordercolor="#666666" borderopacity="1" gridtolerance="10" guidetolerance="10" id="namedview9" inkscape:current-layer="svg6" inkscape:cx="9" inkscape:cy="9" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-height="480" inkscape:window-maximized="0" inkscape:window-width="796" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="13.111111" objecttolerance="10" pagecolor="#ffffff" showgrid="false">
</sodipodi:namedview>
<path id="path821" inkscape:connector-curvature="0" class="st0" d="M2,9.6c0,0,2.6-4.5,7-4.5s7,4.5,7,4.5s-2.6,4.5-7,4.5
S2,9.6,2,9.6z"/>
<path id="path832" inkscape:connector-curvature="0" class="st1" d="M2,9.6c0,0,2.6-4.5,7-4.5s7,4.5,7,4.5s-2.6,4.5-7,4.5
S2,9.6,2,9.6z"/>
<ellipse id="path21" class="st2" cx="9" cy="9.6" rx="3.5" ry="3.6"/>
<circle id="path1450" class="st1" cx="8" cy="8.6" r="1.5"/>
</svg>

Before

Width:  |  Height:  |  Size: 2 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -1,36 +1,15 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg6"
style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41420996"
xml:space="preserve"
version="1.1"
viewBox="0 0 18 18"
height="100%"
width="100%"><metadata
id="metadata12"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs10" /><ellipse
style="clip-rule:evenodd;fill:#e6e6e6;fill-opacity:1;fill-rule:evenodd;stroke:#303030;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke fill markers"
id="path1869"
cx="9"
cy="9.4999657"
rx="6.5000262"
ry="6.5000339" /><ellipse
ry="6.5000339"
rx="6.5000262"
cy="9.4999657"
cx="9"
id="ellipse9"
style="clip-rule:evenodd;fill:#e6e6e6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.76470588;paint-order:stroke fill markers" /><rect
style="clip-rule:evenodd;fill:#303030;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:1.41420996;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke fill markers"
id="rect1871"
width="8"
height="6.9999995"
x="5"
y="5.9999318" /></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg6" inkscape:version="0.91 r13725" sodipodi:docname="layer_header_table_view.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 18 18"
style="enable-background:new 0 0 18 18;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E6E6E6;stroke:#303030;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:1.4142;}
.st1{fill:#E6E6E6;}
.st2{fill:#303030;}
</style>
<ellipse id="path1869" class="st0" cx="9" cy="9.5" rx="6.5" ry="6.5"/>
<ellipse id="ellipse9" class="st1" cx="9" cy="9.5" rx="6.5" ry="6.5"/>
<rect id="rect1871" x="5" y="6" class="st2" width="8" height="7"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -1 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 11 11" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"><rect x="2" y="5" width="7" height="1" style="fill:#ebebeb;"/></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg2" inkscape:version="0.91 r13725" sodipodi:docname="minus.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 11 11"
style="enable-background:new 0 0 11 11;" xml:space="preserve">
<style type="text/css">
.st0{fill:#EBEBEB;}
</style>
<rect id="rect4" x="2" y="5" class="st0" width="7" height="1"/>
</svg>

Before

Width:  |  Height:  |  Size: 478 B

After

Width:  |  Height:  |  Size: 841 B

View file

@ -1,30 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
width="100%"
height="100%"
viewBox="0 0 18 18"
version="1.1"
xml:space="preserve"
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"
id="svg10"><metadata
id="metadata16"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs14" /><rect
x="0"
y="0"
width="18"
height="18"
style="fill:none;"
id="rect2" /><path
id="path4"
style="fill:#e6e6e6;fill-opacity:1"
d="M 14,9 5,4 v 10 z" /><path
id="path6"
style="fill-opacity:0.54901963;fill:#000000"
d="m 5.066,3.002 0.063,0.006 0.062,0.01 0.061,0.014 0.061,0.018 0.059,0.022 0.058,0.025 0.056,0.029 9,5 0.053,0.032 0.052,0.035 0.049,0.039 0.047,0.041 0.044,0.045 0.041,0.047 0.039,0.049 0.035,0.052 0.031,0.054 0.029,0.056 0.024,0.057 0.021,0.059 0.018,0.06 0.013,0.061 0.01,0.062 0.006,0.062 L 15,9 14.998,9.063 14.992,9.125 14.982,9.187 14.969,9.248 14.951,9.308 14.93,9.367 14.906,9.424 14.877,9.48 14.846,9.534 14.811,9.586 14.772,9.635 14.731,9.682 14.687,9.727 14.64,9.768 l -0.049,0.039 -0.052,0.035 -0.053,0.032 -9,5 L 5.43,14.903 5.372,14.928 5.313,14.95 5.252,14.968 5.191,14.982 5.129,14.992 5.066,14.998 5.003,15 4.94,14.998 4.878,14.992 4.816,14.983 4.754,14.969 4.694,14.952 4.634,14.931 4.576,14.906 4.52,14.877 4.466,14.845 4.414,14.81 4.364,14.772 4.317,14.73 4.272,14.686 4.23,14.639 4.192,14.589 4.156,14.537 4.124,14.483 4.096,14.427 4.071,14.369 4.049,14.31 4.032,14.249 4.018,14.188 4.008,14.126 4.002,14.063 4,14 V 4 L 4.002,3.937 4.008,3.874 4.018,3.812 4.032,3.751 4.049,3.69 4.071,3.631 4.096,3.573 4.124,3.517 4.156,3.463 4.192,3.411 4.23,3.361 4.272,3.314 4.317,3.27 4.364,3.228 4.414,3.19 4.466,3.155 4.52,3.123 4.576,3.094 4.634,3.069 4.694,3.048 4.754,3.031 4.816,3.017 4.878,3.008 4.94,3.002 5.003,3 Z M 5,14 14,9 5,4 Z" /></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1"
id="svg10" inkscape:version="0.91 r13725" sodipodi:docname="nextkey.svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 18 18"
style="enable-background:new 0 0 18 18;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;}
.st1{fill:#E6E6E6;}
.st2{fill-opacity:0.549;}
</style>
<rect id="rect2" y="0" class="st0" width="18" height="18"/>
<path id="path4" inkscape:connector-curvature="0" class="st1" d="M14,9L5,4v10L14,9z"/>
<path id="path6" inkscape:connector-curvature="0" class="st2" d="M5.1,3L5.1,3l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0l9,5l0.1,0
l0.1,0l0,0l0,0l0,0l0,0l0,0l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1L15,9l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1
l0,0.1l0,0.1l0,0.1l0,0l0,0l0,0l0,0l0,0l-0.1,0l-0.1,0l-9,5l-0.1,0l-0.1,0l-0.1,0l-0.1,0l-0.1,0l-0.1,0l-0.1,0L5,15l-0.1,0l-0.1,0
l-0.1,0l-0.1,0l-0.1,0l-0.1,0l-0.1,0l-0.1,0l-0.1,0l-0.1,0l-0.1,0l0,0l0,0l0,0l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1
l0-0.1l0-0.1L4,14V4l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l0,0l0,0l0,0l0,0l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0
l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0H5.1L5.1,3z M5,14l9-5L5,4V14z"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

Some files were not shown because too many files have changed in this diff Show more