Add support for different accent colors #69

This commit is contained in:
vinceliuice 2020-12-25 21:30:01 +08:00
parent b9f9eee68e
commit 4a7986476c
316 changed files with 3974 additions and 7024 deletions

View file

@ -61,6 +61,43 @@ After all the dependencies are installed, you can Run
./install.sh
#### Install tips
Usage: `./Install` **[OPTIONS...]**
| OPTIONS: | |
|:--------------------|:-------------|
|-d, --dest | Specify theme destination directory (Default: $HOME/.themes)|
|-n, --name | Specify theme name (Default: WhiteSur)|
|-c, --color | Specify theme color variant(s) **[light/dark]** (Default: All variants)|
|-o, --opacity | Specify theme opacity variant(s) **[standard/solid]** (Default: All variants)|
|-a, --alt | Specify titlebutton variant(s) **[standard/alt]** (Default: All variants)|
|-t, --theme | Run a terminal dialog to change the theme accent color (Default: blue)|
|-p, --panel | Run a terminal dialog to change the panel transparency (Default: 85%)|
|-s, --size | Run a terminal dialog to change the nautilus sidebar width size (Default: 200px)|
|-i, --icon | activities icon variant(s) **[standard/normal/gnome/ubuntu/arch/manjaro/fedora/debian/void]** (Default: standard variant)|
|-g, --gdm | Install GDM theme, you should run this with sudo!|
|-r, --remove | remove theme, this will remove all installed themes!|
|-h, --help | Show this help|
If you want to change the nautilus sidebar width size,
(Nautilus cannot change the structure of the sidebar, so I added a picture as a background to achieve the effect of bigsur)
then you can run:
./install.sh -s
If you want to change the panel transparency, then you can run:
./install.sh -p
If you want to remove all installed themes, then you can run:
./install.sh -r
If you want to remove installed gdm theme, then you can run:
./install.sh -r -g
### On Snapcraft
<a href="https://snapcraft.io/whitesur-gtk-theme">
@ -84,42 +121,6 @@ To connect the theme to all apps which have available plugs to gtk-common-themes
for i in $(snap connections | grep gtk-common-themes:gtk-3-themes | awk '{print $2}'); do sudo snap connect $i whitesur-gtk-theme:gtk-3-themes; done
```
#### Install tips
Usage: `./Install` **[OPTIONS...]**
| OPTIONS: | |
|:--------------------|:-------------|
|-d, --dest | Specify theme destination directory (Default: $HOME/.themes)|
|-n, --name | Specify theme name (Default: WhiteSur)|
|-c, --color | Specify theme color variant(s) **[light/dark]** (Default: All variants)|
|-o, --opacity | Specify theme opacity variant(s) **[standard/solid]** (Default: All variants)|
|-a, --alt | Specify titlebutton variant(s) **[standard/alt]** (Default: All variants)|
|-t, --trans | Run a dialg to change the panel transparency (Default: 85%)|
|-s, --size | Run a dialg to change the nautilus sidebar width size (Default: 200px)|
|-i, --icon | activities icon variant(s) **[standard/normal/gnome/ubuntu/arch/manjaro/fedora/debian/void]** (Default: standard variant)|
|-g, --gdm | Install GDM theme, you should run this with sudo!|
|-r, --remove | remove theme, this will remove all installed themes!|
|-h, --help | Show this help|
If you want to change the nautilus sidebar width size,
(Nautilus cannot change the structure of the sidebar, so I added a picture as a background to achieve the effect of bigsur)
then you can run:
./install.sh -s
If you want to change the panel transparency, then you can run:
./install.sh -t
If you want to remove all installed themes, then you can run:
./install.sh -r
If you want to remove installed gdm theme, then you can run:
./install.sh -r -g
### Suggested themes
| Suggested themes | links | preview |
|:--------------------|:-------------|:-------------|

View file

@ -68,9 +68,10 @@ usage() {
printf " %-25s%s\n" "-n, --name NAME" "Specify theme name (Default: ${THEME_NAME})"
printf " %-25s%s\n" "-o, --opacity VARIANTS" "Specify theme opacity variant(s) [standard|solid] (Default: All variants)"
printf " %-25s%s\n" "-c, --color VARIANTS" "Specify theme color variant(s) [light|dark] (Default: All variants)"
printf " %-25s%s\n" "-t, --theme VARIANTS" "Run a dialog to change the theme color (Default: blue)"
printf " %-25s%s\n" "-a, --alt VARIANTS" "Specify theme titilebutton variant(s) [standard|alt] (Default: All variants)"
printf " %-25s%s\n" "-t, --trans VARIANTS" "Run a dialg to change the panel transparency (Default: 85%)"
printf " %-25s%s\n" "-s, --size VARIANTS" "Run a dialg to change the nautilus sidebar width size (Default: 200px)"
printf " %-25s%s\n" "-p, --panel VARIANTS" "Run a dialog to change the panel transparency (Default: 85%)"
printf " %-25s%s\n" "-s, --size VARIANTS" "Run a dialog to change the nautilus sidebar width size (Default: 200px)"
printf " %-25s%s\n" "-i, --icon VARIANTS" "Specify activities icon variant(s) for gnome-shell [standard|normal|gnome|ubuntu|arch|manjaro|fedora|debian|void] (Default: standard variant)"
printf " %-25s%s\n" "-g, --gdm" "Install GDM theme, this option need root user authority! please run this with sudo"
printf " %-25s%s\n" "-r, --remove" "remove theme, remove all installed themes"
@ -338,6 +339,32 @@ run_shell_dialog() {
fi
}
run_theme_dialog() {
if [[ -x /usr/bin/dialog ]]; then
tui=$(dialog --backtitle "${THEME_NAME} gtk theme installer" \
--radiolist "Choose your theme color (default is Mac Blue):" 20 50 10 \
1 "Blue" on \
2 "Purple" off \
3 "Pink" off \
4 "Red" off \
5 "Orange" off \
6 "Yellow" off \
7 "Green" off \
8 "Grey" off --output-fd 1 )
case "$tui" in
1) theme_color="#2E7CF7" ;;
2) theme_color="#9A57A3" ;;
3) theme_color="#E55E9C" ;;
4) theme_color="#ED5F5D" ;;
5) theme_color="#E9873A" ;;
6) theme_color="#F3BA4B" ;;
7) theme_color="#79B757" ;;
8) theme_color="#8C8C8C" ;;
*) operation_canceled ;;
esac
fi
}
parse_sass() {
cd ${REPO_DIR} && ./parse-sass.sh
}
@ -349,6 +376,105 @@ change_size() {
prompt -w "Change nautilus sidebar size ..."
}
change_theme_color() {
notify-send "Notice" "It will take a few minutes to regenerate the assets files, please be patient!" -i face-wink
cd ${SRC_DIR}/sass
cp -an _colors.scss _colors.scss.bak
sed -i "s/#0860f2/$theme_color/g" _colors.scss
cd ${SRC_DIR}/assets/gtk-3.0
cp -an thumbnail.svg thumbnail.svg.bak
mv thumbnail-dark.png thumbnail-dark.png.bak
mv thumbnail-light.png thumbnail-light.png.bak
sed -i "s/#0860f2/$theme_color/g" thumbnail.svg
./render-thumbnails.sh
cd ${SRC_DIR}/assets/gtk-3.0/common-assets
cp -an assets.svg assets.svg.bak
mv assets assets-bak
sed -i "s/#0860f2/$theme_color/g" assets.svg
./render-assets.sh
cd ${SRC_DIR}/assets/gnome-shell/common-assets
cp -an checkbox.svg checkbox.svg.bak
cp -an more-results.svg more-results.svg.bak
cp -an toggle-on.svg toggle-on.svg.bak
sed -i "s/#0860f2/$theme_color/g" {checkbox.svg,more-results.svg,toggle-on.svg}
cd ${SRC_DIR}/main/gtk-2.0
cp -an gtkrc-dark gtkrc-dark.bak
cp -an gtkrc-light gtkrc-light.bak
sed -i "s/#0860f2/$theme_color/g" {gtkrc-dark,gtkrc-light}
cd ${SRC_DIR}/assets/gtk-2.0
cp -an assets-dark.svg assets-dark.svg.bak
cp -an assets-light.svg assets-light.svg.bak
mv assets-dark assets-dark-bak
mv assets-light assets-light-bak
sed -i "s/#0860f2/$theme_color/g" {assets-dark.svg,assets-light.svg}
./render-assets.sh
cd ${SRC_DIR}/assets/cinnamon
cp -an thumbnail.svg thumbnail.svg.bak
mv thumbnail-dark.png thumbnail-dark.png.bak
mv thumbnail-light.png thumbnail-light.png.bak
sed -i "s/#0860f2/$theme_color/g" thumbnail.svg
./render-thumbnails.sh
cd ${SRC_DIR}/assets/cinnamon/common-assets
cp -an checkbox.svg checkbox.svg.bak
cp -an radiobutton.svg radiobutton.svg.bak
cp -an add-workspace-active.svg add-workspace-active.svg.bak
cp -an menu-hover.svg menu-hover.svg.bak
cp -an toggle-on.svg toggle-on.svg.bak
cp -an corner-ripple.svg corner-ripple.svg.bak
sed -i "s/#0860f2/$theme_color/g" {checkbox.svg,radiobutton.svg,menu-hover.svg,add-workspace-active.svg,corner-ripple.svg,toggle-on.svg}
prompt -w "Change theme color ..."
}
restore_assets_files() {
cd ${SRC_DIR}/assets/gtk-3.0
mv -f thumbnail.svg.bak thumbnail.svg
mv -f thumbnail-dark.png.bak thumbnail-dark.png
mv -f thumbnail-light.png.bak thumbnail-light.png
cd ${SRC_DIR}/assets/gtk-3.0/common-assets
mv -f assets.svg.bak assets.svg
[[ -d assets-bak ]] && rm -rf assets && mv assets-bak assets
cd ${SRC_DIR}/assets/gnome-shell/common-assets
mv -f checkbox.svg.bak checkbox.svg
mv -f more-results.svg.bak more-results.svg
mv -f toggle-on.svg.bak toggle-on.svg
cd ${SRC_DIR}/main/gtk-2.0
mv -f gtkrc-dark.bak gtkrc-dark
mv -f gtkrc-light.bak gtkrc-light
cd ${SRC_DIR}/assets/gtk-2.0
mv -f assets-dark.svg.bak assets-dark.svg
mv -f assets-light.svg.bak assets-light.svg
[[ -d assets-dark-bak ]] && rm -rf assets-dark && mv assets-dark-bak assets-dark
[[ -d assets-light-bak ]] && rm -rf assets-light && mv assets-light-bak assets-light
cd ${SRC_DIR}/assets/cinnamon
mv -f thumbnail.svg.bak thumbnail.svg
mv -f thumbnail-dark.png.bak thumbnail-dark.png
mv -f thumbnail-light.png.bak thumbnail-light.png
cd ${SRC_DIR}/assets/cinnamon/common-assets
mv -f checkbox.svg.bak checkbox.svg
mv -f radiobutton.svg.bak radiobutton.svg
mv -f add-workspace-active.svg.bak add-workspace-active.svg
mv -f menu-hover.svg.bak menu-hover.svg
mv -f toggle-on.svg.bak toggle-on.svg
mv -f corner-ripple.svg.bak corner-ripple.svg
prompt -w "restore assets files ..."
}
change_transparency() {
cd ${SRC_DIR}/sass
cp -an _colors.scss _colors.scss.bak
@ -392,8 +518,12 @@ while [[ $# -gt 0 ]]; do
size='true'
shift 1
;;
-t|--trans)
trans='true'
-t|--theme)
theme='true'
shift 1
;;
-p|--panel)
panel='true'
shift 1
;;
-r|--remove)
@ -555,7 +685,11 @@ if [[ "${size:-}" == 'true' ]]; then
fi
fi
if [[ "${trans:-}" == 'true' ]]; then
if [[ "${theme:-}" == 'true' ]]; then
install_dialog && run_theme_dialog && change_theme_color && parse_sass
fi
if [[ "${panel:-}" == 'true' ]]; then
install_dialog && run_shell_dialog && change_transparency && parse_sass
fi
@ -583,5 +717,11 @@ if [[ -f "${SRC_DIR}"/sass/_colors.scss.bak ]]; then
restore_colors_file && parse_sass
fi
if [[ -f "${SRC_DIR}"/assets/gtk-3.0/thumbnail.svg.bak ]]; then
restore_assets_files
fi
notify-send "Finished" "Enjoy you new WhiteSur theme!" -i face-smile
echo
prompt -s Done.

View file

@ -26,38 +26,17 @@ if [ ! "$(which inkscape 2> /dev/null)" ]; then
fi
fi
render_thumbnail() {
local dest=$1
local color=$2
if [ -f $ASRC_DIR/$1/thumbnail$2.png ]; then
echo $ASRC_DIR/$1/thumbnail$2.png exists.
else
echo
echo Rendering $ASRC_DIR/$1/thumbnail$2.png
$INKSCAPE --export-id=thumbnail$2 \
--export-id-only \
--export-type=png $ASRC_DIR/$1/thumbnail$2.png $ASRC_DIR/$1/thumbnail.svg >/dev/null \
|| $INKSCAPE --export-id=thumbnail$2 \
--export-id-only \
--export-png=$ASRC_DIR/$1/thumbnail$2.png $ASRC_DIR/$1/thumbnail.svg >/dev/null \
&& $OPTIPNG -o7 --quiet $ASRC_DIR/$1/thumbnail$2.png
fi
}
for color in '-light' '-dark' ; do
render_thumbnail "${dest:-cinnamon}" "${color}"
render_thumbnail "${dest:-gtk-3.0}" "${color}"
render_thumbnail "${dest:-metacity-1}" "${color}"
done
echo Rendering gtk-2.0 assets
cd $ASRC_DIR/gtk-2.0 && ./render-assets.sh
echo Rendering gtk-3.0 assets
cd $ASRC_DIR/gtk-3.0 && ./render-thumbnails.sh
cd $ASRC_DIR/gtk-3.0/common-assets && ./render-assets.sh
cd $ASRC_DIR/gtk-3.0/windows-assets && ./render-assets.sh && ./render-alt-assets.sh
echo Rendering cinnamon thumbnails
cd $ASRC_DIR/cinnamon && ./render-thumbnails.sh
echo Rendering metacity-1 assets
cd $ASRC_DIR/metacity-1 && ./render-assets.sh

View file

@ -1,231 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
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:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="24"
height="24"
viewBox="0 0 24 24"
version="1.1"
id="svg4"
sodipodi:docname="checkbox.svg"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
<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" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs8">
<linearGradient
inkscape:collect="always"
xlink:href="#hightlight"
id="linearGradient1632"
x1="18.000006"
y1="38.36219"
x2="31.999994"
y2="38.36219"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="hightlight"
osb:paint="solid">
<stop
style="stop-color:#5887fc;stop-opacity:1;"
offset="0"
id="stop1628" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#dark_checked_bg"
id="linearGradient1590"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.99167598,0,0.37759569)"
x1="24"
y1="45.362179"
x2="24"
y2="32.253059" />
<linearGradient
id="dark_checked_bg"
osb:paint="gradient">
<stop
style="stop-color:#3458c0;stop-opacity:1"
offset="0"
id="stop1580" />
<stop
style="stop-color:#3d67e3;stop-opacity:1"
offset="1"
id="stop1582" />
</linearGradient>
<filter
style="color-interpolation-filters:sRGB"
inkscape:label="Drop Shadow"
id="filter1536">
<feFlood
flood-opacity="0.352941"
flood-color="rgb(0,0,0)"
result="flood"
id="feFlood1526" />
<feComposite
in="flood"
in2="SourceGraphic"
operator="in"
result="composite1"
id="feComposite1528" />
<feGaussianBlur
in="composite1"
stdDeviation="0"
result="blur"
id="feGaussianBlur1530" />
<feOffset
dx="0"
dy="0.5"
result="offset"
id="feOffset1532" />
<feComposite
in="SourceGraphic"
in2="offset"
operator="over"
result="composite2"
id="feComposite1534" />
</filter>
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1366"
inkscape:window-height="704"
id="namedview6"
showgrid="false"
inkscape:zoom="9.8333333"
inkscape:cx="12"
inkscape:cy="12"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg4" />
<g
transform="translate(-32,3.6378183)"
style="display:inline;opacity:1"
id="checkbox-checked-dark"
inkscape:label="#g10758">
<g
inkscape:label="#g22047"
id="checkbox-unchecked-5-59"
style="display:inline"
transform="translate(19)">
<g
id="sdsd-7-54"
inkscape:label="#g21853">
<g
transform="translate(0,-30)"
inkscape:label="#g14325"
id="scdsdcd-5-8">
<g
transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)"
id="g15812-6-6-1-5-4"
style="display:inline">
<g
style="display:inline"
id="g5489-2-9-6-8-8-53-5"
transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)">
<g
id="g5428-8-1-4-0-0-4-2" />
</g>
</g>
<rect
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
id="rect13523-7-11"
width="16"
height="16"
x="17"
y="30.362183" />
<g
id="g5400-6-68">
<rect
ry="2.2857065"
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.12000002;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.14285803;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:fill markers stroke;enable-background:accumulate"
id="rect1924"
width="16"
height="16.000002"
x="17"
y="30.362181"
rx="2.2857096" />
<rect
rx="1.9999943"
y="31.362196"
x="18.000006"
height="13.99999"
width="13.999989"
id="rect5147-9-1-5-7-6-7-4"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient1632);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:fill markers stroke;enable-background:accumulate"
ry="1.9999917" />
<rect
ry="1.8571372"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient1590);fill-opacity:1;stroke:none;stroke-width:0.96399999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:fill markers stroke;enable-background:accumulate"
id="rect1578"
width="13.999989"
height="13.000006"
x="18.000006"
y="32.362179"
rx="1.9999943" />
</g>
</g>
</g>
</g>
<g
inkscape:label="Ebene 1"
id="checkbox-checked-dark-7-37"
transform="translate(36,-1036)"
style="display:inline">
<g
id="g3981-6-4-97"
transform="rotate(45,-3.2604448,1033.6624)"
style="opacity:0.85;fill:#1a1a1a;fill-opacity:1" />
<g
id="g4049-2-5"
transform="rotate(45,7.4999938,1026.3622)">
<g
id="g4056-7-6"
transform="translate(12.374375,11.531233)">
<g
id="g3981-0-8"
transform="translate(-3,-4.9999826)"
style="fill:#3b3c3e;fill-opacity:1">
<path
style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter1536)"
d="m 154.15625,15.880859 c -0.25562,0 -0.51116,0.0971 -0.70703,0.292969 l -3.53516,3.535156 -1.47851,-1.476562 c -0.35638,-0.356375 -0.95788,-0.329234 -1.34961,0.0625 -0.39174,0.391734 -0.42083,0.995188 -0.0645,1.351562 l 2.18555,2.183594 0.0644,0.06445 c 0.35638,0.356375 0.95788,0.327281 1.34961,-0.06445 l 4.24219,-4.242187 c 0.39174,-0.391738 0.39174,-1.022326 0,-1.414063 -0.19587,-0.195868 -0.45141,-0.292969 -0.70703,-0.292969 z"
transform="rotate(-45,1304.0439,694.22022)"
id="rect3977-39-90"
inkscape:connector-curvature="0" />
</g>
<rect
style="fill:#eeeeee;fill-opacity:0;stroke:none"
id="rect4047-81-5"
width="3"
height="1"
x="5"
y="-8"
transform="translate(0,1036.3622)" />
</g>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 8 KiB

View file

@ -1,216 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
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:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="24"
height="24"
viewBox="0 0 24 24"
version="1.1"
id="svg4"
sodipodi:docname="radiobutton.svg"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
<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" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs8">
<linearGradient
inkscape:collect="always"
xlink:href="#hightlight"
id="linearGradient1650"
x1="51.610752"
y1="141.02211"
x2="80.995743"
y2="141.02211"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="hightlight"
osb:paint="solid">
<stop
style="stop-color:#5887fc;stop-opacity:1;"
offset="0"
id="stop1628" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#dark_checked_bg"
id="linearGradient1586"
gradientUnits="userSpaceOnUse"
x1="51.610752"
y1="141.02211"
x2="80.995743"
y2="141.02211"
gradientTransform="matrix(1,0,0,0.92857215,0,11.105721)" />
<linearGradient
id="dark_checked_bg"
osb:paint="gradient">
<stop
style="stop-color:#3458c0;stop-opacity:1"
offset="0"
id="stop1580" />
<stop
style="stop-color:#3d67e3;stop-opacity:1"
offset="1"
id="stop1582" />
</linearGradient>
<filter
style="color-interpolation-filters:sRGB"
inkscape:label="Drop Shadow"
id="filter1488">
<feFlood
flood-opacity="0.352941"
flood-color="rgb(0,0,0)"
result="flood"
id="feFlood1478" />
<feComposite
in="flood"
in2="SourceGraphic"
operator="in"
result="composite1"
id="feComposite1480" />
<feGaussianBlur
in="composite1"
stdDeviation="0"
result="blur"
id="feGaussianBlur1482" />
<feOffset
dx="0"
dy="0.5"
result="offset"
id="feOffset1484" />
<feComposite
in="SourceGraphic"
in2="offset"
operator="over"
result="composite2"
id="feComposite1486" />
</filter>
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1366"
inkscape:window-height="704"
id="namedview6"
showgrid="true"
inkscape:zoom="9.8333333"
inkscape:cx="5.9491525"
inkscape:cy="12"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg4">
<inkscape:grid
type="xygrid"
id="grid877" />
</sodipodi:namedview>
<g
transform="translate(-112,3.6378183)"
style="display:inline;opacity:1"
id="radio-checked-dark"
inkscape:label="#g11094">
<g
transform="translate(19.004264,-4.6992607e-6)"
inkscape:label="#g10975"
id="radio-unchecked-2-1"
style="display:inline">
<g
id="g10964-6-63">
<g
inkscape:label="#g15805"
transform="matrix(0.93617253,0,0,0.93566004,-96.78315,-244.76084)"
id="radio-unchecked2-0-8"
style="display:inline">
<g
style="display:inline;opacity:0.06000001;fill:#000000;fill-opacity:1"
id="g7025-09-0-5"
transform="translate(0,1.0687628)">
<g
transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)"
id="g5489-2-9-3-2-6-2"
style="display:inline;fill:#000000;fill-opacity:1">
<g
id="g5428-8-1-7-5-4-7"
style="fill:#000000;fill-opacity:1" />
</g>
</g>
<rect
y="261.97873"
x="206.99057"
height="17.100227"
width="17.090866"
id="rect14348-4-8-5"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
<g
id="g7025-09-09">
<g
transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)"
id="g5489-2-9-3-2-28"
style="display:inline">
<g
id="g5428-8-1-7-5-64">
<rect
ry="16.525213"
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.12000002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
id="rect1934"
width="33.582863"
height="33.050426"
x="49.511818"
y="124.49688"
rx="16.791431" />
<rect
rx="14.692495"
y="126.56255"
x="51.610752"
height="28.919107"
width="29.384991"
id="rect5147-9-1-7-2-0"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient1650);fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
ry="14.459554" />
<rect
ry="13.426739"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient1586);fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
id="rect1574"
width="29.384991"
height="26.853477"
x="51.610752"
y="128.62819"
rx="14.692495" />
</g>
</g>
</g>
</g>
</g>
</g>
<rect
rx="1.9988754"
y="6.3621826"
x="122"
height="4"
width="4"
id="use15101-5-7-55"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.08838987;marker:none;filter:url(#filter1488);enable-background:accumulate"
ry="2" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 7.3 KiB

View file

@ -1,231 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
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:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="24"
height="24"
viewBox="0 0 24 24"
version="1.1"
id="svg4"
sodipodi:docname="checkbox.svg"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
<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" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs8">
<linearGradient
inkscape:collect="always"
xlink:href="#hightlight"
id="linearGradient1632"
x1="18.000006"
y1="38.36219"
x2="31.999994"
y2="38.36219"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="hightlight"
osb:paint="solid">
<stop
style="stop-color:#5887fc;stop-opacity:1;"
offset="0"
id="stop1628" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#dark_checked_bg"
id="linearGradient1590"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.99167598,0,0.37759569)"
x1="24"
y1="45.362179"
x2="24"
y2="32.253059" />
<linearGradient
id="dark_checked_bg"
osb:paint="gradient">
<stop
style="stop-color:#3458c0;stop-opacity:1"
offset="0"
id="stop1580" />
<stop
style="stop-color:#3d67e3;stop-opacity:1"
offset="1"
id="stop1582" />
</linearGradient>
<filter
style="color-interpolation-filters:sRGB"
inkscape:label="Drop Shadow"
id="filter1536">
<feFlood
flood-opacity="0.352941"
flood-color="rgb(0,0,0)"
result="flood"
id="feFlood1526" />
<feComposite
in="flood"
in2="SourceGraphic"
operator="in"
result="composite1"
id="feComposite1528" />
<feGaussianBlur
in="composite1"
stdDeviation="0"
result="blur"
id="feGaussianBlur1530" />
<feOffset
dx="0"
dy="0.5"
result="offset"
id="feOffset1532" />
<feComposite
in="SourceGraphic"
in2="offset"
operator="over"
result="composite2"
id="feComposite1534" />
</filter>
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1366"
inkscape:window-height="704"
id="namedview6"
showgrid="false"
inkscape:zoom="9.8333333"
inkscape:cx="12"
inkscape:cy="12"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg4" />
<g
transform="translate(-32,3.6378183)"
style="display:inline;opacity:1"
id="checkbox-checked-dark"
inkscape:label="#g10758">
<g
inkscape:label="#g22047"
id="checkbox-unchecked-5-59"
style="display:inline"
transform="translate(19)">
<g
id="sdsd-7-54"
inkscape:label="#g21853">
<g
transform="translate(0,-30)"
inkscape:label="#g14325"
id="scdsdcd-5-8">
<g
transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)"
id="g15812-6-6-1-5-4"
style="display:inline">
<g
style="display:inline"
id="g5489-2-9-6-8-8-53-5"
transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)">
<g
id="g5428-8-1-4-0-0-4-2" />
</g>
</g>
<rect
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
id="rect13523-7-11"
width="16"
height="16"
x="17"
y="30.362183" />
<g
id="g5400-6-68">
<rect
ry="2.2857065"
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.12000002;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.14285803;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:fill markers stroke;enable-background:accumulate"
id="rect1924"
width="16"
height="16.000002"
x="17"
y="30.362181"
rx="2.2857096" />
<rect
rx="1.9999943"
y="31.362196"
x="18.000006"
height="13.99999"
width="13.999989"
id="rect5147-9-1-5-7-6-7-4"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient1632);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:fill markers stroke;enable-background:accumulate"
ry="1.9999917" />
<rect
ry="1.8571372"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient1590);fill-opacity:1;stroke:none;stroke-width:0.96399999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:fill markers stroke;enable-background:accumulate"
id="rect1578"
width="13.999989"
height="13.000006"
x="18.000006"
y="32.362179"
rx="1.9999943" />
</g>
</g>
</g>
</g>
<g
inkscape:label="Ebene 1"
id="checkbox-checked-dark-7-37"
transform="translate(36,-1036)"
style="display:inline">
<g
id="g3981-6-4-97"
transform="rotate(45,-3.2604448,1033.6624)"
style="opacity:0.85;fill:#1a1a1a;fill-opacity:1" />
<g
id="g4049-2-5"
transform="rotate(45,7.4999938,1026.3622)">
<g
id="g4056-7-6"
transform="translate(12.374375,11.531233)">
<g
id="g3981-0-8"
transform="translate(-3,-4.9999826)"
style="fill:#3b3c3e;fill-opacity:1">
<path
style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter1536)"
d="m 154.15625,15.880859 c -0.25562,0 -0.51116,0.0971 -0.70703,0.292969 l -3.53516,3.535156 -1.47851,-1.476562 c -0.35638,-0.356375 -0.95788,-0.329234 -1.34961,0.0625 -0.39174,0.391734 -0.42083,0.995188 -0.0645,1.351562 l 2.18555,2.183594 0.0644,0.06445 c 0.35638,0.356375 0.95788,0.327281 1.34961,-0.06445 l 4.24219,-4.242187 c 0.39174,-0.391738 0.39174,-1.022326 0,-1.414063 -0.19587,-0.195868 -0.45141,-0.292969 -0.70703,-0.292969 z"
transform="rotate(-45,1304.0439,694.22022)"
id="rect3977-39-90"
inkscape:connector-curvature="0" />
</g>
<rect
style="fill:#eeeeee;fill-opacity:0;stroke:none"
id="rect4047-81-5"
width="3"
height="1"
x="5"
y="-8"
transform="translate(0,1036.3622)" />
</g>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 8 KiB

View file

@ -1,216 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
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:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="24"
height="24"
viewBox="0 0 24 24"
version="1.1"
id="svg4"
sodipodi:docname="radiobutton.svg"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
<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" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs8">
<linearGradient
inkscape:collect="always"
xlink:href="#hightlight"
id="linearGradient1650"
x1="51.610752"
y1="141.02211"
x2="80.995743"
y2="141.02211"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="hightlight"
osb:paint="solid">
<stop
style="stop-color:#5887fc;stop-opacity:1;"
offset="0"
id="stop1628" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#dark_checked_bg"
id="linearGradient1586"
gradientUnits="userSpaceOnUse"
x1="51.610752"
y1="141.02211"
x2="80.995743"
y2="141.02211"
gradientTransform="matrix(1,0,0,0.92857215,0,11.105721)" />
<linearGradient
id="dark_checked_bg"
osb:paint="gradient">
<stop
style="stop-color:#3458c0;stop-opacity:1"
offset="0"
id="stop1580" />
<stop
style="stop-color:#3d67e3;stop-opacity:1"
offset="1"
id="stop1582" />
</linearGradient>
<filter
style="color-interpolation-filters:sRGB"
inkscape:label="Drop Shadow"
id="filter1488">
<feFlood
flood-opacity="0.352941"
flood-color="rgb(0,0,0)"
result="flood"
id="feFlood1478" />
<feComposite
in="flood"
in2="SourceGraphic"
operator="in"
result="composite1"
id="feComposite1480" />
<feGaussianBlur
in="composite1"
stdDeviation="0"
result="blur"
id="feGaussianBlur1482" />
<feOffset
dx="0"
dy="0.5"
result="offset"
id="feOffset1484" />
<feComposite
in="SourceGraphic"
in2="offset"
operator="over"
result="composite2"
id="feComposite1486" />
</filter>
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1366"
inkscape:window-height="704"
id="namedview6"
showgrid="true"
inkscape:zoom="9.8333333"
inkscape:cx="5.9491525"
inkscape:cy="12"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg4">
<inkscape:grid
type="xygrid"
id="grid877" />
</sodipodi:namedview>
<g
transform="translate(-112,3.6378183)"
style="display:inline;opacity:1"
id="radio-checked-dark"
inkscape:label="#g11094">
<g
transform="translate(19.004264,-4.6992607e-6)"
inkscape:label="#g10975"
id="radio-unchecked-2-1"
style="display:inline">
<g
id="g10964-6-63">
<g
inkscape:label="#g15805"
transform="matrix(0.93617253,0,0,0.93566004,-96.78315,-244.76084)"
id="radio-unchecked2-0-8"
style="display:inline">
<g
style="display:inline;opacity:0.06000001;fill:#000000;fill-opacity:1"
id="g7025-09-0-5"
transform="translate(0,1.0687628)">
<g
transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)"
id="g5489-2-9-3-2-6-2"
style="display:inline;fill:#000000;fill-opacity:1">
<g
id="g5428-8-1-7-5-4-7"
style="fill:#000000;fill-opacity:1" />
</g>
</g>
<rect
y="261.97873"
x="206.99057"
height="17.100227"
width="17.090866"
id="rect14348-4-8-5"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
<g
id="g7025-09-09">
<g
transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)"
id="g5489-2-9-3-2-28"
style="display:inline">
<g
id="g5428-8-1-7-5-64">
<rect
ry="16.525213"
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.12000002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
id="rect1934"
width="33.582863"
height="33.050426"
x="49.511818"
y="124.49688"
rx="16.791431" />
<rect
rx="14.692495"
y="126.56255"
x="51.610752"
height="28.919107"
width="29.384991"
id="rect5147-9-1-7-2-0"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient1650);fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
ry="14.459554" />
<rect
ry="13.426739"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient1586);fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
id="rect1574"
width="29.384991"
height="26.853477"
x="51.610752"
y="128.62819"
rx="14.692495" />
</g>
</g>
</g>
</g>
</g>
</g>
<rect
rx="1.9988754"
y="6.3621826"
x="122"
height="4"
width="4"
id="use15101-5-7-55"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.08838987;marker:none;filter:url(#filter1488);enable-background:accumulate"
ry="2" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 7.3 KiB

View file

@ -1,130 +1,12 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<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"
width="35"
height="200"
id="svg2"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="add-workspace-active.svg">
<defs
id="defs4">
<filter
inkscape:collect="always"
style="color-interpolation-filters:sRGB"
id="filter4154"
x="-0.13200003"
width="1.2640001"
y="-0.020842104"
height="1.0416842">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="1.6500004"
id="feGaussianBlur4156" />
</filter>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="8"
inkscape:cx="-19.280981"
inkscape:cy="24.179781"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:window-width="1280"
inkscape:window-height="734"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
showguides="false"
inkscape:guide-bbox="true"
inkscape:snap-bbox="true"
inkscape:bbox-paths="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:bbox-nodes="true">
<inkscape:grid
type="xygrid"
id="grid3040"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
<sodipodi:guide
orientation="0,1"
position="20,100"
id="guide3893" />
<sodipodi:guide
orientation="1,0"
position="18,190"
id="guide3895" />
</sodipodi:namedview>
<metadata
id="metadata7">
<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:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-852.36218)">
<path
id="rect4694-5"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.9;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:0.43999999;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;filter:url(#filter4154)"
d="m 7.2000008,858.36215 27.9999992,0 0,190.00005 -27.9999992,0 c -1.108,0 -2,-0.892 -2,-2 l 0,-186.00005 c 0,-1.108 0.892,-2 2,-2 z"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sccssss" />
<path
id="rect4694"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4285F4;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 7,857.36218 28,0 0,190.00002 -28,0 c -1.108,0 -2,-0.892 -2,-2 L 5,859.36218 c 0,-1.108 0.892,-2 2,-2 z"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sccssss" />
<g
transform="translate(0,-0.9999969)"
id="g3917-7"
style="fill:#eceff1;fill-opacity:1;opacity:0.5;stroke:none;stroke-opacity:1" />
<path
id="rect4804"
transform="translate(0,852.36218)"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#eceff1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 18,94 c -0.554,0 -1,0.446 -1,1 l 0,4 -4,0 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 4,0 0,4 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 l 0,-4 4,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 l -4,0 0,-4 c 0,-0.554 -0.446,-1 -1,-1 z m 8,6 a 8,8 0 0 1 -8,8 8,8 0 0 1 -8,-8 8,8 0 0 1 8,-8 8,8 0 0 1 8,8 z" />
</g>
<svg width="35" height="200" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter4154" x="-.132" y="-.020842" width="1.264" height="1.0417" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="1.6500004"/>
</filter>
</defs>
<g transform="translate(0 -852.36)" shape-rendering="auto">
<path d="m7.2 858.36h28v190h-28c-1.108 0-2-0.892-2-2v-186c0-1.108 0.892-2 2-2z" color="#000000" color-rendering="auto" fill="#000000" fill-opacity=".44" filter="url(#filter4154)" image-rendering="auto" opacity=".9" solid-color="#000000" style="isolation:auto;mix-blend-mode:normal"/>
<path d="m7 857.36h28v190h-28c-1.108 0-2-0.892-2-2v-186c0-1.108 0.892-2 2-2z" color="#000000" color-rendering="auto" fill="#0860f2" image-rendering="auto" solid-color="#000000" style="isolation:auto;mix-blend-mode:normal"/>
<path transform="translate(0 852.36)" d="m18 94c-0.554 0-1 0.446-1 1v4h-4c-0.554 0-1 0.446-1 1s0.446 1 1 1h4v4c0 0.554 0.446 1 1 1s1-0.446 1-1v-4h4c0.554 0 1-0.446 1-1s-0.446-1-1-1h-4v-4c0-0.554-0.446-1-1-1zm8 6a8 8 0 0 1-8 8 8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8z" color="#000000" color-rendering="auto" fill="#eceff1" image-rendering="auto" solid-color="#000000" style="isolation:auto;mix-blend-mode:normal"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 5.9 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -0,0 +1,32 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<linearGradient id="j" x1="18" x2="32" y1="38.362" y2="38.362" gradientUnits="userSpaceOnUse">
<stop stop-color="#0860f2" offset="0"/>
</linearGradient>
<linearGradient id="be" x1="24" x2="24" y1="45.362" y2="32.253" gradientTransform="matrix(1 0 0 .99168 0 .3776)" gradientUnits="userSpaceOnUse">
<stop stop-color="#000000" stop-opacity=".25" offset="0"/>
<stop stop-color="#000000" stop-opacity=".1" offset="1"/>
</linearGradient>
</defs>
<g id="checkbox-checked-dark" transform="translate(-32 3.638)">
<g transform="translate(19)">
<g transform="translate(0,-30)">
<rect x="17" y="30.362" width="16" height="16" color="#000000" fill="none"/>
<rect x="17" y="30.362" width="16" height="16" rx="2.2857" ry="2.2857" color="#000000" opacity=".12" style="paint-order:fill markers stroke"/>
<rect x="18" y="31.362" width="14" height="14" rx="2" ry="2" color="#000000" fill="url(#j)" style="paint-order:fill markers stroke"/>
<rect x="18" y="31.362" width="14" height="14" rx="2" ry="2" color="#000000" fill="#ffffff" opacity=".1" style="paint-order:fill markers stroke"/>
<rect x="18" y="32.362" width="14" height="13" rx="2" ry="1.8571" color="#000000" fill="url(#be)" style="paint-order:fill markers stroke"/>
</g>
</g>
<g transform="translate(36,-1036)">
<g transform="rotate(45,7.5,1026.4)">
<g transform="translate(12.374,11.531)">
<g transform="translate(-3,-5)" fill="#3b3c3e">
<path transform="rotate(-45,1304,694.22)" d="m154.16 15.881c-0.25562 0-0.51116 0.0971-0.70703 0.29297l-3.5352 3.5352-1.4785-1.4766c-0.35638-0.35638-0.95788-0.32923-1.3496 0.0625-0.39174 0.39173-0.42083 0.99519-0.0645 1.3516l2.1856 2.1836 0.0644 0.06445c0.35638 0.35638 0.95788 0.32728 1.3496-0.06445l4.2422-4.2422c0.39174-0.39174 0.39174-1.0223 0-1.4141-0.19587-0.19587-0.45141-0.29297-0.70703-0.29297z" fill="#ffffff" filter="url(#bn)"/>
</g>
<rect transform="translate(0,1036.4)" x="5" y="-8" width="3" height="1" fill-opacity="0"/>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -1,100 +1,10 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
<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"
version="1.0"
id="Foreground"
x="0px"
y="0px"
width="26"
height="26"
viewBox="0 0 18.909091 18.909091"
enable-background="new 0 0 16 16"
xml:space="preserve"
sodipodi:version="0.32"
inkscape:version="0.91 r13725"
sodipodi:docname="close-active.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"><metadata
id="metadata2399"><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="defs2397" /><sodipodi:namedview
inkscape:window-height="720"
inkscape:window-width="1364"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#3e3e3e"
id="base"
showgrid="false"
inkscape:zoom="11.313708"
inkscape:cx="6.9788731"
inkscape:cy="7.4229136"
inkscape:window-x="0"
inkscape:window-y="23"
inkscape:current-layer="Foreground"
showguides="true"
inkscape:guide-bbox="true"
borderlayer="true"
inkscape:showpageshadow="false"
inkscape:window-maximized="0"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:snap-bbox="true"
inkscape:bbox-paths="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"><inkscape:grid
type="xygrid"
id="grid11246"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="-3.6363603"
originy="-2.9090857" /></sodipodi:namedview><g
id="g3175-4"
transform="translate(1.8442616,0.64207471)"
style="opacity:0.8"><g
id="g3172-6" /></g><circle
style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:#f70505;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path3808-4"
cx="9.4545488"
cy="10.181814"
r="8" /><circle
style="opacity:1;fill:#d8354a;fill-opacity:1;stroke:#f70505;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path3808"
cx="9.4545488"
cy="9.454545"
r="8" /><g
inkscape:label="window-close"
id="g27275-6-6-6"
style="display:inline;fill:#000000;fill-opacity:1"
transform="matrix(0.72727272,0,0,0.72727272,4.1762041,2.78384)"><g
transform="translate(-41,-760)"
id="g27277-1-1-2"
style="display:inline;fill:#000000;fill-opacity:1" /></g><g
inkscape:label="window-close"
id="g27275-6-6"
style="display:inline;fill:#ffffff;fill-opacity:1"
transform="matrix(0.72727273,0,0,0.72727273,4.2045495,3.5383247)"><g
transform="translate(-41,-760)"
id="g27277-1-1"
style="display:inline;fill:#ffffff;fill-opacity:1"><path
d="m 44.226475,764.17222 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 l 2.28125,2.28125 2.3125,-2.28125 c 0.265625,-0.2305 0.446672,-0.3055 0.6875,-0.3125 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 c 0.188188,0.18817 0.281242,0.45345 0.28125,0.71875 l 0,1 -1,0 c -0.265301,-1e-5 -0.530586,-0.0931 -0.71875,-0.28125 l -2.28125,-2.28125 -2.28125,2.28125 c -0.188164,0.18819 -0.45346,0.28125 -0.71875,0.28125 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 -2.28125,-2.28125 c -0.210742,-0.19463 -0.30316,-0.46925 -0.28125,-0.75 l 0,-1 z"
inkscape:connector-curvature="0"
id="path27279-0-5"
style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new"
sodipodi:nodetypes="ccsccccccccccccccccccccccc" /></g></g></svg>
<svg id="Foreground" width="26" height="26" enable-background="new 0 0 16 16" version="1.0" viewBox="0 0 18.909 18.909" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter839" x="-.048" y="-.048" width="1.096" height="1.096" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.32"/>
</filter>
</defs>
<circle cx="9.4545" cy="10.182" r="8" fill="#000000" filter="url(#filter839)" opacity=".1" stroke-width="0"/>
<circle cx="9.4545" cy="9.4545" r="8" fill="#d8354a" stroke-width="0"/>
<path d="m6.1115 5.7478c-0.092952 1e-7 -0.18588 0.035309-0.2571 0.10653-0.14245 0.14245-0.14245 0.37175 0 0.5142l3.0852 3.0866-3.0852 3.0852c-0.14245 0.14245-0.14245 0.37175 0 0.5142 0.14245 0.14245 0.37317 0.14245 0.51562 0l3.0852-3.0852 3.0852 3.0852c0.14245 0.14245 0.37175 0.14245 0.5142 0 0.14245-0.14245 0.14245-0.37175 0-0.5142l-3.0852-3.0852 3.0852-3.0866c0.14245-0.14245 0.14245-0.37175 0-0.5142-0.14245-0.14245-0.37175-0.14245-0.5142 0l-3.0852 3.0852-3.0852-3.0852c-0.071224-0.071224-0.16557-0.10653-0.25852-0.10653z" fill="#ffffff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.3606" style="paint-order:markers stroke fill"/>
</svg>

Before

Width:  |  Height:  |  Size: 4.9 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -1,100 +1,10 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
<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"
version="1.0"
id="Foreground"
x="0px"
y="0px"
width="26"
height="26"
viewBox="0 0 18.909091 18.909091"
enable-background="new 0 0 16 16"
xml:space="preserve"
sodipodi:version="0.32"
inkscape:version="0.91 r13725"
sodipodi:docname="close-hover.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"><metadata
id="metadata2399"><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="defs2397" /><sodipodi:namedview
inkscape:window-height="720"
inkscape:window-width="1364"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#3e3e3e"
id="base"
showgrid="false"
inkscape:zoom="11.313708"
inkscape:cx="6.9788731"
inkscape:cy="7.4229136"
inkscape:window-x="0"
inkscape:window-y="23"
inkscape:current-layer="Foreground"
showguides="true"
inkscape:guide-bbox="true"
borderlayer="true"
inkscape:showpageshadow="false"
inkscape:window-maximized="0"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:snap-bbox="true"
inkscape:bbox-paths="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"><inkscape:grid
type="xygrid"
id="grid11246"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="-3.6363603"
originy="-2.9090857" /></sodipodi:namedview><g
id="g3175-4"
transform="translate(1.8442616,0.64207471)"
style="opacity:0.8"><g
id="g3172-6" /></g><circle
style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:#f70505;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path3808-4"
cx="9.4545488"
cy="10.181814"
r="8" /><circle
style="opacity:1;fill:#ff7a80;fill-opacity:1;stroke:#f70505;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path3808"
cx="9.4545488"
cy="9.454545"
r="8" /><g
inkscape:label="window-close"
id="g27275-6-6-6"
style="display:inline;fill:#000000;fill-opacity:1"
transform="matrix(0.72727272,0,0,0.72727272,4.1762041,2.78384)"><g
transform="translate(-41,-760)"
id="g27277-1-1-2"
style="display:inline;fill:#000000;fill-opacity:1" /></g><g
inkscape:label="window-close"
id="g27275-6-6"
style="display:inline;fill:#ffffff;fill-opacity:1"
transform="matrix(0.72727273,0,0,0.72727273,4.2045495,3.5383247)"><g
transform="translate(-41,-760)"
id="g27277-1-1"
style="display:inline;fill:#ffffff;fill-opacity:1"><path
d="m 44.226475,764.17222 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 l 2.28125,2.28125 2.3125,-2.28125 c 0.265625,-0.2305 0.446672,-0.3055 0.6875,-0.3125 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 c 0.188188,0.18817 0.281242,0.45345 0.28125,0.71875 l 0,1 -1,0 c -0.265301,-1e-5 -0.530586,-0.0931 -0.71875,-0.28125 l -2.28125,-2.28125 -2.28125,2.28125 c -0.188164,0.18819 -0.45346,0.28125 -0.71875,0.28125 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 -2.28125,-2.28125 c -0.210742,-0.19463 -0.30316,-0.46925 -0.28125,-0.75 l 0,-1 z"
inkscape:connector-curvature="0"
id="path27279-0-5"
style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new"
sodipodi:nodetypes="ccsccccccccccccccccccccccc" /></g></g></svg>
<svg id="Foreground" width="26" height="26" enable-background="new 0 0 16 16" version="1.0" viewBox="0 0 18.909 18.909" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter839" x="-.048" y="-.048" width="1.096" height="1.096" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.32"/>
</filter>
</defs>
<circle cx="9.4545" cy="10.182" r="8" fill="#000000" filter="url(#filter839)" opacity=".1" stroke-width="0"/>
<circle cx="9.4545" cy="9.4545" r="8" fill="#ff7a80" stroke-width="0"/>
<path d="m6.1115 5.7478c-0.092952 1e-7 -0.18588 0.035309-0.2571 0.10653-0.14245 0.14245-0.14245 0.37175 0 0.5142l3.0852 3.0866-3.0852 3.0852c-0.14245 0.14245-0.14245 0.37175 0 0.5142 0.14245 0.14245 0.37317 0.14245 0.51562 0l3.0852-3.0852 3.0852 3.0852c0.14245 0.14245 0.37175 0.14245 0.5142 0 0.14245-0.14245 0.14245-0.37175 0-0.5142l-3.0852-3.0852 3.0852-3.0866c0.14245-0.14245 0.14245-0.37175 0-0.5142-0.14245-0.14245-0.37175-0.14245-0.5142 0l-3.0852 3.0852-3.0852-3.0852c-0.071224-0.071224-0.16557-0.10653-0.25852-0.10653z" fill="#ffffff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.3606" style="paint-order:markers stroke fill"/>
</svg>

Before

Width:  |  Height:  |  Size: 4.9 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -1,100 +1,10 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
<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"
version="1.0"
id="Foreground"
x="0px"
y="0px"
width="26"
height="26"
viewBox="0 0 18.909091 18.909091"
enable-background="new 0 0 16 16"
xml:space="preserve"
sodipodi:version="0.32"
inkscape:version="0.91 r13725"
sodipodi:docname="close.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"><metadata
id="metadata2399"><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="defs2397" /><sodipodi:namedview
inkscape:window-height="720"
inkscape:window-width="1364"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#3e3e3e"
id="base"
showgrid="false"
inkscape:zoom="11.313708"
inkscape:cx="6.9788731"
inkscape:cy="7.4229136"
inkscape:window-x="0"
inkscape:window-y="23"
inkscape:current-layer="Foreground"
showguides="true"
inkscape:guide-bbox="true"
borderlayer="true"
inkscape:showpageshadow="false"
inkscape:window-maximized="0"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:snap-bbox="true"
inkscape:bbox-paths="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"><inkscape:grid
type="xygrid"
id="grid11246"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="-3.6363603"
originy="-2.9090857" /></sodipodi:namedview><g
id="g3175-4"
transform="translate(1.8442616,0.64207471)"
style="opacity:0.8"><g
id="g3172-6" /></g><circle
style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:#f70505;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path3808-4"
cx="9.4545488"
cy="10.181814"
r="8" /><circle
style="opacity:1;fill:#f75a61;fill-opacity:1;stroke:#f70505;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path3808"
cx="9.4545488"
cy="9.454545"
r="8" /><g
inkscape:label="window-close"
id="g27275-6-6-6"
style="display:inline;fill:#000000;fill-opacity:1"
transform="matrix(0.72727272,0,0,0.72727272,4.1762041,2.78384)"><g
transform="translate(-41,-760)"
id="g27277-1-1-2"
style="display:inline;fill:#000000;fill-opacity:1" /></g><g
inkscape:label="window-close"
id="g27275-6-6"
style="display:inline;fill:#ffffff;fill-opacity:1"
transform="matrix(0.72727273,0,0,0.72727273,4.2045495,3.5383247)"><g
transform="translate(-41,-760)"
id="g27277-1-1"
style="display:inline;fill:#ffffff;fill-opacity:1"><path
d="m 44.226475,764.17222 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 l 2.28125,2.28125 2.3125,-2.28125 c 0.265625,-0.2305 0.446672,-0.3055 0.6875,-0.3125 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 c 0.188188,0.18817 0.281242,0.45345 0.28125,0.71875 l 0,1 -1,0 c -0.265301,-1e-5 -0.530586,-0.0931 -0.71875,-0.28125 l -2.28125,-2.28125 -2.28125,2.28125 c -0.188164,0.18819 -0.45346,0.28125 -0.71875,0.28125 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 -2.28125,-2.28125 c -0.210742,-0.19463 -0.30316,-0.46925 -0.28125,-0.75 l 0,-1 z"
inkscape:connector-curvature="0"
id="path27279-0-5"
style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new"
sodipodi:nodetypes="ccsccccccccccccccccccccccc" /></g></g></svg>
<svg id="Foreground" width="26" height="26" enable-background="new 0 0 16 16" version="1.0" viewBox="0 0 18.909 18.909" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="filter879" x="-.048" y="-.048" width="1.096" height="1.096" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.32"/>
</filter>
</defs>
<circle cx="9.4545" cy="10.182" r="8" fill="#000000" filter="url(#filter879)" opacity=".1" stroke-width="0"/>
<circle cx="9.4545" cy="9.4545" r="8" fill="#f75a61" stroke-width="0"/>
<path d="m6.1115 5.7478c-0.092952 1e-7 -0.18588 0.035309-0.2571 0.10653-0.14245 0.14245-0.14245 0.37175 0 0.5142l3.0852 3.0866-3.0852 3.0852c-0.14245 0.14245-0.14245 0.37175 0 0.5142 0.14245 0.14245 0.37317 0.14245 0.51562 0l3.0852-3.0852 3.0852 3.0852c0.14245 0.14245 0.37175 0.14245 0.5142 0 0.14245-0.14245 0.14245-0.37175 0-0.5142l-3.0852-3.0852 3.0852-3.0866c0.14245-0.14245 0.14245-0.37175 0-0.5142-0.14245-0.14245-0.37175-0.14245-0.5142 0l-3.0852 3.0852-3.0852-3.0852c-0.071224-0.071224-0.16557-0.10653-0.25852-0.10653z" fill="#ffffff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.3606" style="paint-order:markers stroke fill"/>
</svg>

Before

Width:  |  Height:  |  Size: 4.8 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -1,89 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<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"
width="104"
height="104"
id="svg2"
version="1.1"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="corner-ripple.svg">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.875"
inkscape:cx="-12.731584"
inkscape:cy="51.861491"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:window-width="1366"
inkscape:window-height="709"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:document-rotation="0">
<inkscape:grid
type="xygrid"
id="grid2985"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
</sodipodi:namedview>
<metadata
id="metadata7">
<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:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-948.3622)">
<circle
style="opacity:0.5;fill:#6887cd;fill-opacity:1;stroke:none"
id="corner-ripple"
inkscape:label="#path2987"
cx="52"
cy="1000.3622"
r="48" />
</g>
<svg width="104" height="104" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(0 -948.36)">
<circle id="corner-ripple" cx="52" cy="1000.4" r="48" fill="#0860f2" opacity=".25"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 218 B

View file

@ -1,105 +1,12 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
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:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="34"
height="34"
viewBox="0 0 31.875001 31.874999"
id="svg6927"
version="1.1"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="menu-hover.svg">
<defs
id="defs6929">
<linearGradient
id="selected_bg_color"
osb:paint="solid">
<stop
style="stop-color:#5294e2;stop-opacity:1;"
offset="0"
id="stop4138" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#selected_bg_color"
id="linearGradient4140"
x1="1185"
y1="108"
x2="1185"
y2="141"
gradientUnits="userSpaceOnUse" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="22.4"
inkscape:cx="8.3199885"
inkscape:cy="17.087683"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1366"
inkscape:window-height="716"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:snap-bbox="true"
inkscape:bbox-paths="false"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-midpoints="false"
inkscape:snap-bbox-edge-midpoints="true"
units="px">
<inkscape:grid
type="xygrid"
id="grid4140"
originx="0"
originy="1.2503989e-05" />
</sodipodi:namedview>
<metadata
id="metadata6932">
<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>
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-137,-383.48721)">
<g
transform="matrix(0.10026523,0,0,0.96590909,33.557827,279.16903)"
id="g6908"
style="fill:url(#linearGradient4140);fill-opacity:1;stroke-width:0.84386438">
<rect
y="108"
x="1059.736"
height="33"
width="261.80566"
id="rect5271"
style="opacity:1;fill:#315bef;fill-opacity:1;stroke:none;stroke-width:0.84386438;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" />
</g>
<svg width="34" height="34" version="1.1" viewBox="0 0 31.875 31.875" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<linearGradient id="linearGradient4140" x1="1185" x2="1185" y1="108" y2="141" gradientUnits="userSpaceOnUse">
<stop stop-color="#5294e2" offset="0"/>
</linearGradient>
</defs>
<g transform="translate(-137 -383.49)">
<g transform="matrix(.10027 0 0 .96591 33.558 279.17)" fill="url(#linearGradient4140)" stroke-width=".84386">
<rect x="1059.7" y="108" width="261.81" height="33" fill="#0860f2"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 641 B

View file

@ -0,0 +1,25 @@
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<linearGradient id="ax" x1="51.611" x2="80.996" y1="141.02" y2="141.02" gradientUnits="userSpaceOnUse">
<stop stop-color="#0860f2" offset="0"/>
</linearGradient>
<linearGradient id="bg" x1="66.31" x2="66.31" y1="155.48" y2="126.56" gradientTransform="matrix(1 0 0 .92857 0 11.106)" gradientUnits="userSpaceOnUse">
<stop stop-color="#000000" stop-opacity=".25" offset="0"/>
<stop stop-color="#000000" stop-opacity=".1" offset="1"/>
</linearGradient>
</defs>
<g id="radio-checked-dark" transform="translate(-112 3.6376)">
<g transform="translate(19.004)">
<g transform="matrix(.93617 0 0 .93566 -96.783 -244.76)">
<rect x="206.99" y="261.98" width="17.091" height="17.1" color="#000000" fill="none"/>
<g transform="matrix(.50892 0 0 .5174 181.79 197.56)">
<rect x="49.512" y="124.5" width="33.583" height="33.05" rx="16.791" ry="16.525" color="#000000" opacity=".12"/>
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="url(#ax)" stroke-width="0"/>
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="#ffffff" opacity=".1" stroke-width="0"/>
<rect x="51.611" y="128.63" width="29.385" height="26.853" rx="14.692" ry="13.427" color="#000000" fill="url(#bg)" stroke-width="0"/>
</g>
</g>
</g>
<rect x="122" y="6.3622" width="4" height="4" rx="1.9989" ry="2" color="#000000" fill="#ffffff" filter="url(#bp)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -1,88 +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"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="50"
height="20"
viewBox="0 0 50 20"
version="1.1"
id="svg6"
sodipodi:docname="toggle-off.svg"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
<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" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1366"
inkscape:window-height="704"
id="namedview8"
showgrid="false"
inkscape:zoom="4.775"
inkscape:cx="19.157491"
inkscape:cy="18.778767"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg6" />
<circle
cx="10"
cy="10"
r="6"
id="circle4"
style="fill:#ffffff" />
<g
style="display:inline"
transform="translate(0.02128202,-1032.3623)"
id="toggle-off"
inkscape:label="Layer 1">
<g
transform="translate(-5.1851991,-0.59123127)"
id="g4562">
<g
id="g4556"
transform="matrix(1.0109881,0,0,0.96970664,-0.43462179,32.056001)">
<path
id="rect4140"
d="m 15.787004,1034.4777 h 29 c 4.432,0 8,3.568 8,8 0,4.432 -3.568,8 -8,8 h -29 c -4.432,0 -8.0000005,-3.568 -8.0000005,-8 0,-4.432 3.5680005,-8 8.0000005,-8 z"
style="fill:#535353;fill-opacity:1;stroke:#555555;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
<circle
r="8.2498779"
cy="1042.4775"
cx="15.744821"
id="circle4587"
style="opacity:0.35;fill:#333333;fill-opacity:1;stroke:none;stroke-width:1.37497962" />
<circle
style="fill:#d8d8d8;fill-opacity:1;stroke:none;stroke-width:1.20311427"
id="circle4531"
cx="15.744821"
cy="1042.4775"
r="7.2186861" />
</g>
</g>
</g>
<svg width="40" height="24" version="1.1" viewBox="0 0 40 24" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="m" x="-.17328" y="-.17328" width="1.3466" height="1.3466" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="1.2996"/>
</filter>
<linearGradient id="a" x1="41" x2="41" y1="1032.4" y2="1050.4" gradientTransform="matrix(.88889 0 0 .88889 -25.444 -913.65)" gradientUnits="userSpaceOnUse">
<stop stop-color="#ffffff" offset="0"/>
</linearGradient>
</defs>
<rect x="1" y="2" width="38" height="20" rx="10" ry="10" fill="#000000" opacity=".25" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" style="paint-order:markers stroke fill"/>
<circle transform="matrix(.93214 0 0 .93214 -195.25 113.81)" cx="221.26" cy="-108.14" r="9" filter="url(#m)" opacity=".25"/>
<circle cx="11" cy="12" r="8" fill="url(#a)" stroke-width=".88889"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 896 B

View file

@ -1,153 +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"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="50"
height="20"
viewBox="0 0 50 20"
version="1.1"
id="svg6"
sodipodi:docname="toggle-on.svg"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
<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">
<linearGradient
gradientTransform="translate(14.787004,0.11552347)"
gradientUnits="userSpaceOnUse"
y2="1034.3622"
x2="15"
y1="1050.3622"
x1="15"
id="linearGradient4521"
xlink:href="#linearGradient4519"
inkscape:collect="always" />
<linearGradient
id="linearGradient4519"
inkscape:collect="always">
<stop
id="stop4515"
offset="0"
style="stop-color:#004bdb;stop-opacity:1" />
<stop
id="stop4517"
offset="1"
style="stop-color:#498dd5;stop-opacity:1" />
</linearGradient>
<linearGradient
gradientTransform="translate(14.787004,0.11552347)"
gradientUnits="userSpaceOnUse"
y2="1034.3622"
x2="19"
y1="1050.3622"
x1="19"
id="linearGradient4529"
xlink:href="#linearGradient4527"
inkscape:collect="always" />
<linearGradient
id="linearGradient4527"
inkscape:collect="always">
<stop
id="stop4523"
offset="0"
style="stop-color:#2100db;stop-opacity:1" />
<stop
id="stop4525"
offset="1"
style="stop-color:#277bd6;stop-opacity:1" />
</linearGradient>
<filter
height="1.0722142"
y="-0.036107175"
width="1.0717869"
x="-0.035893459"
id="filter4549"
style="color-interpolation-filters:sRGB"
inkscape:collect="always">
<feGaussianBlur
id="feGaussianBlur4551"
stdDeviation="0.21888099"
inkscape:collect="always" />
</filter>
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1366"
inkscape:window-height="704"
id="namedview8"
showgrid="true"
inkscape:zoom="4.775"
inkscape:cx="-26.507258"
inkscape:cy="13.936062"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg6">
<inkscape:grid
type="xygrid"
id="grid58" />
</sodipodi:namedview>
<circle
cx="30"
cy="10"
r="6"
id="circle4"
style="fill:#ffffff" />
<g
style="display:inline"
transform="translate(2.0514095e-5,-1032.3623)"
id="toggle-on"
inkscape:label="Layer 1">
<g
transform="translate(-5.1851991,-0.59123127)"
id="g4562-7">
<g
id="g4556-0"
transform="matrix(1.0109881,0,0,0.96970664,-0.43462179,32.056001)">
<path
id="rect4140-9"
d="m 15.787004,1034.4777 h 29 c 4.432,0 8,3.568 8,8 0,4.432 -3.568,8 -8,8 h -29 c -4.432,0 -8.0000005,-3.568 -8.0000005,-8 0,-4.432 3.5680005,-8 8.0000005,-8 z"
style="fill:url(#linearGradient4521);fill-opacity:1;stroke:url(#linearGradient4529);stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
<ellipse
transform="matrix(1.0073647,0,0,1.0073647,14.206039,-7.5823938)"
ry="7.2743769"
rx="7.3176894"
cy="1042.701"
cx="30.144405"
id="path4142"
style="fill:#00429b;fill-opacity:1;stroke:none;stroke-width:1.21599948;filter:url(#filter4549)" />
<circle
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.16666663"
id="circle4531-3"
cx="44.787003"
cy="1042.4777"
r="7" />
</g>
</g>
</g>
<svg width="40" height="24" version="1.1" viewBox="0 0 40 24" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="m" x="-.17328" y="-.17328" width="1.3466" height="1.3466" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="1.2996"/>
</filter>
<linearGradient id="a" x1="41" x2="41" y1="1032.4" y2="1050.4" gradientTransform="matrix(.88889 0 0 .88889 -7.4444 -913.65)" gradientUnits="userSpaceOnUse">
<stop stop-color="#ffffff" offset="0"/>
</linearGradient>
</defs>
<rect x="1" y="2" width="38" height="20" rx="10" ry="10" fill="#0860f2" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" style="paint-order:markers stroke fill"/>
<circle transform="matrix(.93214 0 0 .93214 -177.25 113.81)" cx="221.26" cy="-108.14" r="9" filter="url(#m)" opacity=".25"/>
<circle cx="29" cy="12" r="8" fill="url(#a)" stroke-width=".88889"/>
</svg>

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 882 B

View file

@ -0,0 +1,19 @@
#! /bin/bash
INKSCAPE="/usr/bin/inkscape"
OPTIPNG="/usr/bin/optipng"
SRC_FILE="thumbnail.svg"
[[ -f thumbnail-light.png ]] && rm -rf thumbnail-light.png
echo Rendering thumbnail-light.png
$INKSCAPE --export-id=thumbnail-light --export-id-only --export-filename=thumbnail-light.png $SRC_FILE >/dev/null
$OPTIPNG -o7 --quiet thumbnail-light.png
[[ -f thumbnail-dark.png ]] && rm -rf thumbnail-dark.png
echo Rendering thumbnail-dark.png
$INKSCAPE --export-id=thumbnail-dark --export-id-only --export-filename=thumbnail-dark.png $SRC_FILE >/dev/null
$OPTIPNG -o7 --quiet thumbnail-dark.png
exit 0

Binary file not shown.

Before

Width:  |  Height:  |  Size: 38 KiB

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 37 KiB

After

Width:  |  Height:  |  Size: 6 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 180 KiB

After

Width:  |  Height:  |  Size: 223 KiB

View file

@ -1,20 +1,18 @@
<svg width="24" height="24" fill="#000000" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" xmlns:xlink="http://www.w3.org/1999/xlink">
<svg width="24" height="24" fill="#000000" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<linearGradient id="ay" x1="18" x2="32" y1="38.362" y2="38.362" gradientTransform="matrix(1.2857 0 0 1.2857 -20.143 -37.323)" gradientUnits="userSpaceOnUse">
<stop stop-color="#5887fc" offset="0"/>
</linearGradient>
<linearGradient id="be" x1="24" x2="24" y1="45.362" y2="32.253" gradientTransform="matrix(1.2857 0 0 1.2968 -20.143 -37.826)" gradientUnits="userSpaceOnUse">
<stop stop-color="#3458c0" offset="0"/>
<stop stop-color="#3d67e3" offset="1"/>
</linearGradient>
<filter id="filter946" x="-.094335" y="-.12629" width="1.1887" height="1.2526" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.39306292"/>
</filter>
<linearGradient id="linearGradient866" x1="11" x2="11" y1="21" y2="4" gradientUnits="userSpaceOnUse">
<stop stop-color="#000000" stop-opacity=".35" offset="0"/>
<stop stop-color="#000000" stop-opacity=".1" offset="1"/>
</linearGradient>
</defs>
<rect x="4" y="4" width="16" height="16" color="#000000" fill="none"/>
<rect x="2" y="2" width="20" height="20" rx="4" ry="4" color="#000000" opacity=".12" stroke-width="1.25" style="paint-order:fill markers stroke"/>
<rect x="3" y="3" width="18" height="18" rx="3" ry="3" color="#000000" fill="url(#ay)" stroke-width="1.2857" style="paint-order:fill markers stroke"/>
<rect x="3" y="4" width="18" height="17" rx="3" ry="3" color="#000000" fill="url(#be)" stroke-width="1.2966" style="paint-order:fill markers stroke"/>
<rect x="3" y="3" width="18" height="18" rx="3" ry="3" color="#000000" fill="#0860f2" stroke-width="1.2857" style="paint-order:fill markers stroke"/>
<rect x="3" y="3" width="18" height="18" rx="3" ry="3" color="#000000" fill="#ffffff" opacity=".1" stroke-width="1.2857" style="paint-order:fill markers stroke"/>
<rect x="3" y="4" width="18" height="17" rx="3" ry="3" color="#000000" fill="url(#linearGradient866)" stroke-width="1.2966" style="paint-order:fill markers stroke"/>
<rect transform="rotate(45)" x="13.79" y="1.1834" width="3" height="1" fill-opacity="0"/>
<path d="m15.806 9.1937c-0.30486 0-0.60961 0.1158-0.84321 0.3494l-4.2161 4.2161-1.7633-1.761c-0.42502-0.42502-1.1424-0.39264-1.6095 0.07454-0.46719 0.46718-0.50189 1.1869-0.076923 1.6119l2.6066 2.6042 0.0768 0.07686c0.42502 0.42502 1.1424 0.39032 1.6095-0.07686l5.0593-5.0593c0.46719-0.46719 0.46719-1.2192 0-1.6865-0.2336-0.2336-0.53836-0.3494-0.84321-0.3494z" fill="#000000" filter="url(#filter946)" opacity=".15" stroke-width="1.1926"/>
<path d="m15.806 8.2653c-0.30486 0-0.60961 0.1158-0.84321 0.3494l-4.2161 4.2161-1.7633-1.761c-0.42502-0.42502-1.1424-0.39264-1.6095 0.07454-0.46719 0.46718-0.50189 1.1869-0.076923 1.6119l2.6066 2.6042 0.0768 0.07686c0.42502 0.42502 1.1424 0.39032 1.6095-0.07686l5.0593-5.0593c0.46719-0.46719 0.46719-1.2192 0-1.6865-0.2336-0.2336-0.53836-0.3494-0.84321-0.3494z" fill="#ffffff" stroke-width="1.1926"/>

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -1,9 +1,5 @@
<svg width="507" height="416" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs id="Mojave">
<linearGradient id="button_active">
<stop stop-color="#3861ca" offset="0"/>
<stop stop-color="#3d6be3" offset="1"/>
</linearGradient>
<defs id="theme">
<linearGradient id="selected_bg_color" osb:paint="solid">
<stop stop-color="#0860f2" offset="0"/>
</linearGradient>
@ -100,7 +96,7 @@
</clipPath>
<linearGradient id="linearGradient1559" x1="263" x2="263" y1="-152.64" y2="-137.64" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
<linearGradient id="selected_fg_color" osb:paint="solid">
<stop stop-color="#ffffffgit" offset="0"/>
<stop stop-color="#ffffff" offset="0"/>
</linearGradient>
<linearGradient id="linearGradient3917" x1="51.611" x2="80.996" y1="141.02" y2="141.02" gradientUnits="userSpaceOnUse" xlink:href="#unchecked_highlight"/>
<linearGradient id="unchecked_highlight" osb:paint="solid">
@ -113,53 +109,10 @@
</linearGradient>
<linearGradient id="linearGradient3913" x1="18" x2="32" y1="38.362" y2="38.362" gradientUnits="userSpaceOnUse" xlink:href="#unchecked_highlight"/>
<linearGradient id="linearGradient3915" x1="24" x2="24" y1="45.362" y2="31.362" gradientTransform="matrix(1 0 0 .92857 0 3.2402)" gradientUnits="userSpaceOnUse" xlink:href="#dark_unchecked_bg"/>
<filter id="filter1452" color-interpolation-filters="sRGB">
<feFlood flood-color="rgb(0,0,0)" flood-opacity=".35294" result="flood"/>
<feComposite in="flood" in2="SourceGraphic" operator="in" result="composite1"/>
<feGaussianBlur in="composite1" result="blur"/>
<feOffset dx="0" dy="0.5" result="offset"/>
<feComposite in="SourceGraphic" in2="offset" result="composite2"/>
</filter>
<linearGradient id="linearGradient3905" x1="17.879" x2="31.879" y1="38.362" y2="38.362" gradientUnits="userSpaceOnUse" xlink:href="#unchecked_highlight"/>
<linearGradient id="linearGradient3907" x1="24.879" x2="24.879" y1="45.362" y2="31.362" gradientTransform="matrix(1 0 0 .92857 0 3.2402)" gradientUnits="userSpaceOnUse" xlink:href="#dark_unchecked_bg"/>
<filter id="filter1524" color-interpolation-filters="sRGB">
<feFlood flood-color="rgb(0,0,0)" flood-opacity=".35294" result="flood"/>
<feComposite in="flood" in2="SourceGraphic" operator="in" result="composite1"/>
<feGaussianBlur in="composite1" result="blur"/>
<feOffset dx="0" dy="0.5" result="offset"/>
<feComposite in="SourceGraphic" in2="offset" result="composite2"/>
</filter>
<linearGradient id="linearGradient3893" x1="51.611" x2="80.996" y1="141.02" y2="141.02" gradientUnits="userSpaceOnUse" xlink:href="#hightlight"/>
<linearGradient id="hightlight" osb:paint="solid">
<stop stop-color="#5887fc" offset="0"/>
</linearGradient>
<linearGradient id="linearGradient3895" x1="51.611" x2="80.996" y1="141.02" y2="141.02" gradientTransform="matrix(1 0 0 .92857 0 11.106)" gradientUnits="userSpaceOnUse" xlink:href="#dark_checked_bg"/>
<linearGradient id="dark_checked_bg" osb:paint="gradient">
<stop stop-color="#3458c0" offset="0"/>
<stop stop-color="#3d67e3" offset="1"/>
</linearGradient>
<filter id="filter1488" color-interpolation-filters="sRGB">
<feFlood flood-color="rgb(0,0,0)" flood-opacity=".35294" result="flood"/>
<feComposite in="flood" in2="SourceGraphic" operator="in" result="composite1"/>
<feGaussianBlur in="composite1" result="blur"/>
<feOffset dx="0" dy="0.5" result="offset"/>
<feComposite in="SourceGraphic" in2="offset" result="composite2"/>
</filter>
<linearGradient id="linearGradient3889" x1="18" x2="32" y1="38.362" y2="38.362" gradientUnits="userSpaceOnUse" xlink:href="#hightlight"/>
<linearGradient id="linearGradient3891" x1="24" x2="24" y1="45.362" y2="32.253" gradientTransform="matrix(1 0 0 .99168 0 .3776)" gradientUnits="userSpaceOnUse" xlink:href="#dark_checked_bg"/>
<filter id="filter1536" color-interpolation-filters="sRGB">
<feFlood flood-color="rgb(0,0,0)" flood-opacity=".35294" result="flood"/>
<feComposite in="flood" in2="SourceGraphic" operator="in" result="composite1"/>
<feGaussianBlur in="composite1" result="blur"/>
<feOffset dx="0" dy="0.5" result="offset"/>
<feComposite in="SourceGraphic" in2="offset" result="composite2"/>
</filter>
<linearGradient id="linearGradient1775" x1="112" x2="112" y1="-256.64" y2="-278.64" gradientUnits="userSpaceOnUse" xlink:href="#button_active"/>
<linearGradient id="linearGradient1802" x1="101" x2="123" y1="-267.64" y2="-267.64" gradientUnits="userSpaceOnUse" xlink:href="#button_active"/>
<linearGradient id="Button_active_hover" x1="112" x2="112" y1="-256.64" y2="-278.64" gradientUnits="userSpaceOnUse" xlink:href="#button_active">
<stop stop-color="#4668ca" offset="0"/>
<stop stop-color="#4d73e3" offset="1"/>
</linearGradient>
<linearGradient id="linearGradient3893" x1="51.611" x2="80.996" y1="141.02" y2="141.02" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
<linearGradient id="linearGradient3889" x1="18" x2="32" y1="38.362" y2="38.362" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
<linearGradient id="linearGradient1759" x1="31" x2="57" y1="-267.64" y2="-267.64" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
<linearGradient id="linearGradient5017" x1="44" x2="44" y1="-279.64" y2="-255.64" gradientTransform="matrix(.96308 0 0 .95987 1.6244 -10.74)" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
<clipPath id="clipPath4466-3-1-0-6">
@ -188,8 +141,12 @@
<rect transform="scale(-1,1)" x="-52" y="-280.64" width="21" height="26" fill="#ff1111" opacity=".558"/>
</clipPath>
<linearGradient id="linearGradient5121" x1="51.5" x2="51.5" y1="-278.64" y2="-256.64" gradientTransform="matrix(2,0,0,1,-52,0)" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
<linearGradient id="linearGradient1765" x1="121.6" x2="126.4" y1="8.3622" y2="8.3622" gradientUnits="userSpaceOnUse" xlink:href="#selected_fg_color"/>
<linearGradient id="linearGradient1765" x1="121.6" x2="126.4" y1="8.3622" y2="8.3622" gradientTransform="matrix(.39689 0 0 .39689 112.97 71.165)" gradientUnits="userSpaceOnUse" xlink:href="#selected_fg_color"/>
<linearGradient id="linearGradient1767" x1="145.93" x2="156" y1="19.012" y2="19.012" gradientUnits="userSpaceOnUse" xlink:href="#selected_fg_color"/>
<linearGradient id="linearGradient2007" x1="101" x2="123" y1="-267.64" y2="-267.64" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
<linearGradient id="linearGradient1944" x1="245" x2="270" y1="-145.14" y2="-145.14" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
<linearGradient id="linearGradient1943" x1="121.6" x2="126.4" y1="8.3622" y2="8.3622" gradientTransform="matrix(1.5 0 0 1.5 -62 -4.1811)" gradientUnits="userSpaceOnUse" xlink:href="#selected_fg_color"/>
<linearGradient id="linearGradient1949" x1="66.303" x2="66.303" y1="155.48" y2="126.56" gradientTransform="matrix(1 0 0 .92857 0 11.106)" gradientUnits="userSpaceOnUse" xlink:href="#dark_unchecked_bg"/>
</defs>
<rect transform="scale(1,-1)" y="-416" width="507" height="416" rx="0" ry="0" color="#000000" fill="#333333"/>
<g id="button" transform="translate(7,283.64)">
@ -211,7 +168,7 @@
<path transform="translate(-7,-283.64)" d="m78 5c-2.216 0-4 1.784-4 4v0.81836c0-2.1153 1.784-3.8184 4-3.8184h14c2.216 0 4 1.7031 4 3.8184v-0.81836c0-2.216-1.784-4-4-4z" fill="#ffffff" opacity=".1"/>
</g>
<g id="button-active" transform="translate(7,283.64)">
<rect x="101" y="-278.64" width="22" height="22" rx="4" ry="4" fill="url(#linearGradient1775)"/>
<rect x="101" y="-278.64" width="22" height="22" rx="4" ry="4" fill="url(#linearGradient2007)"/>
<rect transform="scale(1,-1)" x="100.5" y="256.14" width="23" height="23" rx="4.5" ry="4.5" fill="none" stroke="#000000" stroke-opacity=".11765"/>
<rect x="99" y="-279.64" width="26" height="24" fill="none" opacity=".133"/>
<path transform="translate(-7,-283.64)" d="m112 5c-2.216 0-4 1.784-4 4v0.81836c0-2.1153 1.784-3.8184 4-3.8184h14c2.216 0 4 1.7031 4 3.8184v-0.81836c0-2.216-1.784-4-4-4z" fill="#ffffff" opacity=".1"/>
@ -266,7 +223,7 @@
</g>
<g id="combo-entry-button-active" transform="translate(-34,423.64)">
<g transform="translate(-18,90)" clip-path="url(#clipPath4695)">
<rect x="101" y="-278.64" width="22" height="22" rx="3" ry="3" fill="url(#linearGradient1802)"/>
<rect x="101" y="-278.64" width="22" height="22" rx="3" ry="3" fill="url(#linearGradient2007)"/>
<rect transform="scale(1,-1)" x="100.5" y="256.14" width="23" height="23" rx="3.5" ry="3.5" fill="none" stroke="#000000" stroke-opacity=".11765"/>
<rect x="99" y="-279.64" width="26" height="24" fill="none" opacity=".133"/>
<path transform="translate(52,-513.64)" d="m52 235c-1.662 0-3 1.338-3 3v0.86328c0-1.5864 1.338-2.8633 3-2.8633h16c1.662 0 3 1.2768 3 2.8633v-0.86328c0-1.662-1.338-3-3-3z" fill="#ffffff" opacity=".1"/>
@ -314,7 +271,7 @@
</g>
<g id="combo-entry-button-active-rtl" transform="matrix(-1,0,0,1,191,423.64)">
<g transform="translate(-18,90)" clip-path="url(#clipPath4695-6)">
<rect x="101" y="-278.64" width="22" height="22" rx="3" ry="3" fill="url(#linearGradient1802)"/>
<rect x="101" y="-278.64" width="22" height="22" rx="3" ry="3" fill="url(#linearGradient2007)"/>
<rect transform="scale(1,-1)" x="100.5" y="256.14" width="23" height="23" rx="3.5" ry="3.5" fill="none" stroke="#000000" stroke-opacity=".11765"/>
<rect x="99" y="-279.64" width="26" height="24" fill="none" opacity=".133"/>
<path transform="matrix(-1,0,0,1,209,-513.64)" d="m89 235c-1.662 0-3 1.338-3 3v0.86328c0-1.5864 1.338-2.8633 3-2.8633h16c1.662 0 3 1.2768 3 2.8633v-0.86328c0-1.662-1.338-3-3-3z" fill="#ffffff" opacity=".1"/>
@ -685,7 +642,7 @@
<rect x="245" y="-152.64" width="25" height="15" fill="none"/>
</g>
<g transform="matrix(1 0 0 .13333 57.5 -119.29)">
<rect x="245" y="-152.64" width="25" height="15" fill="#315bef"/>
<rect x="245" y="-152.64" width="25" height="15" fill="url(#linearGradient1944)"/>
</g>
</g>
<g id="pathbar_button_prelight" transform="translate(124.5,473.64)" opacity=".5">
@ -693,7 +650,7 @@
<rect x="245" y="-152.64" width="25" height="15" fill="none" opacity="1"/>
</g>
<g transform="matrix(1 0 0 .13333 57.5 -119.29)">
<rect x="245" y="-152.64" width="25" height="15" fill="#315bef" opacity="1"/>
<rect x="245" y="-152.64" width="25" height="15" fill="url(#linearGradient1944)" opacity="1"/>
</g>
</g>
<g id="checkbox-checked" transform="translate(170,4.64)">
@ -701,7 +658,7 @@
<g transform="translate(0,-30)">
<rect x="17" y="30.362" width="16" height="16" color="#000000" fill="none"/>
<rect x="18" y="31.362" width="14" height="14" rx="2" ry="2" color="#000000" fill="url(#linearGradient3889)" style="paint-order:fill markers stroke"/>
<rect x="18" y="32.362" width="14" height="13" rx="2" ry="1.8571" color="#000000" fill="url(#linearGradient3891)" style="paint-order:fill markers stroke"/>
<path transform="translate(-189,25.36)" d="m209 6.002c-1.108 0-2 0.892-2 2v0.85742c0-1.0288 0.892-1.8574 2-1.8574h10c1.108 0 2 0.82859 2 1.8574v-0.85742c0-1.108-0.892-2-2-2h-10z" color="#000000" fill="#ffffff" opacity=".15" style="paint-order:fill markers stroke"/>
</g>
</g>
<g transform="translate(36,-1036)">
@ -722,12 +679,12 @@
<g transform="matrix(.50892 0 0 .5174 181.79 197.56)">
<g stroke-width="0">
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="url(#linearGradient3893)"/>
<rect x="51.611" y="128.63" width="29.385" height="26.853" rx="14.692" ry="13.427" color="#000000" fill="url(#linearGradient3895)"/>
<path transform="matrix(2.0989 0 0 2.0656 -471.01 114.17)" d="m256 5.998c-3.8779 0-7 3.122-7 7 0 0.08784 0.0105 0.17273 0.01368 0.25976 0.13749-3.4868 3.1966-6.2578 6.9863-6.2578s6.8488 2.771 6.9863 6.2578c0.00318-0.087048 0.01367-0.17191 0.01367-0.25976 0-3.878-3.1221-7-7-7z" color="#000000" fill="#ffffff" opacity=".15" stroke-width="0"/>
</g>
</g>
</g>
</g>
<rect x="122" y="6.3622" width="4" height="4" rx="1.9989" ry="2" color="#000000" fill="url(#linearGradient1765)" filter="url(#filter1488)"/>
<rect x="121" y="5.3622" width="6" height="6" rx="2.9984" ry="3" color="#000000" fill="url(#linearGradient1943)" filter="url(#filter1488)" stroke-width="1.5"/>
</g>
<g id="checkbox-unchecked" transform="translate(170,4.64)">
<g transform="translate(0,-30)">
@ -774,7 +731,7 @@
</g>
</g>
</g>
<rect x="202" y="-242.53" width="4" height="4" rx="1.9989" ry="2" color="#000000" fill="#cccccc" filter="url(#filter1452)"/>
<rect x="201" y="-243.53" width="6" height="6" rx="2.9984" ry="3" color="#000000" fill="#cccccc" filter="url(#filter1452)" stroke-width="1.5"/>
</g>
<g id="checkbox-unchecked-insensitive" transform="translate(170,23.64)" opacity=".6">
<g transform="translate(0,-30)">
@ -795,7 +752,7 @@
<g id="menu-checkbox-checked" transform="matrix(3.7795,0,0,3.7795,-271.11,-268.53)">
<g transform="matrix(.26458 0 0 .26458 144.46 64.335)">
<rect x="18" y="31.362" width="14" height="14" rx="2" ry="2" color="#000000" fill="url(#linearGradient3889)" style="paint-order:fill markers stroke"/>
<rect x="18" y="32.362" width="14" height="13" rx="2" ry="1.8571" color="#000000" fill="url(#linearGradient3891)" style="paint-order:fill markers stroke"/>
<path transform="translate(-274.88 25.376)" d="m294.88 5.9863c-1.108 0-2 0.89202-2 2v0.85547c0-1.0288 0.89203-1.8555 2-1.8555h9.998c1.108 0 2 0.82666 2 1.8555v-0.85547c0-1.108-0.89202-2-2-2h-9.998z" color="#000000" fill="#ffffff" opacity=".15" stroke-width=".99998" style="paint-order:fill markers stroke"/>
</g>
<g transform="matrix(.26458 0 0 .26458 148.96 -201.84)">
<g transform="rotate(45,7.5,1026.4)">
@ -808,16 +765,16 @@
</g>
</g>
</g>
<g id="menu-radio-checked" transform="matrix(3.7795,0,0,3.7795,-271.11,-268.53)">
<g id="menu-radio-checked" transform="matrix(3.7795 0 0 3.7795 -270.99 -268.51)">
<g transform="matrix(.2477 0 0 .24756 108.8 7.5133)">
<g transform="matrix(.50892 0 0 .5174 181.79 197.56)">
<g stroke-width="0">
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.692" ry="14.46" color="#000000" fill="url(#linearGradient3893)"/>
<rect x="51.611" y="128.63" width="29.385" height="26.853" rx="14.692" ry="13.427" color="#000000" fill="url(#linearGradient3895)"/>
<path transform="matrix(2.0989,0,0,2.0657,-651.26,114.2)" d="m341.88 5.9824c-3.8779 0-7 3.122-7 7 0 0.0876 0.0105 0.17296 0.0137 0.25977 0.1375-3.4868 3.1965-6.2578 6.9863-6.2578h2e-3c3.7898 0 6.8488 2.771 6.9863 6.2578 3e-3 -0.0868 0.0137-0.17216 0.0137-0.25977 0-3.878-3.1221-7-7-7h-2e-3z" color="#000000" fill="#ffffff" opacity=".15" stroke-width="0"/>
</g>
</g>
</g>
<rect transform="matrix(.26458 0 0 .26458 129.38 72.273)" x="122" y="6.3622" width="4" height="4" rx="1.9989" ry="2" color="#000000" fill="url(#linearGradient1765)" filter="url(#filter1488)"/>
<rect x="161.39" y="73.69" width="1.5875" height="1.5875" rx=".79334" ry=".79377" color="#000000" fill="url(#linearGradient1765)" filter="url(#filter1488)" stroke-width=".39689"/>
</g>
<g id="menu-checkbox-unchecked" transform="translate(255.89,-25.37)">
<rect x="18" y="31.362" width="14" height="14" rx="2.1538" ry="2.1538" color="#000000" fill="url(#linearGradient3913)"/>
@ -845,14 +802,14 @@
</g>
</g>
</g>
<g id="menu-radio-checked-insensitive" transform="matrix(3.7795,0,0,3.7795,-271.11,-258.85)">
<g id="menu-radio-checked-insensitive" transform="matrix(3.7795 0 0 3.7795 -270.99 -258.84)">
<g transform="matrix(.2477 0 0 .24756 108.8 9.9816)" opacity=".6">
<g transform="matrix(.50892 0 0 .5174 181.79 197.56)">
<rect x="51.611" y="126.56" width="29.385" height="28.919" rx="14.232" ry="14.274" color="#000000" fill="url(#linearGradient3917)"/>
<rect x="51.611" y="128.63" width="29.385" height="26.853" rx="14.693" ry="13.427" color="#000000" fill="url(#linearGradient3919)"/>
<rect x="51.611" y="128.63" width="29.385" height="26.853" rx="14.693" ry="13.427" color="#000000" fill="url(#linearGradient1949)"/>
</g>
</g>
<rect transform="matrix(.26458 0 0 .26458 108.21 140.59)" x="202" y="-242.53" width="4" height="4" rx="1.9989" ry="2" color="#000000" fill="#cccccc" filter="url(#filter1452)"/>
<rect x="161.39" y="76.159" width="1.5875" height="1.5875" rx=".79331" ry=".79375" color="#000000" fill="#cccccc" filter="url(#filter1452)" stroke-width=".39687"/>
</g>
<g id="menu-checkbox-unchecked-insensitive" transform="translate(255.89,-6.37)" opacity=".6">
<rect x="18" y="31.362" width="14" height="14" rx="2.1538" ry="2.1538" color="#000000" fill="url(#linearGradient3913)"/>
@ -866,10 +823,11 @@
</g>
<circle id="slider-insensitive" cx="275" cy="263.5" r="7" fill="#aaaaaa" stroke="#000000" stroke-opacity=".11765" stroke-width="2" style="paint-order:stroke fill markers"/>
<g id="button-active-hover" transform="translate(41,283.64)">
<rect x="101" y="-278.64" width="22" height="22" rx="4" ry="4" fill="url(#Button_active_hover)"/>
<rect x="101" y="-278.64" width="22" height="22" rx="4" ry="4" fill="url(#linearGradient2007)"/>
<rect transform="scale(1,-1)" x="100.5" y="256.14" width="23" height="23" rx="4.5" ry="4.5" fill="none" stroke="#000000" stroke-opacity=".11765"/>
<rect x="99" y="-279.64" width="26" height="24" fill="none" opacity=".133"/>
<path transform="translate(-7,-283.64)" d="m112 5c-2.216 0-4 1.784-4 4v0.81836c0-2.1153 1.784-3.8184 4-3.8184h14c2.216 0 4 1.7031 4 3.8184v-0.81836c0-2.216-1.784-4-4-4z" fill="#ffffff" opacity=".1"/>
<rect x="101" y="-278.64" width="22" height="22" rx="4" ry="4" fill="#ffffff" opacity=".15"/>
</g>
<g id="toolbar-button-active" transform="translate(109,316.64)">
<rect x="-1" y="-278.64" width="22" height="22" rx="4" ry="4" fill="#656565"/>

Before

Width:  |  Height:  |  Size: 73 KiB

After

Width:  |  Height:  |  Size: 72 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 473 B

After

Width:  |  Height:  |  Size: 377 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 468 B

After

Width:  |  Height:  |  Size: 377 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 366 B

After

Width:  |  Height:  |  Size: 354 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 515 B

After

Width:  |  Height:  |  Size: 364 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 310 B

After

Width:  |  Height:  |  Size: 277 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 325 B

After

Width:  |  Height:  |  Size: 283 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 320 B

After

Width:  |  Height:  |  Size: 311 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 483 B

After

Width:  |  Height:  |  Size: 353 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 333 B

After

Width:  |  Height:  |  Size: 344 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 571 B

After

Width:  |  Height:  |  Size: 511 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 150 B

After

Width:  |  Height:  |  Size: 150 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 150 B

After

Width:  |  Height:  |  Size: 150 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 496 B

After

Width:  |  Height:  |  Size: 501 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 586 B

After

Width:  |  Height:  |  Size: 473 B

View file

@ -10,7 +10,7 @@
<stop stop-color="#f5f6f7" offset="0"/>
</linearGradient>
<linearGradient id="entry_highlight" osb:paint="solid">
<stop stop-color="#5999ff" offset="0"/>
<stop stop-color="#0860f2" offset="0"/>
</linearGradient>
<linearGradient id="button-normal-back">
<stop stop-color="#f1f1f1" offset="0"/>
@ -19,9 +19,6 @@
<linearGradient id="selected_fg_color" osb:paint="solid">
<stop stop-color="#ffffffgit" offset="0"/>
</linearGradient>
<linearGradient id="selected_bg_color" osb:paint="solid">
<stop stop-color="#0860f2" offset="0"/>
</linearGradient>
<clipPath id="clipPath4466">
<rect transform="scale(-1,1)" x="-18" y="-280.64" width="21" height="26" fill="#ff1111" opacity=".558"/>
</clipPath>
@ -117,17 +114,17 @@
</clipPath>
<linearGradient id="linearGradient5017" x1="44" x2="44" y1="-279.64" y2="-255.64" gradientTransform="matrix(.96308 0 0 .95987 1.6244 -10.74)" gradientUnits="userSpaceOnUse" xlink:href="#entry_highlight"/>
<linearGradient id="linearGradient5023" x1="43.5" x2="43.5" y1="-279.64" y2="-255.64" gradientTransform="translate(.5)" gradientUnits="userSpaceOnUse" xlink:href="#entry_highlight"/>
<linearGradient id="linearGradient5043" x1="220" x2="220" y1="281" y2="286" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
<linearGradient id="linearGradient5049" x1="-54.638" x2="-54.638" y1="-235" y2="-227" gradientTransform="translate(283.64,-7)" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
<linearGradient id="linearGradient5051" x1="231" x2="231" y1="-82.638" y2="-74.638" gradientTransform="translate(7,283.64)" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
<linearGradient id="linearGradient5053" x1="240.5" x2="240.5" y1="-154.64" y2="-129.64" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
<linearGradient id="linearGradient5055" x1="66.303" x2="66.303" y1="126.56" y2="155.48" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
<linearGradient id="linearGradient5057" x1="66.294" x2="66.294" y1="126.56" y2="155.48" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
<linearGradient id="linearGradient5059" x1="25" x2="25" y1="31.362" y2="45.362" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
<linearGradient id="linearGradient5071" x1="67.353" x2="67.353" y1="128.63" y2="155.48" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
<linearGradient id="linearGradient5073" x1="25.5" x2="25.5" y1="32.362" y2="45.362" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
<linearGradient id="linearGradient5075" x1="25.121" x2="25.121" y1="32.448" y2="45.448" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
<linearGradient id="linearGradient5021" x1="124" x2="124" y1="6.3622" y2="10.362" gradientUnits="userSpaceOnUse" xlink:href="#selected_fg_color"/>
<linearGradient id="linearGradient5043" x1="220" x2="220" y1="281" y2="286" gradientUnits="userSpaceOnUse" xlink:href="#entry_highlight"/>
<linearGradient id="linearGradient5049" x1="-54.638" x2="-54.638" y1="-235" y2="-227" gradientTransform="translate(283.64,-7)" gradientUnits="userSpaceOnUse" xlink:href="#entry_highlight"/>
<linearGradient id="linearGradient5051" x1="231" x2="231" y1="-82.638" y2="-74.638" gradientTransform="translate(7,283.64)" gradientUnits="userSpaceOnUse" xlink:href="#entry_highlight"/>
<linearGradient id="linearGradient5053" x1="240.5" x2="240.5" y1="-154.64" y2="-129.64" gradientUnits="userSpaceOnUse" xlink:href="#entry_highlight"/>
<linearGradient id="linearGradient5055" x1="66.303" x2="66.303" y1="126.56" y2="155.48" gradientUnits="userSpaceOnUse" xlink:href="#entry_highlight"/>
<linearGradient id="linearGradient5057" x1="66.294" x2="66.294" y1="126.56" y2="155.48" gradientUnits="userSpaceOnUse" xlink:href="#entry_highlight"/>
<linearGradient id="linearGradient5059" x1="25" x2="25" y1="31.362" y2="45.362" gradientUnits="userSpaceOnUse" xlink:href="#entry_highlight"/>
<linearGradient id="linearGradient5071" x1="67.353" x2="67.353" y1="128.63" y2="155.48" gradientUnits="userSpaceOnUse" xlink:href="#entry_highlight"/>
<linearGradient id="linearGradient5073" x1="25.5" x2="25.5" y1="32.362" y2="45.362" gradientUnits="userSpaceOnUse" xlink:href="#entry_highlight"/>
<linearGradient id="linearGradient5075" x1="25.121" x2="25.121" y1="32.448" y2="45.448" gradientUnits="userSpaceOnUse" xlink:href="#entry_highlight"/>
<linearGradient id="linearGradient5021" x1="124" x2="124" y1="6.3622" y2="10.362" gradientTransform="matrix(1.5 0 0 1.5 -62 -4.1811)" gradientUnits="userSpaceOnUse" xlink:href="#selected_fg_color"/>
<linearGradient id="linearGradient5026" x1="44.094" x2="44.094" y1="64.781" y2="71.875" gradientUnits="userSpaceOnUse" xlink:href="#selected_fg_color"/>
<linearGradient id="linearGradient5028" x1="10.5" x2="10.5" y1="1033.4" y2="1035.4" gradientUnits="userSpaceOnUse" xlink:href="#selected_fg_color"/>
<linearGradient id="linearGradient5030" x1="12" x2="12" y1="1027.4" y2="1035.4" gradientUnits="userSpaceOnUse" xlink:href="#selected_fg_color"/>
@ -178,7 +175,8 @@
<linearGradient id="linearGradient1844" x1="65" x2="91" y1="-267.64" y2="-267.64" gradientUnits="userSpaceOnUse" xlink:href="#toolbar_bg_color"/>
<linearGradient id="linearGradient1846" x1="31" x2="57" y1="-267.64" y2="-267.64" gradientUnits="userSpaceOnUse" xlink:href="#toolbar_bg_color"/>
<linearGradient id="linearGradient1848" x1="-3" x2="23" y1="-267.64" y2="-267.64" gradientUnits="userSpaceOnUse" xlink:href="#toolbar_bg_color"/>
<linearGradient id="linearGradient1595" x1="263" x2="263" y1="-152.64" y2="-137.64" gradientUnits="userSpaceOnUse" xlink:href="#selected_bg_color"/>
<linearGradient id="linearGradient1595" x1="263" x2="263" y1="-152.64" y2="-137.64" gradientUnits="userSpaceOnUse" xlink:href="#entry_highlight"/>
<linearGradient id="linearGradient1950" x1="245" x2="270" y1="-145.14" y2="-145.14" gradientUnits="userSpaceOnUse" xlink:href="#entry_highlight"/>
</defs>
<rect transform="scale(1,-1)" x=".2773" y="-415.73" width="507" height="416" rx="0" ry="0" color="#000000" fill="#f5f6f7"/>
<g id="button" transform="translate(7,283.64)">
@ -203,24 +201,24 @@
</g>
<g id="menu-checkbox-unchecked" transform="translate(221 -1035.4)">
<g transform="translate(-19,1037)">
<path d="m20.857 2.375c-1.0289 0-1.8571 0.82829-1.8571 1.8571v9.2857c0 1.0289 0.82828 1.8571 1.8571 1.8571h9.2857c1.0289 0 1.8571-0.82828 1.8571-1.8571v-9.2857c0-1.0289-0.82828-1.8571-1.8571-1.8571zm0.14285 1h9c0.51443 0 1 0.48557 1 1v9c0 0.51443-0.48559 1.004-1 1l-9.1429-0.07143c-0.51441-4e-3 -0.85714-0.41414-0.85714-0.92857v-9c0-0.51443 0.48557-1 1-1z" fill="#cecece" stroke-width="0"/>
<g transform="translate(0,-30)">
<rect transform="translate(-2.0349e-6)" x="20" y="33.375" width="11" height="10.987" rx="1" ry="1" color="#000000" fill="#ffffff" stroke-width="0"/>
<g transform="translate(0,-30)" stroke-width="0">
<rect x="19.024" y="32.4" width="12.952" height="12.937" rx="2.9762" ry="2.9762" color="#000000" fill="#cecece"/>
<rect x="20" y="33.4" width="11" height="10.987" rx="2" ry="2" color="#000000" fill="#ffffff"/>
</g>
</g>
</g>
<g id="menu-checkbox-unchecked-insensitive" transform="translate(236 -1035.4)" opacity=".55">
<g transform="translate(-19,1037)" opacity="1">
<path d="m20.857 2.375c-1.0289 0-1.8571 0.82829-1.8571 1.8571v9.2857c0 1.0289 0.82828 1.8571 1.8571 1.8571h9.2857c1.0289 0 1.8571-0.82828 1.8571-1.8571v-9.2857c0-1.0289-0.82828-1.8571-1.8571-1.8571zm0.14285 1h9c0.51443 0 1 0.48557 1 1v9c0 0.51443-0.48559 1.004-1 1l-9.1429-0.07143c-0.51441-4e-3 -0.85714-0.41414-0.85714-0.92857v-9c0-0.51443 0.48557-1 1-1z" fill="#cecece" opacity="1" stroke-width="0"/>
<g transform="translate(0,-30)">
<rect transform="translate(-2.0349e-6)" x="20" y="33.375" width="11" height="10.987" rx="1" ry="1" color="#000000" fill="#ffffff" stroke-width="0"/>
<g transform="translate(0,-30)" stroke-width="0">
<rect x="19" y="32.376" width="13" height="12.984" rx="3" ry="3" color="#000000" fill="#dfe0e0"/>
<rect transform="translate(-2.0349e-6)" x="20" y="33.375" width="11" height="10.987" rx="2" ry="2" color="#000000" fill="#ffffff"/>
</g>
</g>
</g>
<g id="menu-checkbox-checked" transform="translate(215.38,1.55)">
<g transform="translate(19)">
<g transform="translate(0,-30)">
<rect x="18.621" y="32.448" width="13" height="13" rx="2" ry="2" color="#000000" fill="url(#linearGradient5075)" stroke-width="0"/>
<rect x="18.621" y="32.448" width="13" height="13" rx="3.001" ry="3.001" color="#000000" fill="url(#linearGradient5075)" stroke-width="0"/>
</g>
</g>
<g transform="translate(36,-1036)">
@ -256,7 +254,7 @@
<g id="menu-checkbox-checked-insensitive" transform="translate(231,1.64)" opacity=".55">
<g transform="translate(19)">
<g transform="translate(0,-30)">
<rect x="19" y="32.362" width="13" height="13" rx="2" ry="2" color="#000000" fill="url(#linearGradient5073)" opacity="1" stroke-width="0"/>
<rect x="19" y="32.362" width="13" height="13" rx="3" ry="3" color="#000000" fill="url(#linearGradient5073)" opacity="1" stroke-width="0"/>
</g>
</g>
<g transform="translate(36,-1036)">
@ -289,17 +287,17 @@
</g>
</g>
<g id="checkbox-unchecked" transform="translate(272,1.64)">
<path d="m20 1.375c-1.108 0-2 0.892-2 2v10c0 1.108 0.892 2 2 2h10c1.108 0 2-0.892 2-2v-10c0-1.108-0.892-2-2-2zm0 1h10c0.554 0 1 0.446 1 1v10c0 0.554-0.446 1-1 1h-10c-0.554 0-1-0.446-1-1v-10c0-0.554 0.446-1 1-1z" fill="#cecece" stroke-width="0"/>
<g transform="translate(0,-30)">
<rect x="17" y="30.362" width="16" height="16" color="#000000" fill="none"/>
<rect x="19" y="32.362" width="12" height="12" rx="1" ry="1" color="#000000" fill="#ffffff" stroke-width="0"/>
<rect x="18" y="31.362" width="14" height="14" rx="3" ry="3" color="#000000" fill="#cecece" stroke-width="0"/>
<rect x="19" y="32.362" width="12" height="12" rx="2" ry="2" color="#000000" fill="#ffffff" stroke-width="0"/>
</g>
</g>
<g id="checkbox-checked" transform="translate(285,1.64)">
<g transform="translate(19)">
<g transform="translate(0,-30)">
<rect x="17" y="30.362" width="16" height="16" color="#000000" fill="none"/>
<rect x="18" y="31.362" width="14" height="14" rx="2" ry="2" color="#000000" fill="url(#linearGradient5059)" stroke-width="0"/>
<rect x="18" y="31.362" width="14" height="14" rx="3" ry="3" color="#000000" fill="url(#linearGradient5059)" stroke-width="0"/>
</g>
</g>
<g transform="translate(36,-1036)">
@ -332,20 +330,20 @@
</g>
</g>
</g>
<rect x="122" y="6.3622" width="4" height="4" rx="1.9989" ry="2" color="#000000" fill="url(#linearGradient5021)"/>
<rect x="121" y="5.3622" width="6" height="6" rx="2.9984" ry="3" color="#000000" fill="url(#linearGradient5021)" stroke-width="1.5"/>
</g>
<g id="checkbox-unchecked-insensitive" transform="translate(288,1.64)" opacity=".55">
<path d="m20 1.375c-1.108 0-2 0.892-2 2v10c0 1.108 0.892 2 2 2h10c1.108 0 2-0.892 2-2v-10c0-1.108-0.892-2-2-2zm0 1h10c0.554 0 1 0.446 1 1v10c0 0.554-0.446 1-1 1h-10c-0.554 0-1-0.446-1-1v-10c0-0.554 0.446-1 1-1z" fill="#cecece" opacity="1" stroke-width="0"/>
<g transform="translate(0,-30)">
<rect x="17" y="30.362" width="16" height="16" color="#000000" fill="none"/>
<rect x="19" y="32.362" width="12" height="12" rx="1" ry="1" color="#000000" fill="#ffffff" stroke-width="0"/>
<rect x="18" y="31.362" width="14" height="14" rx="3" ry="3" color="#000000" fill="#dfe0e0" stroke-width="0"/>
<rect x="19" y="32.362" width="12" height="12" rx="2" ry="2" color="#000000" fill="#ffffff" stroke-width="0"/>
</g>
</g>
<g id="checkbox-checked-insensitive" transform="translate(301,1.64)" opacity=".55">
<g transform="translate(19)">
<g transform="translate(0,-30)">
<rect x="17" y="30.362" width="16" height="16" color="#000000" fill="none"/>
<rect x="18" y="31.362" width="14" height="14" rx="2" ry="2" color="#000000" fill="url(#linearGradient5059)" opacity="1" stroke-width="0"/>
<rect x="18" y="31.362" width="14" height="14" rx="3" ry="3" color="#000000" fill="url(#linearGradient5059)" opacity="1" stroke-width="0"/>
</g>
</g>
<g transform="translate(36,-1036)">
@ -377,7 +375,7 @@
</g>
</g>
</g>
<rect x="122" y="6.3622" width="4" height="4" rx="1.9989" ry="2" color="#000000" fill="url(#linearGradient5021)" opacity="1"/>
<rect x="121" y="5.3622" width="6" height="6" rx="2.9984" ry="3" color="#000000" fill="url(#linearGradient5021)" opacity="1" stroke-width="1.5"/>
</g>
<g id="entry-bg" transform="translate(6,345.64)">
<rect x="-3" y="-279.64" width="26" height="24" fill="url(#linearGradient1818)"/>
@ -893,7 +891,7 @@
<rect x="245" y="-152.64" width="25" height="15" fill="none"/>
</g>
<g transform="matrix(1 0 0 .13333 57.5 -119.29)">
<rect x="245" y="-152.64" width="25" height="15" fill="#315bef"/>
<rect x="245" y="-152.64" width="25" height="15" fill="url(#linearGradient1950)"/>
</g>
</g>
<g id="pathbar_button_prelight" transform="translate(124.5,473.64)" opacity=".5">
@ -901,7 +899,7 @@
<rect x="245" y="-152.64" width="25" height="15" fill="none" opacity="1"/>
</g>
<g transform="matrix(1 0 0 .13333 57.5 -119.29)">
<rect x="245" y="-152.64" width="25" height="15" fill="#315bef" opacity="1"/>
<rect x="245" y="-152.64" width="25" height="15" fill="url(#linearGradient1950)" opacity="1"/>
</g>
</g>
<g id="toolbar-button-active-hover" transform="translate(40,313.64)">

Before

Width:  |  Height:  |  Size: 75 KiB

After

Width:  |  Height:  |  Size: 74 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 366 B

After

Width:  |  Height:  |  Size: 395 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 331 B

After

Width:  |  Height:  |  Size: 361 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 244 B

After

Width:  |  Height:  |  Size: 258 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 242 B

After

Width:  |  Height:  |  Size: 259 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 369 B

After

Width:  |  Height:  |  Size: 369 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 343 B

After

Width:  |  Height:  |  Size: 349 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 304 B

After

Width:  |  Height:  |  Size: 308 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 312 B

After

Width:  |  Height:  |  Size: 315 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 309 B

After

Width:  |  Height:  |  Size: 318 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 311 B

After

Width:  |  Height:  |  Size: 318 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 355 B

After

Width:  |  Height:  |  Size: 374 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 343 B

After

Width:  |  Height:  |  Size: 366 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 351 B

After

Width:  |  Height:  |  Size: 374 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 388 B

After

Width:  |  Height:  |  Size: 399 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 330 B

After

Width:  |  Height:  |  Size: 353 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 330 B

After

Width:  |  Height:  |  Size: 354 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 219 B

After

Width:  |  Height:  |  Size: 251 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 214 B

After

Width:  |  Height:  |  Size: 266 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 150 B

After

Width:  |  Height:  |  Size: 150 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 150 B

After

Width:  |  Height:  |  Size: 150 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 410 B

After

Width:  |  Height:  |  Size: 417 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 405 B

After

Width:  |  Height:  |  Size: 422 B

View file

@ -11,6 +11,8 @@ DARK_ASSETS_DIR="assets-dark"
INDEX="assets.txt"
[[ -d $LIGHT_ASSETS_DIR ]] && rm -rf $LIGHT_ASSETS_DIR
[[ -d $DARK_ASSETS_DIR ]] && rm -rf $DARK_ASSETS_DIR
mkdir -p $LIGHT_ASSETS_DIR && mkdir -p $DARK_ASSETS_DIR
for i in `cat $INDEX`

File diff suppressed because it is too large Load diff

Before

Width:  |  Height:  |  Size: 120 KiB

After

Width:  |  Height:  |  Size: 60 KiB

View file

@ -76,8 +76,3 @@ combobox-arrow-dark
paned-separator
paned-separator-dark
toggle-on
toggle-off
toggle-on-disabled
toggle-off-disabled

Binary file not shown.

Before

Width:  |  Height:  |  Size: 553 B

After

Width:  |  Height:  |  Size: 530 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 920 B

After

Width:  |  Height:  |  Size: 967 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 403 B

After

Width:  |  Height:  |  Size: 406 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 963 B

After

Width:  |  Height:  |  Size: 986 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 360 B

After

Width:  |  Height:  |  Size: 345 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 409 B

After

Width:  |  Height:  |  Size: 390 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 543 B

After

Width:  |  Height:  |  Size: 588 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 356 B

After

Width:  |  Height:  |  Size: 341 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 897 B

After

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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 474 B

After

Width:  |  Height:  |  Size: 584 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 646 B

After

Width:  |  Height:  |  Size: 900 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 376 B

After

Width:  |  Height:  |  Size: 439 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 527 B

After

Width:  |  Height:  |  Size: 673 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 396 B

After

Width:  |  Height:  |  Size: 414 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 672 B

After

Width:  |  Height:  |  Size: 723 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 405 B

After

Width:  |  Height:  |  Size: 432 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 710 B

After

Width:  |  Height:  |  Size: 784 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 257 B

After

Width:  |  Height:  |  Size: 242 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 309 B

After

Width:  |  Height:  |  Size: 290 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 401 B

After

Width:  |  Height:  |  Size: 448 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 246 B

After

Width:  |  Height:  |  Size: 230 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 273 B

After

Width:  |  Height:  |  Size: 323 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 379 B

After

Width:  |  Height:  |  Size: 482 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 630 B

After

Width:  |  Height:  |  Size: 772 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 866 B

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 447 B

After

Width:  |  Height:  |  Size: 545 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 643 B

After

Width:  |  Height:  |  Size: 829 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 305 B

After

Width:  |  Height:  |  Size: 375 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 473 B

After

Width:  |  Height:  |  Size: 583 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 309 B

After

Width:  |  Height:  |  Size: 357 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 454 B

After

Width:  |  Height:  |  Size: 568 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 239 B

After

Width:  |  Height:  |  Size: 224 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 268 B

After

Width:  |  Height:  |  Size: 247 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 329 B

After

Width:  |  Height:  |  Size: 373 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 259 B

After

Width:  |  Height:  |  Size: 244 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 292 B

After

Width:  |  Height:  |  Size: 273 B

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