master
yutent 2022-05-13 18:38:41 +08:00
parent 54cb4c847d
commit 030c856d6a
442 changed files with 10623 additions and 22384 deletions

1
.prettierignore Normal file
View File

@ -0,0 +1 @@
*.scss

View File

@ -1,3 +0,0 @@
{
"svg.preview.background": "transparent"
}

15
build-theme.js Normal file → Executable file
View File

@ -1,3 +1,4 @@
#!/usr/bin/env node
/**
* {}
* @author yutent<yutent.io@gmail.com>
@ -17,11 +18,15 @@ const GTK3_SCSS = './gtk-3.0/sass/gtk.scss'
const GTK3_STYLE = './gtk-3.0/gtk.css'
function render(file) {
return scss.renderSync({
file,
indentType: 'space',
indentWidth: 2
}).css
try {
return scss.renderSync({
file,
indentType: 'space',
indentWidth: 2
}).css
} catch (err) {
console.log(err)
}
}
/*=======================================================*/

View File

@ -1,114 +0,0 @@
#!/usr/bin/env python3
import os
VARIATIONS = ["Mint-Y",
"Mint-Y-Dark"]
DEST = '../../usr/share/themes'
curdir = os.getcwd()
print("Updating Gtk3 assets")
os.chdir("gtk-3.0/")
os.system("sassc ./sass/gtk.scss gtk.css")
os.system("sassc ./sass/gtk-dark.scss gtk-dark.css")
os.system("./render-assets.sh")
print("Gtk3 assets updated")
os.chdir(curdir)
print("Updating Gtk2 assets")
os.chdir("gtk-2.0/")
os.system("./render-assets.sh")
os.system("./render-dark-assets.sh")
print("Gtk2 assets updated")
os.chdir(curdir)
print("Updating Cinnamon assets")
os.chdir("cinnamon/")
os.system("sassc ./sass/cinnamon.scss cinnamon.css")
os.system("sassc ./sass/cinnamon-dark.scss cinnamon-dark.css")
print("Cinnamon assets updated")
os.chdir(curdir)
print("Updating Xfwm4 assets")
os.chdir("xfwm4/")
os.system("./render-assets.sh")
os.chdir(curdir)
print("Updating Xfwm4 dark assets")
os.chdir("xfwm4-dark/")
os.system("./render-assets.sh")
os.chdir(curdir)
if __name__ == '__main__':
print("Building themes")
for variation in VARIATIONS:
dest_folder = os.path.join(DEST, variation)
os.system("mkdir -p %s" % dest_folder)
if variation == "Mint-Y":
print(" Building Mint-Y")
os.system("cp index.theme %s/" % dest_folder)
# Gtk2
version_folder = os.path.join(dest_folder, "gtk-2.0")
os.system("mkdir -p %s" % version_folder)
os.system("cp -R gtk-2.0/assets %s" % version_folder)
os.system("cp gtk-2.0/*.rc %s" % version_folder)
os.system("cp gtk-2.0/gtkrc %s" % version_folder)
# Gtk3
version_folder = os.path.join(dest_folder, "gtk-3.0")
os.system("mkdir -p %s" % version_folder)
os.system("cp -R gtk-3.0/assets %s" % version_folder)
os.system("cp gtk-3.0/gtk.css %s" % version_folder)
os.system("cp gtk-3.0/gtk-dark.css %s" % version_folder)
os.system("cp gtk-3.0/thumbnail.png %s" % version_folder)
# Metacity
os.system("cp -R metacity-1 %s" % dest_folder)
# Cinnamon
version_folder = os.path.join(dest_folder, "cinnamon")
os.system("mkdir -p %s" % version_folder)
os.system("cp -R cinnamon/common-assets %s" % version_folder)
os.system("cp -R cinnamon/light-assets %s" % version_folder)
os.system("cp cinnamon/mint-y-thumbnail.png %s" % os.path.join(version_folder, "thumbnail.png"))
os.system("cp cinnamon/cinnamon.css %s" % version_folder)
# XFWM
version_folder = os.path.join(dest_folder, "xfwm4")
os.system("mkdir -p %s" % version_folder)
os.system("cp -R xfwm4/*.png %s" % version_folder)
os.system("cp -R xfwm4/themerc %s" % version_folder)
elif variation == "Mint-Y-Dark":
print(" Building Mint-Y-Dark")
os.system("cp index.theme-dark %s" % os.path.join(dest_folder, "index.theme"))
# Gtk2
version_folder = os.path.join(dest_folder, "gtk-2.0")
os.system("mkdir -p %s" % version_folder)
os.system("cp -R gtk-2.0/assets-dark %s" % version_folder)
os.system("rm -rf %s" % os.path.join(version_folder, "assets"))
os.system("mv %s %s" % (os.path.join(version_folder, "assets-dark"), os.path.join(version_folder, "assets")))
os.system("cp gtk-2.0/*.rc %s" % version_folder)
os.system("cp gtk-2.0/gtkrc-dark %s" % os.path.join(version_folder, "gtkrc"))
os.system("cp gtk-2.0/menubar-toolbar-dark.rc %s" % os.path.join(version_folder, "menubar-toolbar.rc"))
# Gtk3
version_folder = os.path.join(dest_folder, "gtk-3.0")
os.system("mkdir -p %s" % version_folder)
os.system("cp -R gtk-3.0/assets %s" % version_folder)
os.system("cp gtk-3.0/gtk-dark.css %s" % os.path.join(version_folder, "gtk.css"))
os.system("cp gtk-3.0/thumbnail-dark.png %s" % os.path.join(version_folder, "thumbnail.png"))
# Cinnamon
version_folder = os.path.join(dest_folder, "cinnamon")
os.system("mkdir -p %s" % version_folder)
os.system("cp -R cinnamon/common-assets %s" % version_folder)
os.system("cp -R cinnamon/dark-assets %s" % version_folder)
os.system("cp cinnamon/mint-y-dark-thumbnail.png %s" % os.path.join(version_folder, "thumbnail.png"))
os.system("cp cinnamon/cinnamon-dark.css %s" % os.path.join(version_folder, "cinnamon.css"))
# XFWM
version_folder = os.path.join(dest_folder, "xfwm4")
os.system("mkdir -p %s" % version_folder)
os.system("cp -R xfwm4-dark/*.png %s" % version_folder)
os.system("cp -R xfwm4-dark/themerc %s" % version_folder)

View File

Before

Width:  |  Height:  |  Size: 6.2 KiB

After

Width:  |  Height:  |  Size: 6.2 KiB

View File

Before

Width:  |  Height:  |  Size: 6.2 KiB

After

Width:  |  Height:  |  Size: 6.2 KiB

View File

Before

Width:  |  Height:  |  Size: 4.4 KiB

After

Width:  |  Height:  |  Size: 4.4 KiB

View File

Before

Width:  |  Height:  |  Size: 4.4 KiB

After

Width:  |  Height:  |  Size: 4.4 KiB

View File

Before

Width:  |  Height:  |  Size: 3.0 KiB

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

Before

Width:  |  Height:  |  Size: 4.8 KiB

After

Width:  |  Height:  |  Size: 4.8 KiB

View File

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

Before

Width:  |  Height:  |  Size: 4.0 KiB

After

Width:  |  Height:  |  Size: 4.0 KiB

View File

Before

Width:  |  Height:  |  Size: 4.0 KiB

After

Width:  |  Height:  |  Size: 4.0 KiB

View File

Before

Width:  |  Height:  |  Size: 4.0 KiB

After

Width:  |  Height:  |  Size: 4.0 KiB

View File

Before

Width:  |  Height:  |  Size: 4.8 KiB

After

Width:  |  Height:  |  Size: 4.8 KiB

View File

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

Before

Width:  |  Height:  |  Size: 429 B

After

Width:  |  Height:  |  Size: 429 B

View File

Before

Width:  |  Height:  |  Size: 418 B

After

Width:  |  Height:  |  Size: 418 B

View File

Before

Width:  |  Height:  |  Size: 428 B

After

Width:  |  Height:  |  Size: 428 B

View File

Before

Width:  |  Height:  |  Size: 414 B

After

Width:  |  Height:  |  Size: 414 B

View File

Before

Width:  |  Height:  |  Size: 4.9 KiB

After

Width:  |  Height:  |  Size: 4.9 KiB

View File

Before

Width:  |  Height:  |  Size: 4.9 KiB

After

Width:  |  Height:  |  Size: 4.9 KiB

View File

Before

Width:  |  Height:  |  Size: 4.8 KiB

After

Width:  |  Height:  |  Size: 4.8 KiB

View File

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

Before

Width:  |  Height:  |  Size: 5.9 KiB

After

Width:  |  Height:  |  Size: 5.9 KiB

View File

Before

Width:  |  Height:  |  Size: 5.7 KiB

After

Width:  |  Height:  |  Size: 5.7 KiB

View File

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

Before

Width:  |  Height:  |  Size: 5.3 KiB

After

Width:  |  Height:  |  Size: 5.3 KiB

View File

Before

Width:  |  Height:  |  Size: 4.8 KiB

After

Width:  |  Height:  |  Size: 4.8 KiB

View File

Before

Width:  |  Height:  |  Size: 838 B

After

Width:  |  Height:  |  Size: 838 B

View File

Before

Width:  |  Height:  |  Size: 680 B

After

Width:  |  Height:  |  Size: 680 B

View File

Before

Width:  |  Height:  |  Size: 8.9 KiB

After

Width:  |  Height:  |  Size: 8.9 KiB

View File

Before

Width:  |  Height:  |  Size: 4.6 KiB

After

Width:  |  Height:  |  Size: 4.6 KiB

View File

Before

Width:  |  Height:  |  Size: 4.6 KiB

After

Width:  |  Height:  |  Size: 4.6 KiB

View File

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

Before

Width:  |  Height:  |  Size: 6.9 KiB

After

Width:  |  Height:  |  Size: 6.9 KiB

View File

Before

Width:  |  Height:  |  Size: 6.4 KiB

After

Width:  |  Height:  |  Size: 6.4 KiB

View File

@ -175,16 +175,16 @@ StScrollBar StButton#hhandle:active {
.check-box StBin {
width: 16px;
height: 16px;
background-image: url("dark-assets/checkbox/checkbox-unchecked.svg");
background-image: url("assets/checkbox/checkbox-unchecked.svg");
}
.check-box:focus StBin {
background-image: url("dark-assets/checkbox/checkbox-unchecked-focused.svg");
background-image: url("assets/checkbox/checkbox-unchecked-focused.svg");
}
.check-box:checked StBin {
background-image: url("dark-assets/checkbox/checkbox-checked.svg");
background-image: url("assets/checkbox/checkbox-checked.svg");
}
.check-box:focus:checked StBin {
background-image: url("dark-assets/checkbox/checkbox-checked-focused.svg");
background-image: url("assets/checkbox/checkbox-checked-focused.svg");
}
.radiobutton CinnamonGenericContainer {
@ -200,16 +200,16 @@ StScrollBar StButton#hhandle:active {
.radiobutton StBin {
width: 16px;
height: 16px;
background-image: url("dark-assets/checkbox/checkbox-unchecked.svg");
background-image: url("assets/checkbox/checkbox-unchecked.svg");
}
.radiobutton:focus StBin {
background-image: url("dark-assets/checkbox/checkbox-unchecked-focused.svg");
background-image: url("assets/checkbox/checkbox-unchecked-focused.svg");
}
.radiobutton:checked StBin {
background-image: url("dark-assets/checkbox/checkbox-checked.svg");
background-image: url("assets/checkbox/checkbox-checked.svg");
}
.radiobutton:focus:checked StBin {
background-image: url("dark-assets/checkbox/checkbox-checked-focused.svg");
background-image: url("assets/checkbox/checkbox-checked-focused.svg");
}
.toggle-switch {
@ -218,10 +218,10 @@ StScrollBar StButton#hhandle:active {
background-size: contain;
}
.toggle-switch-us, .toggle-switch-intl {
background-image: url("dark-assets/switch/switch-off.svg");
background-image: url("assets/switch/switch-off.svg");
}
.toggle-switch-us:checked, .toggle-switch-intl:checked {
background-image: url("dark-assets/switch/switch-on.svg");
background-image: url("assets/switch/switch-on.svg");
}
.cinnamon-link {
@ -571,41 +571,41 @@ StScrollBar StButton#hhandle:active {
}
.calendar-change-month-back {
background-image: url("common-assets/misc/calendar-arrow-left.svg");
background-image: url("assets/misc/calendar-arrow-left.svg");
}
.calendar-change-month-back:focus, .calendar-change-month-back:hover {
background-image: url("common-assets/misc/calendar-arrow-left-hover.svg");
background-image: url("assets/misc/calendar-arrow-left-hover.svg");
}
.calendar-change-month-back:active {
background-image: url("common-assets/misc/calendar-arrow-left.svg");
background-image: url("assets/misc/calendar-arrow-left.svg");
}
.calendar-change-month-back:rtl {
background-image: url("common-assets/misc/calendar-arrow-right.svg");
background-image: url("assets/misc/calendar-arrow-right.svg");
}
.calendar-change-month-back:rtl:focus, .calendar-change-month-back:rtl:hover {
background-image: url("common-assets/misc/calendar-arrow-right-hover.svg");
background-image: url("assets/misc/calendar-arrow-right-hover.svg");
}
.calendar-change-month-back:rtl:active {
background-image: url("common-assets/misc/calendar-arrow-right.svg");
background-image: url("assets/misc/calendar-arrow-right.svg");
}
.calendar-change-month-forward {
background-image: url("common-assets/misc/calendar-arrow-right.svg");
background-image: url("assets/misc/calendar-arrow-right.svg");
}
.calendar-change-month-forward:focus, .calendar-change-month-forward:hover {
background-image: url("common-assets/misc/calendar-arrow-right-hover.svg");
background-image: url("assets/misc/calendar-arrow-right-hover.svg");
}
.calendar-change-month-forward:active {
background-image: url("common-assets/misc/calendar-arrow-right.svg");
background-image: url("assets/misc/calendar-arrow-right.svg");
}
.calendar-change-month-forward:rtl {
background-image: url("common-assets/misc/calendar-arrow-left.svg");
background-image: url("assets/misc/calendar-arrow-left.svg");
}
.calendar-change-month-forward:rtl:focus, .calendar-change-month-forward:rtl:hover {
background-image: url("common-assets/misc/calendar-arrow-left-hover.svg");
background-image: url("assets/misc/calendar-arrow-left-hover.svg");
}
.calendar-change-month-forward:rtl:active {
background-image: url("common-assets/misc/calendar-arrow-left.svg");
background-image: url("assets/misc/calendar-arrow-left.svg");
}
.calendar-day-event-dot-box {
@ -631,16 +631,14 @@ StScrollBar StButton#hhandle:active {
}
.calendar-day-base:hover {
color: #f2f5fc;
background-color: rgba(100, 181, 246, 0.35);
background-color: rgba(100, 181, 246, 0.15);
border-color: rgba(100, 181, 246, 0.35);
}
.calendar-day-heading {
color: #f2f5fc;
margin-top: 16px;
margin-bottom: 0;
font-size: 1.2em;
font-weight: bold;
font-size: 1.1em;
}
.calendar-today {
@ -895,7 +893,7 @@ StScrollBar StButton#hhandle:active {
}
.popup-menu #notification {
color: #ced6e0;
border-image: url("dark-assets/misc/message.svg") 9 9 9 9;
border-image: url("assets/misc/message.svg") 9 9 9 9;
}
.popup-menu #notification .notification-button,
.popup-menu #notification .notification-icon-button {
@ -1006,11 +1004,11 @@ StScrollBar StButton#hhandle:active {
.ripple-box {
width: 104px;
height: 104px;
background-image: url("common-assets/misc/corner-ripple.svg");
background-image: url("assets/misc/corner-ripple.svg");
background-size: contain;
}
.ripple-box:rtl {
background-image: url("common-assets/misc/corner-ripple.svg");
background-image: url("assets/misc/corner-ripple.svg");
}
.lightbox {
@ -1234,7 +1232,7 @@ StScrollBar StButton#hhandle:active {
color: #ced6e0;
border: 0;
border-radius: 12px;
background-color: rgba(87, 96, 111, 0.9);
background-color: rgba(87, 96, 111, 0.95);
}
.popup-sub-menu {
@ -1336,8 +1334,8 @@ StScrollBar StButton#hhandle:active {
.menu-favorites-box {
padding: 10px;
transition-duration: 300;
background-color: rgba(60, 77, 94, 0.3);
border: 0;
background-color: rgba(60, 77, 94, 0.5);
border: 1px solid rgba(134, 144, 155, 0.5);
border-radius: 6px;
}
.menu-favorites-button {
@ -1434,14 +1432,16 @@ StScrollBar StButton#hhandle:active {
#menu-search-entry {
width: 220px;
min-height: 16px;
margin-right: 10px;
font-weight: normal;
border: 0;
border: 1px solid #86909b;
border-radius: 6px;
caret-color: #ced6e0;
background-color: rgba(134, 144, 155, 0.65);
background-color: #3c4d5e;
}
.menu-search-entry-icon {
icon-size: 1em;
margin-right: 6px;
color: #ced6e0;
}
@ -1668,10 +1668,10 @@ StScrollBar StButton#hhandle:active {
}
#overview-corner {
background-image: url("common-assets/misc/overview.png");
background-image: url("assets/misc/overview.png");
}
#overview-corner:hover {
background-image: url("common-assets/misc/overview-hover.png");
background-image: url("assets/misc/overview-hover.png");
}
.applet-separator {

View File

@ -1,223 +0,0 @@
<?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="16"
height="16"
id="svg2"
version="1.1"
inkscape:version="0.92.3 (2405546, 2018-03-11)"
sodipodi:docname="checkbox-checked-focused.svg"
inkscape:export-filename="/home/steffen/.local/share/themes/Vertex-git/gtk-3.0/assets/dark/checkbox-checked.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<defs
id="defs4">
<linearGradient
id="linearGradient7704">
<stop
style="stop-color:#4080fb;stop-opacity:0.74509805;"
offset="0"
id="stop7706" />
<stop
style="stop-color:#4080fb;stop-opacity:0.49197862;"
offset="1"
id="stop7708" />
</linearGradient>
<linearGradient
id="linearGradient7694">
<stop
style="stop-color:#0f0f0f;stop-opacity:1;"
offset="0"
id="stop7696" />
<stop
id="stop7698"
offset="0.078125"
style="stop-color:#171717;stop-opacity:1;" />
<stop
style="stop-color:#171717;stop-opacity:1;"
offset="0.97355771"
id="stop7700" />
<stop
style="stop-color:#1b1b1b;stop-opacity:1;"
offset="1"
id="stop7702" />
</linearGradient>
<linearGradient
id="linearGradient3969-0-4-9">
<stop
style="stop-color:#353537;stop-opacity:1;"
offset="0"
id="stop3971-2-2-7" />
<stop
style="stop-color:#4d4f52;stop-opacity:1;"
offset="1"
id="stop3973-0-5-3" />
</linearGradient>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="32.000001"
inkscape:cx="8.1583213"
inkscape:cy="8.308039"
inkscape:document-units="px"
inkscape:current-layer="checkbox-checked-dark"
showgrid="true"
inkscape:snap-bbox="true"
showguides="true"
inkscape:guide-bbox="true"
inkscape:showpageshadow="false"
showborder="true"
inkscape:window-width="1152"
inkscape:window-height="732"
inkscape:window-x="230"
inkscape:window-y="97"
inkscape:window-maximized="0"
inkscape:snap-global="true"
inkscape:bbox-paths="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:bbox-nodes="true">
<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:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1036.3622)">
<g
id="checkbox-checked-dark"
inkscape:label="Ebene 1"
transform="translate(16.837126,14.010408)">
<g
transform="translate(-52.837126,1021.9896)"
style="display:inline;opacity:1"
id="checkbox-checked"
inkscape:label="#g10758">
<g
inkscape:label="#g22047"
id="checkbox-unchecked-5"
style="display:inline"
transform="translate(19,0)">
<g
id="sdsd-7"
inkscape:label="#g21853">
<g
transform="translate(0,-30)"
inkscape:label="#g14325"
id="scdsdcd-5">
<g
transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)"
id="g15812-6-6-1-5"
style="display:inline">
<g
style="display:inline"
id="g5489-2-9-6-8-8-53"
transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)">
<g
id="g5428-8-1-4-0-0-4" />
</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"
width="16"
height="16"
x="17"
y="30.362183" />
<g
id="g5400-6">
<rect
rx="1.8571391"
y="31.862192"
x="18.5"
height="13"
width="13"
id="rect5147-9-1-5-7-6-7"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#92b372;fill-opacity:1;stroke:#cfcfcf;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
ry="1.8571364" />
</g>
</g>
</g>
</g>
<g
inkscape:label="Ebene 1"
id="checkbox-checked-dark-7"
transform="translate(36,-1036)"
style="display:inline">
<g
id="g3981-6-4"
transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,729.95475,305.0582)"
style="opacity:0.85;fill:#1a1a1a;fill-opacity:1" />
<g
id="g4049-2"
transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,727.94436,295.31123)">
<g
id="g4056-7"
transform="translate(12.374375,11.531233)">
<g
id="g3981-0"
transform="translate(-3,-4.9999826)"
style="fill:#3b3c3e;fill-opacity:1">
<rect
ry="0.66666085"
rx="0.66666085"
y="1033.3622"
x="8"
height="1.9999826"
width="5"
id="rect3977-39"
style="fill:#ffffff;fill-opacity:1;stroke:none" />
<rect
ry="0"
y="1027.3622"
x="11"
height="7.9999828"
width="2"
id="rect3979-7"
style="fill:#ffffff;fill-opacity:1;stroke:none" />
</g>
<rect
style="fill:#eeeeee;fill-opacity:0;stroke:none"
id="rect4047-81"
width="3"
height="1"
x="5"
y="-8"
transform="translate(0,1036.3622)" />
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 7.2 KiB

View File

@ -1,223 +0,0 @@
<?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="16"
height="16"
id="svg2"
version="1.1"
inkscape:version="0.92.3 (2405546, 2018-03-11)"
sodipodi:docname="checkbox-checked.svg"
inkscape:export-filename="/home/steffen/.local/share/themes/Vertex-git/gtk-3.0/assets/dark/checkbox-checked.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<defs
id="defs4">
<linearGradient
id="linearGradient7704">
<stop
style="stop-color:#4080fb;stop-opacity:0.74509805;"
offset="0"
id="stop7706" />
<stop
style="stop-color:#4080fb;stop-opacity:0.49197862;"
offset="1"
id="stop7708" />
</linearGradient>
<linearGradient
id="linearGradient7694">
<stop
style="stop-color:#0f0f0f;stop-opacity:1;"
offset="0"
id="stop7696" />
<stop
id="stop7698"
offset="0.078125"
style="stop-color:#171717;stop-opacity:1;" />
<stop
style="stop-color:#171717;stop-opacity:1;"
offset="0.97355771"
id="stop7700" />
<stop
style="stop-color:#1b1b1b;stop-opacity:1;"
offset="1"
id="stop7702" />
</linearGradient>
<linearGradient
id="linearGradient3969-0-4-9">
<stop
style="stop-color:#353537;stop-opacity:1;"
offset="0"
id="stop3971-2-2-7" />
<stop
style="stop-color:#4d4f52;stop-opacity:1;"
offset="1"
id="stop3973-0-5-3" />
</linearGradient>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="32.000002"
inkscape:cx="6.8001576"
inkscape:cy="7.951922"
inkscape:document-units="px"
inkscape:current-layer="checkbox-checked-dark"
showgrid="true"
inkscape:snap-bbox="true"
showguides="true"
inkscape:guide-bbox="true"
inkscape:showpageshadow="false"
showborder="true"
inkscape:window-width="1297"
inkscape:window-height="718"
inkscape:window-x="432"
inkscape:window-y="88"
inkscape:window-maximized="0"
inkscape:snap-global="true"
inkscape:bbox-paths="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:bbox-nodes="true">
<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:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1036.3622)">
<g
id="checkbox-checked-dark"
inkscape:label="Ebene 1"
transform="translate(16.837126,14.010408)">
<g
transform="translate(-52.837126,1021.9896)"
style="display:inline;opacity:1"
id="checkbox-checked"
inkscape:label="#g10758">
<g
inkscape:label="#g22047"
id="checkbox-unchecked-5"
style="display:inline"
transform="translate(19,0)">
<g
id="sdsd-7"
inkscape:label="#g21853">
<g
transform="translate(0,-30)"
inkscape:label="#g14325"
id="scdsdcd-5">
<g
transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)"
id="g15812-6-6-1-5"
style="display:inline">
<g
style="display:inline"
id="g5489-2-9-6-8-8-53"
transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)">
<g
id="g5428-8-1-4-0-0-4" />
</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"
width="16"
height="16"
x="17"
y="30.362183" />
<g
id="g5400-6">
<rect
rx="1.8571391"
y="31.862192"
x="18.5"
height="13"
width="13"
id="rect5147-9-1-5-7-6-7"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#92b372;fill-opacity:1;stroke:#cfcfcf;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
ry="1.8571364" />
</g>
</g>
</g>
</g>
<g
inkscape:label="Ebene 1"
id="checkbox-checked-dark-7"
transform="translate(36,-1036)"
style="display:inline">
<g
id="g3981-6-4"
transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,729.95475,305.0582)"
style="opacity:0.85;fill:#1a1a1a;fill-opacity:1" />
<g
id="g4049-2"
transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,727.94436,295.31123)">
<g
id="g4056-7"
transform="translate(12.374375,11.531233)">
<g
id="g3981-0"
transform="translate(-3,-4.9999826)"
style="fill:#3b3c3e;fill-opacity:1">
<rect
ry="0.66666085"
rx="0.66666085"
y="1033.3622"
x="8"
height="1.9999826"
width="5"
id="rect3977-39"
style="fill:#ffffff;fill-opacity:1;stroke:none" />
<rect
ry="0"
y="1027.3622"
x="11"
height="7.9999828"
width="2"
id="rect3979-7"
style="fill:#ffffff;fill-opacity:1;stroke:none" />
</g>
<rect
style="fill:#eeeeee;fill-opacity:0;stroke:none"
id="rect4047-81"
width="3"
height="1"
x="5"
y="-8"
transform="translate(0,1036.3622)" />
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 7.1 KiB

View File

@ -1,141 +0,0 @@
<?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="16"
height="16"
id="svg2"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="checkbox-unchecked-focused.svg"
inkscape:export-filename="/home/steffen/.local/share/themes/neu2/gtk-3.0/assets/dark/checkbox-unchecked.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<defs
id="defs4">
<linearGradient
id="linearGradient3768-6">
<stop
style="stop-color:#0f0f0f;stop-opacity:1;"
offset="0"
id="stop3770-6" />
<stop
id="stop3778-2"
offset="0.078125"
style="stop-color:#171717;stop-opacity:1;" />
<stop
style="stop-color:#171717;stop-opacity:1;"
offset="0.97355771"
id="stop3774-0" />
<stop
style="stop-color:#1b1b1b;stop-opacity:1;"
offset="1"
id="stop3776-1" />
</linearGradient>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="11.313709"
inkscape:cx="-7.6647208"
inkscape:cy="-1.1201818"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:snap-bbox="true"
showguides="true"
inkscape:guide-bbox="true"
inkscape:showpageshadow="false"
showborder="true"
inkscape:window-width="1006"
inkscape:window-height="723"
inkscape:window-x="358"
inkscape:window-y="25"
inkscape:window-maximized="0"
inkscape:bbox-paths="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true">
<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:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1036.3622)">
<g
transform="translate(-17,1036)"
style="display:inline;opacity:1"
id="checkbox-unchecked-9"
inkscape:label="#g22047">
<g
inkscape:label="#g21853"
id="sdsd-0">
<g
id="scdsdcd-0"
inkscape:label="#g14325"
transform="translate(0,-30)">
<g
style="display:inline"
id="g15812-6-6-1-4"
transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)">
<g
transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)"
id="g5489-2-9-6-8-8-9"
style="display:inline">
<g
id="g5428-8-1-4-0-0-65" />
</g>
</g>
<rect
y="30.362183"
x="17"
height="16"
width="16"
id="rect13523-4"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
<g
id="g5400-2">
<rect
ry="2"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;stroke:#92b372;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
id="rect5147-9-1-5-7-6-3"
width="13"
height="12.999997"
x="18.5"
y="31.862183"
rx="2" />
</g>
</g>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 4.3 KiB

View File

@ -1,141 +0,0 @@
<?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="16"
height="16"
id="svg2"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="checkbox-unchecked.svg"
inkscape:export-filename="/home/steffen/.local/share/themes/neu2/gtk-3.0/assets/dark/checkbox-unchecked.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<defs
id="defs4">
<linearGradient
id="linearGradient3768-6">
<stop
style="stop-color:#0f0f0f;stop-opacity:1;"
offset="0"
id="stop3770-6" />
<stop
id="stop3778-2"
offset="0.078125"
style="stop-color:#171717;stop-opacity:1;" />
<stop
style="stop-color:#171717;stop-opacity:1;"
offset="0.97355771"
id="stop3774-0" />
<stop
style="stop-color:#1b1b1b;stop-opacity:1;"
offset="1"
id="stop3776-1" />
</linearGradient>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="32.000001"
inkscape:cx="0.74241001"
inkscape:cy="6.0231769"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:snap-bbox="true"
showguides="true"
inkscape:guide-bbox="true"
inkscape:showpageshadow="false"
showborder="true"
inkscape:window-width="1006"
inkscape:window-height="723"
inkscape:window-x="358"
inkscape:window-y="25"
inkscape:window-maximized="0"
inkscape:bbox-paths="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true">
<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:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1036.3622)">
<g
transform="translate(-17,1036)"
style="display:inline;opacity:1"
id="checkbox-unchecked-7"
inkscape:label="#g22047">
<g
inkscape:label="#g21853"
id="sdsd-0">
<g
id="scdsdcd-0"
inkscape:label="#g14325"
transform="translate(0,-30)">
<g
style="display:inline"
id="g15812-6-6-1-4"
transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)">
<g
transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)"
id="g5489-2-9-6-8-8-9"
style="display:inline">
<g
id="g5428-8-1-4-0-0-65" />
</g>
</g>
<rect
y="30.362183"
x="17"
height="16"
width="16"
id="rect13523-4"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
<g
id="g5400-2">
<rect
ry="2"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;stroke:#cfcfcf;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
id="rect5147-9-1-5-7-6-3"
width="13"
height="12.999997"
x="18.5"
y="31.862183"
rx="2" />
</g>
</g>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 4.3 KiB

View File

@ -1,97 +0,0 @@
<?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="9.0311108mm"
height="9.3133335mm"
viewBox="0 0 31.999999 33"
id="svg6927"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="menu-hover.svg">
<defs
id="defs6929" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="11.2"
inkscape:cx="4.0327991"
inkscape:cy="13.945988"
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="1920"
inkscape:window-height="1032"
inkscape:window-x="0"
inkscape:window-y="25"
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">
<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,-382.36221)">
<g
transform="matrix(0.0689655,0,0,0.93939391,71.275885,281.90766)"
id="g6908">
<rect
y="108"
x="1011"
height="33"
width="348"
id="rect5271"
style="opacity:0.03999999;fill:#000000;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:0" />
</g>
<rect
style="opacity:0.08999999;fill:#000000;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"
id="rect4141"
width="23.99999"
height="1"
x="141"
y="382.36221" />
<rect
style="opacity:0.08999999;fill:#000000;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"
id="rect4141-5"
width="23.99999"
height="1"
x="141"
y="414.36221" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -1,127 +0,0 @@
<?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="32"
height="32"
viewBox="0 0 32 32"
id="svg5386"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="menu.svg">
<defs
id="defs5388" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1"
inkscape:cx="22.519877"
inkscape:cy="5.5302687"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
units="px"
inkscape:snap-bbox="true"
inkscape:bbox-paths="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true">
<inkscape:grid
type="xygrid"
id="grid5954" />
</sodipodi:namedview>
<metadata
id="metadata5391">
<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(0,-1020.3622)">
<rect
style="display:inline;opacity:0.1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect4164-4-3"
width="23"
height="21.999889"
x="4.5"
y="1024.8622"
rx="2.0000005"
ry="1.9999999" />
<rect
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect4164"
width="22"
height="20.999971"
x="5"
y="1025.3622"
rx="1.4"
ry="1.4" />
<g
transform="translate(-425.99995,658.36226)"
id="g4271"
style="display:inline;opacity:0.75">
<rect
ry="8"
rx="8"
y="362.49994"
x="426.49994"
height="31"
width="31.000011"
id="rect4164-4-7-5-3-8-8"
style="display:inline;opacity:0.01;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
ry="6.999999"
rx="7"
y="363.49997"
x="427.49994"
height="28.999996"
width="29.000011"
id="rect4164-4-7-5-3-8"
style="display:inline;opacity:0.02;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.99999982;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
ry="6"
rx="6"
y="364.49994"
x="428.49994"
height="26.999998"
width="27.000011"
id="rect4164-4-7-5-3"
style="display:inline;opacity:0.04;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
ry="5"
rx="4.9999995"
y="365.49997"
x="429.49997"
height="24.999998"
width="24.999981"
id="rect4164-4-7-5"
style="display:inline;opacity:0.06;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
transform="translate(-6.1035156e-5,0)"
id="rect4164-4-7"
d="M 431.64844,388.30469 C 432.37319,389.0416 433.37997,389.5 434.5,389.5 l 15.00023,0 c 1.12003,0 2.12681,-0.4584 2.85156,-1.19531 -0.2591,0.12217 -0.5451,0.19531 -0.85156,0.19531 l -19.00023,0 c -0.30646,0 -0.59246,-0.0731 -0.85156,-0.19531 z"
style="display:inline;opacity:0.09;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csscssc" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 4.7 KiB

View File

@ -1,117 +0,0 @@
<?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="37"
height="18"
id="svg3783"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="submenu.svg"
inkscape:export-filename="/home/steffen/.local/share/themes/Vertex_Shell/gnome-shell/menu.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<defs
id="defs3785" />
<sodipodi:namedview
id="base"
pagecolor="#838383"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:zoom="45.254837"
inkscape:cx="2.5411162"
inkscape:cy="14.440542"
inkscape:document-units="px"
inkscape:current-layer="g3027"
showgrid="true"
inkscape:showpageshadow="false"
inkscape:window-width="1364"
inkscape:window-height="718"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="0"
inkscape:snap-global="true"
inkscape:snap-bbox="true"
showguides="true"
inkscape:guide-bbox="true"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:bbox-paths="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true">
<inkscape:grid
type="xygrid"
id="grid4301"
empspacing="8"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="0"
originy="0" />
<sodipodi:guide
orientation="0,1"
position="14.052204,22.065004"
id="guide3831" />
<sodipodi:guide
orientation="0,1"
position="14.052204,-3.9349962"
id="guide3835" />
</sodipodi:namedview>
<metadata
id="metadata3788">
<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="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-5.9477962,-1025.4272)">
<g
id="g3027"
transform="matrix(0,-1,1,0,-1048.3622,1052.3622)">
<rect
style="opacity:0.05;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3092"
width="28.999735"
height="18"
x="1058.3102"
y="-26.934996"
transform="matrix(0,1,-1,0,0,0)" />
<rect
style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3883"
width="28.999802"
height="1"
x="1058.3102"
y="-9.9350014"
transform="matrix(0,1,-1,0,0,0)" />
<rect
style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3883-9"
width="28.999802"
height="1"
x="1058.3101"
y="-26.935005"
transform="matrix(0,1,-1,0,0,0)" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.7 KiB

View File

@ -1,92 +0,0 @@
<?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="22"
height="18.999971"
viewBox="0 0 22 18.999971"
id="svg5386"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="button-box.svg">
<defs
id="defs5388">
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath4228">
<rect
style="opacity:1;fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect4230"
width="38"
height="29.000017"
x="-3"
y="1027.3622"
rx="1.5"
ry="1.5" />
</clipPath>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="16"
inkscape:cx="9.376447"
inkscape:cy="10.14915"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
units="px"
inkscape:snap-bbox="true"
inkscape:bbox-paths="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
showguides="false"
inkscape:object-paths="true"
inkscape:snap-intersection-paths="true"
inkscape:object-nodes="true"
inkscape:snap-smooth-nodes="true">
<inkscape:grid
type="xygrid"
id="grid5954"
originx="-5"
originy="-6.000065" />
</sodipodi:namedview>
<metadata
id="metadata5391">
<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(-5,-1027.3622)">
<path
style="opacity:0.95;fill:#353945;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 27,1027.3622 0,17.9445 c 0,0.5848 -0.4906,1.0555 -1.1,1.0555 l -19.8,0 c -0.6094,0 -1.1,-0.4707 -1.1,-1.0555 l 0,-17.9445 z"
id="rect4145-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csssscc" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -1,81 +0,0 @@
<?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="32"
height="32"
viewBox="0 0 32 32.000001"
id="svg6621"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="message.svg">
<defs
id="defs6623" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="16"
inkscape:cx="-0.35024404"
inkscape:cy="8.0127661"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
units="px"
inkscape:snap-bbox="true"
inkscape:bbox-paths="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:window-width="1920"
inkscape:window-height="1027"
inkscape:window-x="1920"
inkscape:window-y="0"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid7177" />
</sodipodi:namedview>
<metadata
id="metadata6626">
<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(0,-1020.3622)">
<rect
style="display:inline;opacity:1;fill:#fcfdfd;fill-opacity:1;stroke:#cfd6e6;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect4160"
width="31"
height="31.000017"
x="0.5"
y="1020.8622"
rx="1.5"
ry="1.5" />
<path
style="display:inline;opacity:1;fill:#92b372;fill-opacity:1;stroke:#8fa876;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 2.75,1020.8622 0.75,0 0,31 -0.75,0 c -1.2465,0 -2.25,-0.6805 -2.25,-1.5259 l 0,-27.9482 c 0,-0.8454 1.0035,-1.5259 2.25,-1.5259 z"
id="rect4162-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sccssss" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.6 KiB

View File

@ -1,143 +0,0 @@
<?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="32"
height="84"
viewBox="0 0 32 84"
id="svg5386"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="modal.svg">
<defs
id="defs5388">
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath4154">
<rect
transform="scale(1,-1)"
ry="1.5"
rx="1.5"
y="-992.36218"
x="-5.5"
height="24.500061"
width="43"
id="rect4156"
style="opacity:1;fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</clipPath>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#c7c7c7"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:zoom="11.313708"
inkscape:cx="-10.839259"
inkscape:cy="63.908322"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
units="px"
inkscape:snap-bbox="true"
inkscape:bbox-paths="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true">
<inkscape:grid
type="xygrid"
id="grid5954" />
</sodipodi:namedview>
<metadata
id="metadata5391">
<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(0,-968.3622)">
<rect
style="display:inline;opacity:0.1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect4164-4-3"
width="23"
height="73.999352"
x="4.5"
y="972.86285"
rx="2.0000005"
ry="1.9999999" />
<rect
style="display:inline;opacity:1;fill:#f5f6f7;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect4164"
width="22"
height="20.999971"
x="5"
y="973.36285"
rx="1.4"
ry="2.0461845"
clip-path="url(#clipPath4154)"
transform="matrix(1,0,0,0.68420028,0,307.38771)" />
<g
transform="translate(-425.99995,606.36226)"
id="g4271"
style="display:inline;opacity:0.75">
<rect
ry="8"
rx="8"
y="362.49994"
x="426.49994"
height="83"
width="31.000011"
id="rect4164-4-7-5-3-8-8"
style="display:inline;opacity:0.01000001;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
ry="6.9999981"
rx="7"
y="363.49997"
x="427.49994"
height="80.999969"
width="29.000011"
id="rect4164-4-7-5-3-8"
style="display:inline;opacity:0.02000002;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.99999982;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
ry="6.0000005"
rx="6"
y="364.49997"
x="428.49994"
height="79"
width="27.000011"
id="rect4164-4-7-5-3"
style="display:inline;opacity:0.03999999;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
ry="5"
rx="4.9999995"
y="365.49997"
x="429.49997"
height="76.999969"
width="24.999981"
id="rect4164-4-7-5"
style="display:inline;opacity:0.06000001;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
id="rect4164-4-7"
d="m 431.64838,440.30463 c 0.72475,0.73691 1.73153,1.19531 2.85156,1.19531 l 15.00023,0 c 1.12003,0 2.12681,-0.4584 2.85156,-1.19531 -0.2591,0.12217 -0.5451,0.19531 -0.85156,0.19531 l -19.00023,0 c -0.30646,0 -0.59246,-0.0731 -0.85156,-0.19531 z"
style="display:inline;opacity:0.08999999;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csscssc" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 5.3 KiB

View File

@ -1,201 +0,0 @@
<?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="50"
height="20"
id="svg7539"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="switch-off.svg">
<defs
id="defs7541">
<linearGradient
id="linearGradient4695-1-4-3-5-0-6">
<stop
id="stop4697-9-9-7-0-1-5"
style="stop-color:#000000;stop-opacity:1;"
offset="0" />
<stop
id="stop4699-5-8-9-0-4-0"
style="stop-color:#000000;stop-opacity:0"
offset="1" />
</linearGradient>
<linearGradient
id="linearGradient3768-6">
<stop
style="stop-color:#0f0f0f;stop-opacity:1;"
offset="0"
id="stop3770-0" />
<stop
id="stop3778-6"
offset="0.078125"
style="stop-color:#171717;stop-opacity:1;" />
<stop
style="stop-color:#171717;stop-opacity:1;"
offset="0.97355771"
id="stop3774-2" />
<stop
style="stop-color:#1b1b1b;stop-opacity:1;"
offset="1"
id="stop3776-2" />
</linearGradient>
<linearGradient
id="linearGradient3969-0-4">
<stop
style="stop-color:#353537;stop-opacity:1;"
offset="0"
id="stop3971-2-6" />
<stop
style="stop-color:#4d4f52;stop-opacity:1;"
offset="1"
id="stop3973-0-1" />
</linearGradient>
<linearGradient
id="linearGradient3938">
<stop
id="stop3940"
offset="0"
style="stop-color:#ffffff;stop-opacity:0;" />
<stop
id="stop3942"
offset="1"
style="stop-color:#ffffff;stop-opacity:0.54901963;" />
</linearGradient>
<linearGradient
id="linearGradient6523">
<stop
id="stop6525"
offset="0"
style="stop-color:#1a1a1a;stop-opacity:1;" />
<stop
id="stop6527"
offset="1"
style="stop-color:#1a1a1a;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient3938-6">
<stop
id="stop3940-4"
offset="0"
style="stop-color:#bebebe;stop-opacity:1;" />
<stop
id="stop3942-8"
offset="1"
style="stop-color:#ffffff;stop-opacity:1;" />
</linearGradient>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="8.2495794"
inkscape:cx="1.1082592"
inkscape:cy="12.096906"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1920"
inkscape:window-height="1030"
inkscape:window-x="1920"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:snap-bbox="true"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox-midpoints="false"
inkscape:bbox-paths="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true">
<inkscape:grid
type="xygrid"
id="grid3019"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="-4"
originy="2.6171874e-06" />
</sodipodi:namedview>
<metadata
id="metadata7544">
<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
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer"
transform="translate(-120,87.999997)">
<g
transform="translate(-886,-418)"
style="display:inline;opacity:1"
id="switch"
inkscape:label="#g4820">
<g
id="layer1-9"
inkscape:label="Layer 1"
transform="matrix(-1,0,0,1,1177,420)">
<g
style="display:inline"
transform="translate(120,-116.99998)"
inkscape:label="Layer 1"
id="switch-active-2">
<g
id="g3900-12"
transform="translate(0,-1004.3622)">
<rect
style="display:inline;opacity:0;fill:#434343;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"
id="rect5465-3-32"
width="52"
height="24"
x="0"
y="1029.3622" />
<rect
style="fill:#cfcfcf;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="rect2987-07"
width="50"
height="20"
x="1"
y="1031.3622"
ry="11"
rx="11" />
<circle
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3759-7"
cx="41"
cy="1041.3622"
r="9" />
</g>
</g>
</g>
<path
inkscape:connector-curvature="0"
d="m 1043.0028,337 0.75,0 c 0.01,-9e-5 0.016,-3.5e-4 0.023,0 0.1912,0.008 0.3824,0.0964 0.5156,0.23437 l 1.711,1.71094 1.7343,-1.71094 c 0.1993,-0.17287 0.335,-0.22912 0.5157,-0.23437 l 0.75,0 0,0.75 c 0,0.21485 -0.026,0.41298 -0.1875,0.5625 l -1.711,1.71093 1.6875,1.6875 c 0.1412,0.14113 0.211,0.34009 0.211,0.53907 l 0,0.75 -0.75,0 c -0.199,-10e-6 -0.398,-0.0698 -0.5391,-0.21094 l -1.7109,-1.71094 -1.711,1.71094 c -0.1411,0.14114 -0.3401,0.21094 -0.539,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.07,-0.39794 0.2109,-0.53907 l 1.7109,-1.6875 -1.7109,-1.71093 c -0.1581,-0.14598 -0.2274,-0.35194 -0.2109,-0.5625 l 0,-0.75 z"
id="path10839-9-8-2-2-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;opacity:0.6;fill:#5c5c5c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 6.9 KiB

View File

@ -1,220 +0,0 @@
<?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="50"
height="20"
id="svg7539"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="switch-on.svg">
<defs
id="defs7541">
<linearGradient
id="linearGradient4695-1-4-3-5-0-6">
<stop
id="stop4697-9-9-7-0-1-5"
style="stop-color:#000000;stop-opacity:1;"
offset="0" />
<stop
id="stop4699-5-8-9-0-4-0"
style="stop-color:#000000;stop-opacity:0"
offset="1" />
</linearGradient>
<linearGradient
id="linearGradient3768-6">
<stop
style="stop-color:#0f0f0f;stop-opacity:1;"
offset="0"
id="stop3770-0" />
<stop
id="stop3778-6"
offset="0.078125"
style="stop-color:#171717;stop-opacity:1;" />
<stop
style="stop-color:#171717;stop-opacity:1;"
offset="0.97355771"
id="stop3774-2" />
<stop
style="stop-color:#1b1b1b;stop-opacity:1;"
offset="1"
id="stop3776-2" />
</linearGradient>
<linearGradient
id="linearGradient3969-0-4">
<stop
style="stop-color:#353537;stop-opacity:1;"
offset="0"
id="stop3971-2-6" />
<stop
style="stop-color:#4d4f52;stop-opacity:1;"
offset="1"
id="stop3973-0-1" />
</linearGradient>
<linearGradient
id="linearGradient3938">
<stop
id="stop3940"
offset="0"
style="stop-color:#ffffff;stop-opacity:0;" />
<stop
id="stop3942"
offset="1"
style="stop-color:#ffffff;stop-opacity:0.54901963;" />
</linearGradient>
<linearGradient
id="linearGradient6523">
<stop
id="stop6525"
offset="0"
style="stop-color:#1a1a1a;stop-opacity:1;" />
<stop
id="stop6527"
offset="1"
style="stop-color:#1a1a1a;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient3938-6">
<stop
id="stop3940-4"
offset="0"
style="stop-color:#bebebe;stop-opacity:1;" />
<stop
id="stop3942-8"
offset="1"
style="stop-color:#ffffff;stop-opacity:1;" />
</linearGradient>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="32.998318"
inkscape:cx="22.956778"
inkscape:cy="9.1247738"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1920"
inkscape:window-height="1030"
inkscape:window-x="1920"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:snap-bbox="true"
showguides="true"
inkscape:guide-bbox="true"
inkscape:snap-bbox-midpoints="false"
inkscape:bbox-paths="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true">
<inkscape:grid
type="xygrid"
id="grid3019"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="-4"
originy="2.6171874e-06" />
</sodipodi:namedview>
<metadata
id="metadata7544">
<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
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer"
transform="translate(-120,87.999997)">
<g
transform="translate(-886,-448)"
style="display:inline;opacity:1"
id="switch-active-2"
inkscape:label="#g4829">
<g
id="layer1-9-0"
inkscape:label="Layer 1"
transform="translate(885,450)"
style="display:inline;opacity:1">
<g
style="display:inline"
transform="translate(120,-116.99998)"
inkscape:label="Layer 1"
id="switch-active-8">
<g
id="g3900-1-87"
transform="translate(0,-1004.3622)">
<rect
style="display:inline;opacity:0;fill:#434343;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"
id="rect5465-3-3"
width="52"
height="24"
x="0"
y="1029.3622" />
<rect
style="fill:#92b372;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="rect2987-0-8"
width="50"
height="20"
x="1"
y="1031.3622"
ry="11"
rx="11" />
<circle
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3759-0"
cx="41"
cy="1041.3622"
r="9" />
</g>
</g>
</g>
<g
transform="translate(-1.0003162,0)"
id="g4816">
<rect
transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)"
ry="0.66666085"
rx="0.66666085"
y="-456.09485"
x="977.54999"
height="1.9999826"
width="5"
id="rect3977-39-2"
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;stroke:none" />
<rect
transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)"
ry="0"
y="-462.09485"
x="980.54999"
height="7.9999828"
width="2"
id="rect3979-7-0"
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;stroke:none" />
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 6.4 KiB

File diff suppressed because one or more lines are too long

View File

@ -288,11 +288,11 @@ StScrollBar {
.ripple-box {
width: 104px;
height: 104px;
background-image: url('common-assets/misc/corner-ripple.svg');
background-image: url('assets/misc/corner-ripple.svg');
background-size: contain;
&:rtl {
background-image: url('common-assets/misc/corner-ripple.svg');
background-image: url('assets/misc/corner-ripple.svg');
}
}

View File

@ -187,54 +187,54 @@
//arrow back
.calendar-change-month-back {
background-image: url('common-assets/misc/calendar-arrow-left.svg');
background-image: url('assets/misc/calendar-arrow-left.svg');
&:focus,
&:hover {
background-image: url('common-assets/misc/calendar-arrow-left-hover.svg');
background-image: url('assets/misc/calendar-arrow-left-hover.svg');
}
&:active {
background-image: url('common-assets/misc/calendar-arrow-left.svg');
background-image: url('assets/misc/calendar-arrow-left.svg');
}
&:rtl {
background-image: url('common-assets/misc/calendar-arrow-right.svg');
background-image: url('assets/misc/calendar-arrow-right.svg');
&:focus,
&:hover {
background-image: url('common-assets/misc/calendar-arrow-right-hover.svg');
background-image: url('assets/misc/calendar-arrow-right-hover.svg');
}
&:active {
background-image: url('common-assets/misc/calendar-arrow-right.svg');
background-image: url('assets/misc/calendar-arrow-right.svg');
}
}
}
//arrow forward
.calendar-change-month-forward {
background-image: url('common-assets/misc/calendar-arrow-right.svg');
background-image: url('assets/misc/calendar-arrow-right.svg');
&:focus,
&:hover {
background-image: url('common-assets/misc/calendar-arrow-right-hover.svg');
background-image: url('assets/misc/calendar-arrow-right-hover.svg');
}
&:active {
background-image: url('common-assets/misc/calendar-arrow-right.svg');
background-image: url('assets/misc/calendar-arrow-right.svg');
}
&:rtl {
background-image: url('common-assets/misc/calendar-arrow-left.svg');
background-image: url('assets/misc/calendar-arrow-left.svg');
&:focus,
&:hover {
background-image: url('common-assets/misc/calendar-arrow-left-hover.svg');
background-image: url('assets/misc/calendar-arrow-left-hover.svg');
}
&:active {
background-image: url('common-assets/misc/calendar-arrow-left.svg');
background-image: url('assets/misc/calendar-arrow-left.svg');
}
}
}
@ -262,8 +262,7 @@
&:hover {
color: $selected_fg_color;
background-color: $selected_bg_color;
background-color: transparentize($selected_bg_color, 0.2);
border-color: $selected_bg_color;
}
}
@ -271,8 +270,7 @@
color: $selected_fg_color;
margin-top: 16px;
margin-bottom: 0;
font-size: 1.2em;
font-weight: bold;
font-size: 1.1em;
}
// .calendar-day {

View File

@ -34,19 +34,19 @@
StBin {
width: 16px;
height: 16px;
background-image: url('#{$asset_path}/checkbox/checkbox-unchecked.svg');
background-image: url('assets/checkbox/checkbox-unchecked.svg');
}
&:focus StBin {
background-image: url('#{$asset_path}/checkbox/checkbox-unchecked-focused.svg');
background-image: url('assets/checkbox/checkbox-unchecked-focused.svg');
}
&:checked StBin {
background-image: url('#{$asset_path}/checkbox/checkbox-checked.svg');
background-image: url('assets/checkbox/checkbox-checked.svg');
}
&:focus:checked StBin {
background-image: url('#{$asset_path}/checkbox/checkbox-checked-focused.svg');
background-image: url('assets/checkbox/checkbox-checked-focused.svg');
}
}
@ -69,19 +69,19 @@
StBin {
width: 16px;
height: 16px;
background-image: url('#{$asset_path}/checkbox/checkbox-unchecked.svg');
background-image: url('assets/checkbox/checkbox-unchecked.svg');
}
&:focus StBin {
background-image: url('#{$asset_path}/checkbox/checkbox-unchecked-focused.svg');
background-image: url('assets/checkbox/checkbox-unchecked-focused.svg');
}
&:checked StBin {
background-image: url('#{$asset_path}/checkbox/checkbox-checked.svg');
background-image: url('assets/checkbox/checkbox-checked.svg');
}
&:focus:checked StBin {
background-image: url('#{$asset_path}/checkbox/checkbox-checked-focused.svg');
background-image: url('assets/checkbox/checkbox-checked-focused.svg');
}
}
@ -95,10 +95,10 @@
&-us,
&-intl {
background-image: url('#{$asset_path}/switch/switch-off.svg');
background-image: url('assets/switch/switch-off.svg');
&:checked {
background-image: url('#{$asset_path}/switch/switch-on.svg');
background-image: url('assets/switch/switch-on.svg');
}
}
}

View File

@ -5,7 +5,7 @@
color: $fg_color;
border: 0;
border-radius: 12px;
background-color: transparentize($bg_color, 0.1);
background-color: transparentize($bg_color, 0.05);
}
.popup-sub-menu {
@ -120,8 +120,8 @@
&-favorites-box {
padding: 10px;
transition-duration: 300;
background-color: transparentize($base_color, 0.7);
border: 0;
background-color: transparentize($base_color, 0.5);
border: 1px solid transparentize($grey_color, .5);
border-radius: 6px;
}
@ -244,11 +244,12 @@
#menu-search-entry {
width: 220px;
min-height: 16px;
margin-right:10px;
font-weight: normal;
border: 0;
border: 1px solid $grey_color;
border-radius: 6px;
caret-color: $fg_color;
background-color: transparentize($grey_color, 0.35);
background-color: $base_color;
@extend %entry;
&:focus,
@ -259,6 +260,7 @@
.menu-search-entry-icon {
icon-size: 1em;
margin-right:6px;
color: $fg_color;
}

View File

@ -14,7 +14,7 @@
.popup-menu & {
color: $fg_color;
border-image: url('#{$asset_path}/misc/message.svg') 9 9 9 9;
border-image: url('assets/misc/message.svg') 9 9 9 9;
.notification-button,
.notification-icon-button {

View File

@ -287,9 +287,9 @@
// Overview corner
//
#overview-corner {
background-image: url('common-assets/misc/overview.png');
background-image: url('assets/misc/overview.png');
&:hover {
background-image: url('common-assets/misc/overview-hover.png');
background-image: url('assets/misc/overview-hover.png');
}
}

View File

@ -4,9 +4,9 @@
* @date 2022/05/05 14:02:55
*/
$asset_path: dark-assets;
$selected_bg_color: rgba(100, 181, 246, 0.35);
$selected_fg_color: #f2f5fc;
$highlight_color: #64b5f6;
$base_color: #3c4d5e;
@ -15,8 +15,6 @@ $bg_color: #57606f;
$fg_color: #ced6e0;
$grey_color: #86909b;
$selected_fg_color: #f2f5fc;
$borders_color: darken($bg_color, 6%);
$separator_color: darken($grey_color, 6%);

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 224 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 220 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 218 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 203 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 207 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 276 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 312 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 222 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 221 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 307 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 213 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 215 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 303 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 219 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 218 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 204 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 210 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 278 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 315 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 266 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 252 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 257 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 252 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 344 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 356 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 259 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 256 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 237 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 222 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 234 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 232 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 239 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 231 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 262 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 254 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 271 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 254 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 223 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 210 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 210 B

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