init
|
@ -0,0 +1,17 @@
|
|||
.DS_Store
|
||||
.AppleDouble
|
||||
.LSOverride
|
||||
.idea
|
||||
._*
|
||||
.Spotlight-V100
|
||||
.Trashes
|
||||
|
||||
|
||||
|
||||
build
|
||||
build/**
|
||||
|
||||
node_modules
|
||||
node_modules/**
|
||||
|
||||
package-lock.json
|
|
@ -0,0 +1,114 @@
|
|||
#!/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)
|
|
@ -0,0 +1,11 @@
|
|||
This theme uses libsass to process the sass/*.scss. Never edit any of the .css files manually.
|
||||
|
||||
#### Editing the theme
|
||||
|
||||
In most cases edits will done in sass/_common.scss. The sass directory contains several other supporting style sheets:
|
||||
|
||||
* _colors.scss This file defines the color variables used by the theme
|
||||
|
||||
* _drawing.scss Drawing helper mixins/functions to allow for easier definition of widget drawing
|
||||
|
||||
Once you have made your edits run ./parse-sass.sh to update the css files
|
|
@ -0,0 +1,60 @@
|
|||
<?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="90.311111mm"
|
||||
height="0.56444442mm"
|
||||
viewBox="0 0 320 1.9999999"
|
||||
id="svg7537"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="menu-separator.svg">
|
||||
<defs
|
||||
id="defs7539" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="11.2"
|
||||
inkscape:cx="115.53549"
|
||||
inkscape:cy="8.9322818"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="723"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="23"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata7542">
|
||||
<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(340,-443.3622)" />
|
||||
</svg>
|
After Width: | Height: | Size: 1.7 KiB |
|
@ -0,0 +1,117 @@
|
|||
<?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" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="16"
|
||||
inkscape:cx="7.0289763"
|
||||
inkscape:cy="105.84046"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1030"
|
||||
inkscape:window-x="1920"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
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 />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Ebene 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-852.36218)">
|
||||
<path
|
||||
style="opacity:1;fill:#8fa876;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
|
||||
d="M 3 0 C 1.3380015 0 0 1.3380015 0 3 L 0 197 C 0 198.662 1.3380015 200 3 200 L 36 200 C 37.661999 200 39 198.662 39 197 L 39 3 C 39 1.3380015 37.661999 0 36 0 L 3 0 z M 3 1 L 36 1 C 37.108 1 38 1.892 38 3 L 38 197 C 38 198.108 37.108 199 36 199 L 3 199 C 1.892 199 1 198.108 1 197 L 1 3 C 1 1.892 1.892 1 3 1 z "
|
||||
transform="translate(0,852.36218)"
|
||||
id="rect3810" />
|
||||
<g
|
||||
transform="translate(0,-0.9999969)"
|
||||
id="g3917-7"
|
||||
style="fill:#000000;fill-opacity:1;opacity:0.5" />
|
||||
<rect
|
||||
rx="2"
|
||||
style="opacity:1;fill:#8fa876;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect3812"
|
||||
width="37"
|
||||
height="198"
|
||||
x="1.000005"
|
||||
y="853.36218"
|
||||
ry="2" />
|
||||
<g
|
||||
id="g3917"
|
||||
style="fill:#ffffff;fill-opacity:1">
|
||||
<rect
|
||||
ry="1.1428567"
|
||||
y="944.36218"
|
||||
x="17"
|
||||
height="15.999994"
|
||||
width="2.0000002"
|
||||
id="rect3897"
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
|
||||
<rect
|
||||
transform="matrix(0,1,-1,0,0,0)"
|
||||
ry="1.1428567"
|
||||
y="-26"
|
||||
x="951.36218"
|
||||
height="15.999994"
|
||||
width="2.0000002"
|
||||
id="rect3897-6"
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.0 KiB |
|
@ -0,0 +1,117 @@
|
|||
<?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-hover.svg">
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="16"
|
||||
inkscape:cx="3.4046076"
|
||||
inkscape:cy="118.15924"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1030"
|
||||
inkscape:window-x="1920"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
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 />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Ebene 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-852.36218)">
|
||||
<path
|
||||
style="opacity:0.45;fill:#000000;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
|
||||
d="M 3 0 C 1.3380015 0 0 1.3380015 0 3 L 0 197 C 0 198.662 1.3380015 200 3 200 L 36 200 C 37.661999 200 39 198.662 39 197 L 39 3 C 39 1.3380015 37.661999 0 36 0 L 3 0 z M 3 1 L 36 1 C 37.108 1 38 1.892 38 3 L 38 197 C 38 198.108 37.108 199 36 199 L 3 199 C 1.892 199 1 198.108 1 197 L 1 3 C 1 1.892 1.892 1 3 1 z "
|
||||
transform="translate(0,852.36218)"
|
||||
id="rect3810" />
|
||||
<g
|
||||
transform="translate(0,-0.9999969)"
|
||||
id="g3917-7"
|
||||
style="fill:#000000;fill-opacity:1;opacity:0.5" />
|
||||
<rect
|
||||
rx="2"
|
||||
style="opacity:0.45;fill:#202020;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect3812"
|
||||
width="37"
|
||||
height="198"
|
||||
x="1.000005"
|
||||
y="853.36218"
|
||||
ry="2" />
|
||||
<g
|
||||
id="g3917"
|
||||
style="fill:#bababa;fill-opacity:1">
|
||||
<rect
|
||||
ry="1.1428567"
|
||||
y="944.36218"
|
||||
x="17"
|
||||
height="15.999994"
|
||||
width="2.0000002"
|
||||
id="rect3897"
|
||||
style="opacity:1;fill:#bababa;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
|
||||
<rect
|
||||
transform="matrix(0,1,-1,0,0,0)"
|
||||
ry="1.1428567"
|
||||
y="-26"
|
||||
x="951.36218"
|
||||
height="15.999994"
|
||||
width="2.0000002"
|
||||
id="rect3897-6"
|
||||
style="opacity:1;fill:#bababa;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.0 KiB |
|
@ -0,0 +1,117 @@
|
|||
<?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.svg">
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="22.627417"
|
||||
inkscape:cx="7.3133825"
|
||||
inkscape:cy="105.84268"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1030"
|
||||
inkscape:window-x="1920"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="true"
|
||||
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 />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Ebene 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-852.36218)">
|
||||
<path
|
||||
style="opacity:0.45;fill:#000000;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
|
||||
d="M 3 0 C 1.3380015 0 0 1.3380015 0 3 L 0 197 C 0 198.662 1.3380015 200 3 200 L 36 200 C 37.661999 200 39 198.662 39 197 L 39 3 C 39 1.3380015 37.661999 0 36 0 L 3 0 z M 3 1 L 36 1 C 37.108 1 38 1.892 38 3 L 38 197 C 38 198.108 37.108 199 36 199 L 3 199 C 1.892 199 1 198.108 1 197 L 1 3 C 1 1.892 1.892 1 3 1 z "
|
||||
transform="translate(0,852.36218)"
|
||||
id="rect3810" />
|
||||
<g
|
||||
transform="translate(0,-0.9999969)"
|
||||
id="g3917-7"
|
||||
style="fill:#000000;fill-opacity:1;opacity:0.5" />
|
||||
<rect
|
||||
rx="2"
|
||||
style="opacity:0.3;fill:#000000;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect3812"
|
||||
width="37"
|
||||
height="198"
|
||||
x="1.000005"
|
||||
y="853.36218"
|
||||
ry="2" />
|
||||
<g
|
||||
id="g3917"
|
||||
style="fill:#bababa;fill-opacity:1">
|
||||
<rect
|
||||
ry="1.1428567"
|
||||
y="944.36218"
|
||||
x="17"
|
||||
height="15.999994"
|
||||
width="2.0000002"
|
||||
id="rect3897"
|
||||
style="opacity:1;fill:#bababa;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
|
||||
<rect
|
||||
transform="matrix(0,1,-1,0,0,0)"
|
||||
ry="1.1428567"
|
||||
y="-26"
|
||||
x="951.36218"
|
||||
height="15.999994"
|
||||
width="2.0000002"
|
||||
id="rect3897-6"
|
||||
style="opacity:1;fill:#bababa;fill-opacity:1;stroke:#102b68;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.0 KiB |
|
@ -0,0 +1,127 @@
|
|||
<?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="bg.svg">
|
||||
<defs
|
||||
id="defs5388" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="11.313708"
|
||||
inkscape:cx="18.271674"
|
||||
inkscape:cy="5.838404"
|
||||
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.81;fill:none;fill-opacity:1;stroke:#161a26;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: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"
|
||||
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.65">
|
||||
<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.02000002;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.07000002;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.12999998;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.2;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.25;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>
|
After Width: | Height: | Size: 4.8 KiB |
|
@ -0,0 +1,152 @@
|
|||
<?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"
|
||||
sodipodi:docname="calendar-arrow-left-hover.svg"
|
||||
height="16"
|
||||
id="svg7384"
|
||||
inkscape:version="0.91 r13725"
|
||||
version="1.1"
|
||||
width="16">
|
||||
<metadata
|
||||
id="metadata90">
|
||||
<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>Gnome Symbolic Icon Theme</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:bbox-paths="true"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
inkscape:current-layer="layer12"
|
||||
inkscape:cx="7.3546086"
|
||||
inkscape:cy="7.9323223"
|
||||
gridtolerance="10"
|
||||
inkscape:guide-bbox="true"
|
||||
guidetolerance="10"
|
||||
id="namedview88"
|
||||
inkscape:object-nodes="false"
|
||||
inkscape:object-paths="false"
|
||||
objecttolerance="10"
|
||||
pagecolor="#ffffff"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
showborder="true"
|
||||
showgrid="true"
|
||||
showguides="true"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:snap-bbox-midpoints="false"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:snap-grids="true"
|
||||
inkscape:snap-nodes="true"
|
||||
inkscape:snap-others="false"
|
||||
inkscape:snap-to-guides="true"
|
||||
inkscape:window-height="1030"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-x="1920"
|
||||
inkscape:window-y="0"
|
||||
inkscape:zoom="22.627417"
|
||||
inkscape:snap-bbox-edge-midpoints="true">
|
||||
<inkscape:grid
|
||||
empspacing="2"
|
||||
enabled="true"
|
||||
id="grid4866"
|
||||
originx="141px"
|
||||
originy="530px"
|
||||
snapvisiblegridlinesonly="true"
|
||||
spacingx="1px"
|
||||
spacingy="1px"
|
||||
type="xygrid"
|
||||
visible="true" />
|
||||
<inkscape:grid
|
||||
color="#000000"
|
||||
empcolor="#000000"
|
||||
empopacity="0"
|
||||
empspacing="4"
|
||||
enabled="true"
|
||||
id="grid5968"
|
||||
opacity="0.1254902"
|
||||
originx="141px"
|
||||
originy="530px"
|
||||
snapvisiblegridlinesonly="true"
|
||||
spacingx="0.5px"
|
||||
spacingy="0.5px"
|
||||
type="xygrid"
|
||||
visible="true" />
|
||||
</sodipodi:namedview>
|
||||
<title
|
||||
id="title9167">Gnome Symbolic Icon Theme</title>
|
||||
<defs
|
||||
id="defs7386" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer9"
|
||||
inkscape:label="status"
|
||||
style="display:inline"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer10"
|
||||
inkscape:label="devices"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer11"
|
||||
inkscape:label="apps"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer13"
|
||||
inkscape:label="places"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer14"
|
||||
inkscape:label="mimetypes"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer15"
|
||||
inkscape:label="emblems"
|
||||
style="display:inline"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="g71291"
|
||||
inkscape:label="emotes"
|
||||
style="display:inline"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="g4953"
|
||||
inkscape:label="categories"
|
||||
style="display:inline"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer12"
|
||||
inkscape:label="actions"
|
||||
style="display:inline"
|
||||
transform="translate(-100.0002,-747)">
|
||||
<path
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;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;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#8fa876;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
|
||||
d="m 109.82336,751.00006 a 0.67182557,0.66502524 0 0 0 -0.10367,0.009 0.67182557,0.66502524 0 0 0 -0.39887,0.18702 l -3.35878,3.32479 -0.46184,0.47795 0.46184,0.47792 3.35878,3.32481 a 0.68281953,0.67590797 0 0 0 0.698,0.16363 c 0.0374,0.0143 0.0779,0.0233 0.1207,0.0233 0.18608,0 0.33589,-0.14829 0.33589,-0.33248 0,-0.0423 -0.009,-0.0823 -0.0236,-0.11948 a 0.68281953,0.67590797 0 0 0 -0.16531,-0.69094 l -2.876,-2.84689 2.87597,-2.84686 a 0.67182557,0.66502524 0 0 0 0.17056,-0.72082 c 0.008,-0.0292 0.0185,-0.058 0.0185,-0.0896 0,-0.18421 -0.14978,-0.33249 -0.33587,-0.33249 -0.0395,0 -0.0765,0.01 -0.11152,0.022 A 0.67182557,0.66502524 0 0 0 109.82334,751 Z"
|
||||
id="path6040"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.3 KiB |
|
@ -0,0 +1,152 @@
|
|||
<?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"
|
||||
sodipodi:docname="calendar-arrow-left.svg"
|
||||
height="16"
|
||||
id="svg7384"
|
||||
inkscape:version="0.91 r13725"
|
||||
version="1.1"
|
||||
width="16">
|
||||
<metadata
|
||||
id="metadata90">
|
||||
<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>Gnome Symbolic Icon Theme</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:bbox-paths="true"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
inkscape:current-layer="layer12"
|
||||
inkscape:cx="13.983735"
|
||||
inkscape:cy="8.0207106"
|
||||
gridtolerance="10"
|
||||
inkscape:guide-bbox="true"
|
||||
guidetolerance="10"
|
||||
id="namedview88"
|
||||
inkscape:object-nodes="false"
|
||||
inkscape:object-paths="false"
|
||||
objecttolerance="10"
|
||||
pagecolor="#ffffff"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
showborder="true"
|
||||
showgrid="true"
|
||||
showguides="true"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:snap-bbox-midpoints="false"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:snap-grids="true"
|
||||
inkscape:snap-nodes="true"
|
||||
inkscape:snap-others="false"
|
||||
inkscape:snap-to-guides="true"
|
||||
inkscape:window-height="720"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="25"
|
||||
inkscape:zoom="22.627417"
|
||||
inkscape:snap-bbox-edge-midpoints="true">
|
||||
<inkscape:grid
|
||||
empspacing="2"
|
||||
enabled="true"
|
||||
id="grid4866"
|
||||
originx="141px"
|
||||
originy="530px"
|
||||
snapvisiblegridlinesonly="true"
|
||||
spacingx="1px"
|
||||
spacingy="1px"
|
||||
type="xygrid"
|
||||
visible="true" />
|
||||
<inkscape:grid
|
||||
color="#000000"
|
||||
empcolor="#000000"
|
||||
empopacity="0"
|
||||
empspacing="4"
|
||||
enabled="true"
|
||||
id="grid5968"
|
||||
opacity="0.1254902"
|
||||
originx="141px"
|
||||
originy="530px"
|
||||
snapvisiblegridlinesonly="true"
|
||||
spacingx="0.5px"
|
||||
spacingy="0.5px"
|
||||
type="xygrid"
|
||||
visible="true" />
|
||||
</sodipodi:namedview>
|
||||
<title
|
||||
id="title9167">Gnome Symbolic Icon Theme</title>
|
||||
<defs
|
||||
id="defs7386" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer9"
|
||||
inkscape:label="status"
|
||||
style="display:inline"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer10"
|
||||
inkscape:label="devices"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer11"
|
||||
inkscape:label="apps"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer13"
|
||||
inkscape:label="places"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer14"
|
||||
inkscape:label="mimetypes"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer15"
|
||||
inkscape:label="emblems"
|
||||
style="display:inline"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="g71291"
|
||||
inkscape:label="emotes"
|
||||
style="display:inline"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="g4953"
|
||||
inkscape:label="categories"
|
||||
style="display:inline"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer12"
|
||||
inkscape:label="actions"
|
||||
style="display:inline"
|
||||
transform="translate(-100.0002,-747)">
|
||||
<path
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;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;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#a1a1a1;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
|
||||
d="m 109.82336,751.00006 a 0.67182557,0.66502524 0 0 0 -0.10367,0.009 0.67182557,0.66502524 0 0 0 -0.39887,0.18702 l -3.35878,3.32479 -0.46184,0.47795 0.46184,0.47792 3.35878,3.32481 a 0.68281953,0.67590797 0 0 0 0.698,0.16363 c 0.0374,0.0143 0.0779,0.0233 0.1207,0.0233 0.18608,0 0.33589,-0.14829 0.33589,-0.33248 0,-0.0423 -0.009,-0.0823 -0.0236,-0.11948 a 0.68281953,0.67590797 0 0 0 -0.16531,-0.69094 l -2.876,-2.84689 2.87597,-2.84686 a 0.67182557,0.66502524 0 0 0 0.17056,-0.72082 c 0.008,-0.0292 0.0185,-0.058 0.0185,-0.0896 0,-0.18421 -0.14978,-0.33249 -0.33587,-0.33249 -0.0395,0 -0.0765,0.01 -0.11152,0.022 A 0.67182557,0.66502524 0 0 0 109.82334,751 Z"
|
||||
id="path6040"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.3 KiB |
|
@ -0,0 +1,152 @@
|
|||
<?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"
|
||||
sodipodi:docname="calendar-arrow-right-hover.svg"
|
||||
height="16"
|
||||
id="svg7384"
|
||||
inkscape:version="0.91 r13725"
|
||||
version="1.1"
|
||||
width="16">
|
||||
<metadata
|
||||
id="metadata90">
|
||||
<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>Gnome Symbolic Icon Theme</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:bbox-paths="true"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
inkscape:current-layer="layer12"
|
||||
inkscape:cx="7.3546086"
|
||||
inkscape:cy="7.9323223"
|
||||
gridtolerance="10"
|
||||
inkscape:guide-bbox="true"
|
||||
guidetolerance="10"
|
||||
id="namedview88"
|
||||
inkscape:object-nodes="false"
|
||||
inkscape:object-paths="false"
|
||||
objecttolerance="10"
|
||||
pagecolor="#ffffff"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
showborder="true"
|
||||
showgrid="true"
|
||||
showguides="true"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:snap-bbox-midpoints="false"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:snap-grids="true"
|
||||
inkscape:snap-nodes="true"
|
||||
inkscape:snap-others="false"
|
||||
inkscape:snap-to-guides="true"
|
||||
inkscape:window-height="1030"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-x="1920"
|
||||
inkscape:window-y="0"
|
||||
inkscape:zoom="22.627417"
|
||||
inkscape:snap-bbox-edge-midpoints="true">
|
||||
<inkscape:grid
|
||||
empspacing="2"
|
||||
enabled="true"
|
||||
id="grid4866"
|
||||
originx="141px"
|
||||
originy="530px"
|
||||
snapvisiblegridlinesonly="true"
|
||||
spacingx="1px"
|
||||
spacingy="1px"
|
||||
type="xygrid"
|
||||
visible="true" />
|
||||
<inkscape:grid
|
||||
color="#000000"
|
||||
empcolor="#000000"
|
||||
empopacity="0"
|
||||
empspacing="4"
|
||||
enabled="true"
|
||||
id="grid5968"
|
||||
opacity="0.1254902"
|
||||
originx="141px"
|
||||
originy="530px"
|
||||
snapvisiblegridlinesonly="true"
|
||||
spacingx="0.5px"
|
||||
spacingy="0.5px"
|
||||
type="xygrid"
|
||||
visible="true" />
|
||||
</sodipodi:namedview>
|
||||
<title
|
||||
id="title9167">Gnome Symbolic Icon Theme</title>
|
||||
<defs
|
||||
id="defs7386" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer9"
|
||||
inkscape:label="status"
|
||||
style="display:inline"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer10"
|
||||
inkscape:label="devices"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer11"
|
||||
inkscape:label="apps"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer13"
|
||||
inkscape:label="places"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer14"
|
||||
inkscape:label="mimetypes"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer15"
|
||||
inkscape:label="emblems"
|
||||
style="display:inline"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="g71291"
|
||||
inkscape:label="emotes"
|
||||
style="display:inline"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="g4953"
|
||||
inkscape:label="categories"
|
||||
style="display:inline"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer12"
|
||||
inkscape:label="actions"
|
||||
style="display:inline"
|
||||
transform="translate(-100.0002,-747)">
|
||||
<path
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;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;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#8fa876;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
|
||||
d="m 106.17699,751.00006 a 0.67182557,0.66502524 0 0 1 0.10367,0.009 0.67182557,0.66502524 0 0 1 0.39887,0.18702 l 3.35878,3.32479 0.46184,0.47795 -0.46184,0.47792 -3.35878,3.32481 a 0.68281953,0.67590797 0 0 1 -0.698,0.16363 c -0.0374,0.0143 -0.0779,0.0233 -0.1207,0.0233 -0.18608,0 -0.33589,-0.14829 -0.33589,-0.33248 0,-0.0423 0.009,-0.0823 0.0236,-0.11948 a 0.68281953,0.67590797 0 0 1 0.16531,-0.69094 l 2.876,-2.84689 -2.87597,-2.84686 a 0.67182557,0.66502524 0 0 1 -0.17056,-0.72082 c -0.008,-0.0292 -0.0185,-0.058 -0.0185,-0.0896 0,-0.18421 0.14978,-0.33249 0.33587,-0.33249 0.0395,0 0.0765,0.01 0.11152,0.022 A 0.67182557,0.66502524 0 0 1 106.17701,751 Z"
|
||||
id="path6040"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.3 KiB |
|
@ -0,0 +1,152 @@
|
|||
<?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"
|
||||
sodipodi:docname="calendar-arrow-right.svg"
|
||||
height="16"
|
||||
id="svg7384"
|
||||
inkscape:version="0.91 r13725"
|
||||
version="1.1"
|
||||
width="16">
|
||||
<metadata
|
||||
id="metadata90">
|
||||
<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>Gnome Symbolic Icon Theme</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:bbox-paths="true"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
inkscape:current-layer="layer12"
|
||||
inkscape:cx="13.983735"
|
||||
inkscape:cy="8.0207106"
|
||||
gridtolerance="10"
|
||||
inkscape:guide-bbox="true"
|
||||
guidetolerance="10"
|
||||
id="namedview88"
|
||||
inkscape:object-nodes="false"
|
||||
inkscape:object-paths="false"
|
||||
objecttolerance="10"
|
||||
pagecolor="#ffffff"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
showborder="true"
|
||||
showgrid="true"
|
||||
showguides="true"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:snap-bbox-midpoints="false"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:snap-grids="true"
|
||||
inkscape:snap-nodes="true"
|
||||
inkscape:snap-others="false"
|
||||
inkscape:snap-to-guides="true"
|
||||
inkscape:window-height="720"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="25"
|
||||
inkscape:zoom="22.627417"
|
||||
inkscape:snap-bbox-edge-midpoints="true">
|
||||
<inkscape:grid
|
||||
empspacing="2"
|
||||
enabled="true"
|
||||
id="grid4866"
|
||||
originx="141px"
|
||||
originy="530px"
|
||||
snapvisiblegridlinesonly="true"
|
||||
spacingx="1px"
|
||||
spacingy="1px"
|
||||
type="xygrid"
|
||||
visible="true" />
|
||||
<inkscape:grid
|
||||
color="#000000"
|
||||
empcolor="#000000"
|
||||
empopacity="0"
|
||||
empspacing="4"
|
||||
enabled="true"
|
||||
id="grid5968"
|
||||
opacity="0.1254902"
|
||||
originx="141px"
|
||||
originy="530px"
|
||||
snapvisiblegridlinesonly="true"
|
||||
spacingx="0.5px"
|
||||
spacingy="0.5px"
|
||||
type="xygrid"
|
||||
visible="true" />
|
||||
</sodipodi:namedview>
|
||||
<title
|
||||
id="title9167">Gnome Symbolic Icon Theme</title>
|
||||
<defs
|
||||
id="defs7386" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer9"
|
||||
inkscape:label="status"
|
||||
style="display:inline"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer10"
|
||||
inkscape:label="devices"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer11"
|
||||
inkscape:label="apps"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer13"
|
||||
inkscape:label="places"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer14"
|
||||
inkscape:label="mimetypes"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer15"
|
||||
inkscape:label="emblems"
|
||||
style="display:inline"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="g71291"
|
||||
inkscape:label="emotes"
|
||||
style="display:inline"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="g4953"
|
||||
inkscape:label="categories"
|
||||
style="display:inline"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer12"
|
||||
inkscape:label="actions"
|
||||
style="display:inline"
|
||||
transform="translate(-100.0002,-747)">
|
||||
<path
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;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;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#a1a1a1;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
|
||||
d="m 106.17699,751.00006 a 0.67182557,0.66502524 0 0 1 0.10367,0.009 0.67182557,0.66502524 0 0 1 0.39887,0.18702 l 3.35878,3.32479 0.46184,0.47795 -0.46184,0.47792 -3.35878,3.32481 a 0.68281953,0.67590797 0 0 1 -0.698,0.16363 c -0.0374,0.0143 -0.0779,0.0233 -0.1207,0.0233 -0.18608,0 -0.33589,-0.14829 -0.33589,-0.33248 0,-0.0423 0.009,-0.0823 0.0236,-0.11948 a 0.68281953,0.67590797 0 0 1 0.16531,-0.69094 l 2.876,-2.84689 -2.87597,-2.84686 a 0.67182557,0.66502524 0 0 1 -0.17056,-0.72082 c -0.008,-0.0292 -0.0185,-0.058 -0.0185,-0.0896 0,-0.18421 0.14978,-0.33249 0.33587,-0.33249 0.0395,0 0.0765,0.01 0.11152,0.022 A 0.67182557,0.66502524 0 0 1 106.17701,751 Z"
|
||||
id="path6040"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.3 KiB |
|
@ -0,0 +1,100 @@
|
|||
<?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>
|
After Width: | Height: | Size: 4.9 KiB |
|
@ -0,0 +1,100 @@
|
|||
<?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>
|
After Width: | Height: | Size: 4.9 KiB |
|
@ -0,0 +1,100 @@
|
|||
<?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>
|
After Width: | Height: | Size: 4.8 KiB |
|
@ -0,0 +1,122 @@
|
|||
<?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: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="104"
|
||||
height="104"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="corner-ripple-ltr.svg">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
id="linearGradient3857">
|
||||
<stop
|
||||
style="stop-color:#8fa876;stop-opacity:0"
|
||||
offset="0"
|
||||
id="stop3859" />
|
||||
<stop
|
||||
style="stop-color:#8fa876;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3861" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3857"
|
||||
id="radialGradient3863"
|
||||
cx="0"
|
||||
cy="0"
|
||||
fx="0"
|
||||
fy="0"
|
||||
r="52"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(52.000005,1000.3622)" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="5.6"
|
||||
inkscape:cx="20.217701"
|
||||
inkscape:cy="44.091095"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="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="grid2985"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originy="2px" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="52,0"
|
||||
id="guide2987" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="52,0"
|
||||
id="guide2989" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="0,52"
|
||||
id="guide3761" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="0,52"
|
||||
id="guide3763" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="51,1"
|
||||
id="guide3773" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="51,1"
|
||||
id="guide3775" />
|
||||
</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:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Ebene 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-948.3622)">
|
||||
<circle
|
||||
style="fill:url(#radialGradient3863);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path2991"
|
||||
cx="52.000004"
|
||||
cy="1000.3622"
|
||||
r="52" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
|
@ -0,0 +1,158 @@
|
|||
<?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.000011"
|
||||
height="22.999983"
|
||||
viewBox="0 0 32.000011 22.999983"
|
||||
id="svg5386"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="desklet-header.svg">
|
||||
<defs
|
||||
id="defs5388">
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath4156">
|
||||
<rect
|
||||
style="opacity:0.45;fill:#000000;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="rect4158"
|
||||
width="48"
|
||||
height="26.999983"
|
||||
x="-7"
|
||||
y="-1043.3622"
|
||||
transform="scale(1,-1)" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="15.999999"
|
||||
inkscape:cx="13.051047"
|
||||
inkscape:cy="8.8454562"
|
||||
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"
|
||||
showguides="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid5954"
|
||||
originx="1.0975551e-05"
|
||||
originy="-9.0000174" />
|
||||
</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(1.0975552e-5,-1020.3622)">
|
||||
<g
|
||||
id="g4146"
|
||||
clip-path="url(#clipPath4156)">
|
||||
<rect
|
||||
ry="1.9999999"
|
||||
rx="2.0000005"
|
||||
y="1024.8622"
|
||||
x="4.5"
|
||||
height="21.999889"
|
||||
width="23"
|
||||
id="rect4164-4-3"
|
||||
style="display:inline;opacity:0.84;fill:none;fill-opacity:1;stroke:#161a26;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<rect
|
||||
ry="1.4"
|
||||
rx="1.4"
|
||||
y="1025.3622"
|
||||
x="5"
|
||||
height="20.999971"
|
||||
width="22"
|
||||
id="rect4164"
|
||||
style="display:inline;opacity:0.95;fill:#2b2f3b;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" />
|
||||
<g
|
||||
style="display:inline;opacity:0.75"
|
||||
id="g4271"
|
||||
transform="translate(-425.99995,658.36226)">
|
||||
<rect
|
||||
style="display:inline;opacity:0.02000002;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-7-5-3-8-8"
|
||||
width="31.000011"
|
||||
height="31"
|
||||
x="426.49994"
|
||||
y="362.49994"
|
||||
rx="8"
|
||||
ry="8" />
|
||||
<rect
|
||||
style="display:inline;opacity:0.07000002;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"
|
||||
id="rect4164-4-7-5-3-8"
|
||||
width="29.000011"
|
||||
height="28.999996"
|
||||
x="427.49994"
|
||||
y="363.49997"
|
||||
rx="7"
|
||||
ry="6.999999" />
|
||||
<rect
|
||||
style="display:inline;opacity:0.12999998;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-7-5-3"
|
||||
width="27.000011"
|
||||
height="26.999998"
|
||||
x="428.49994"
|
||||
y="364.49994"
|
||||
rx="6"
|
||||
ry="6" />
|
||||
<rect
|
||||
style="display:inline;opacity:0.2;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-7-5"
|
||||
width="24.999981"
|
||||
height="24.999998"
|
||||
x="429.49997"
|
||||
y="365.49997"
|
||||
rx="4.9999995"
|
||||
ry="5" />
|
||||
<path
|
||||
sodipodi:nodetypes="csscssc"
|
||||
inkscape:connector-curvature="0"
|
||||
style="display:inline;opacity:0.25;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"
|
||||
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"
|
||||
id="rect4164-4-7"
|
||||
transform="translate(-6.1035156e-5,0)" />
|
||||
</g>
|
||||
</g>
|
||||
<rect
|
||||
style="opacity:0.2;fill:#000000;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="rect4145"
|
||||
width="22"
|
||||
height="1"
|
||||
x="5"
|
||||
y="1042.3622" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.9 KiB |
|
@ -0,0 +1,152 @@
|
|||
<?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.000011"
|
||||
height="22.999983"
|
||||
viewBox="0 0 32.000011 22.999983"
|
||||
id="svg5386"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="desklet.svg">
|
||||
<defs
|
||||
id="defs5388">
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath4180">
|
||||
<rect
|
||||
transform="scale(1,-1)"
|
||||
y="-1052.1622"
|
||||
x="-7"
|
||||
height="22.999983"
|
||||
width="48"
|
||||
id="rect4182"
|
||||
style="opacity:0.45;fill:#000000;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="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="11.313708"
|
||||
inkscape:cx="22.308942"
|
||||
inkscape:cy="7.633471"
|
||||
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"
|
||||
showguides="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid5954"
|
||||
originx="1.0975551e-05"
|
||||
originy="-9.0000174" />
|
||||
</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></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Ebene 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(1.0975552e-5,-1020.3622)">
|
||||
<g
|
||||
id="g4146"
|
||||
clip-path="url(#clipPath4180)"
|
||||
transform="translate(0,-8.8000161)">
|
||||
<rect
|
||||
ry="1.9999999"
|
||||
rx="2.0000005"
|
||||
y="1024.8622"
|
||||
x="4.5"
|
||||
height="21.999889"
|
||||
width="23"
|
||||
id="rect4164-4-3"
|
||||
style="display:inline;opacity:0.72000002;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" />
|
||||
<rect
|
||||
ry="1.4"
|
||||
rx="1.4"
|
||||
y="1025.3622"
|
||||
x="5"
|
||||
height="20.999971"
|
||||
width="22"
|
||||
id="rect4164"
|
||||
style="display:inline;opacity:0.95;fill:#3c4049;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" />
|
||||
<g
|
||||
style="display:inline;opacity:0.75"
|
||||
id="g4271"
|
||||
transform="translate(-425.99995,658.36226)">
|
||||
<rect
|
||||
style="display:inline;opacity:0.02000002;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-7-5-3-8-8"
|
||||
width="31.000011"
|
||||
height="31"
|
||||
x="426.49994"
|
||||
y="362.49994"
|
||||
rx="8"
|
||||
ry="8" />
|
||||
<rect
|
||||
style="display:inline;opacity:0.07000002;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"
|
||||
id="rect4164-4-7-5-3-8"
|
||||
width="29.000011"
|
||||
height="28.999996"
|
||||
x="427.49994"
|
||||
y="363.49997"
|
||||
rx="7"
|
||||
ry="6.999999" />
|
||||
<rect
|
||||
style="display:inline;opacity:0.12999998;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-7-5-3"
|
||||
width="27.000011"
|
||||
height="26.999998"
|
||||
x="428.49994"
|
||||
y="364.49994"
|
||||
rx="6"
|
||||
ry="6" />
|
||||
<rect
|
||||
style="display:inline;opacity:0.2;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-7-5"
|
||||
width="24.999981"
|
||||
height="24.999998"
|
||||
x="429.49997"
|
||||
y="365.49997"
|
||||
rx="4.9999995"
|
||||
ry="5" />
|
||||
<path
|
||||
sodipodi:nodetypes="csscssc"
|
||||
inkscape:connector-curvature="0"
|
||||
style="display:inline;opacity:0.25;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"
|
||||
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"
|
||||
id="rect4164-4-7"
|
||||
transform="translate(-6.1035156e-5,0)" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.7 KiB |
|
@ -0,0 +1,127 @@
|
|||
<?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="osd.svg">
|
||||
<defs
|
||||
id="defs5388" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="16"
|
||||
inkscape:cx="23.210075"
|
||||
inkscape:cy="11.575503"
|
||||
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.85;fill:none;fill-opacity:1;stroke:#0f1116;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:0.95;fill:#252a35;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.65">
|
||||
<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.02000002;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.07000002;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.12999998;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.2;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.25;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>
|
After Width: | Height: | Size: 4.8 KiB |
After Width: | Height: | Size: 838 B |
After Width: | Height: | Size: 680 B |
After Width: | Height: | Size: 8.9 KiB |
|
@ -0,0 +1,158 @@
|
|||
<?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"
|
||||
inkscape:export-ydpi="90.000000"
|
||||
inkscape:export-xdpi="90.000000"
|
||||
width="24"
|
||||
height="24"
|
||||
id="svg11300"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="activities-active.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
version="1.0"
|
||||
style="display:inline;enable-background:new">
|
||||
<sodipodi:namedview
|
||||
stroke="#ef2929"
|
||||
fill="#f57900"
|
||||
id="base"
|
||||
pagecolor="#bebebe"
|
||||
bordercolor="#525252"
|
||||
borderopacity="1"
|
||||
inkscape:pageopacity="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="22.627417"
|
||||
inkscape:cx="3.5498385"
|
||||
inkscape:cy="11.547553"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:showpageshadow="true"
|
||||
inkscape:window-width="1600"
|
||||
inkscape:window-height="848"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="25"
|
||||
width="400px"
|
||||
height="300px"
|
||||
inkscape:snap-nodes="true"
|
||||
inkscape:snap-bbox="true"
|
||||
gridtolerance="10000"
|
||||
inkscape:object-nodes="true"
|
||||
inkscape:snap-grids="true"
|
||||
showguides="false"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:bbox-paths="false"
|
||||
inkscape:snap-bbox-edge-midpoints="false"
|
||||
inkscape:snap-bbox-midpoints="false"
|
||||
objecttolerance="10000"
|
||||
guidetolerance="10000"
|
||||
borderlayer="true"
|
||||
showborder="true"
|
||||
guidecolor="#ff0b00"
|
||||
guideopacity="1"
|
||||
guidehicolor="#001aff"
|
||||
guidehiopacity="0.49803922">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3123"
|
||||
empspacing="4"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true" />
|
||||
<sodipodi:guide
|
||||
position="12,12"
|
||||
orientation="1,0"
|
||||
id="guide4135" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs3" />
|
||||
<metadata
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title />
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:source />
|
||||
<cc:license
|
||||
rdf:resource="" />
|
||||
<dc:title />
|
||||
<dc:subject>
|
||||
<rdf:Bag />
|
||||
</dc:subject>
|
||||
<dc:date />
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title />
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title />
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:identifier />
|
||||
<dc:relation />
|
||||
<dc:language />
|
||||
<dc:coverage />
|
||||
<dc:description />
|
||||
<dc:contributor>
|
||||
<cc:Agent>
|
||||
<dc:title />
|
||||
</cc:Agent>
|
||||
</dc:contributor>
|
||||
</cc:Work>
|
||||
<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>
|
||||
<g
|
||||
style="display:inline"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Base"
|
||||
id="layer1"
|
||||
transform="translate(0,-276)">
|
||||
<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="rect4138"
|
||||
width="2"
|
||||
height="2"
|
||||
x="5"
|
||||
y="287" />
|
||||
<rect
|
||||
style="display:inline;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;enable-background:new"
|
||||
id="rect4138-6"
|
||||
width="2"
|
||||
height="2"
|
||||
x="11"
|
||||
y="287" />
|
||||
<rect
|
||||
style="display:inline;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;enable-background:new"
|
||||
id="rect4138-9"
|
||||
width="2"
|
||||
height="2"
|
||||
x="17"
|
||||
y="287" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.6 KiB |
|
@ -0,0 +1,158 @@
|
|||
<?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"
|
||||
inkscape:export-ydpi="90.000000"
|
||||
inkscape:export-xdpi="90.000000"
|
||||
width="24"
|
||||
height="24"
|
||||
id="svg11300"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="activities.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
version="1.0"
|
||||
style="display:inline;enable-background:new">
|
||||
<sodipodi:namedview
|
||||
stroke="#ef2929"
|
||||
fill="#f57900"
|
||||
id="base"
|
||||
pagecolor="#bebebe"
|
||||
bordercolor="#525252"
|
||||
borderopacity="1"
|
||||
inkscape:pageopacity="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="22.627417"
|
||||
inkscape:cx="11.305916"
|
||||
inkscape:cy="11.635941"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:showpageshadow="true"
|
||||
inkscape:window-width="1600"
|
||||
inkscape:window-height="848"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="25"
|
||||
width="400px"
|
||||
height="300px"
|
||||
inkscape:snap-nodes="true"
|
||||
inkscape:snap-bbox="true"
|
||||
gridtolerance="10000"
|
||||
inkscape:object-nodes="true"
|
||||
inkscape:snap-grids="true"
|
||||
showguides="false"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:bbox-paths="false"
|
||||
inkscape:snap-bbox-edge-midpoints="false"
|
||||
inkscape:snap-bbox-midpoints="false"
|
||||
objecttolerance="10000"
|
||||
guidetolerance="10000"
|
||||
borderlayer="true"
|
||||
showborder="true"
|
||||
guidecolor="#ff0b00"
|
||||
guideopacity="1"
|
||||
guidehicolor="#001aff"
|
||||
guidehiopacity="0.49803922">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3123"
|
||||
empspacing="4"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true" />
|
||||
<sodipodi:guide
|
||||
position="12,12"
|
||||
orientation="1,0"
|
||||
id="guide4135" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs3" />
|
||||
<metadata
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title />
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:source />
|
||||
<cc:license
|
||||
rdf:resource="" />
|
||||
<dc:title />
|
||||
<dc:subject>
|
||||
<rdf:Bag />
|
||||
</dc:subject>
|
||||
<dc:date />
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title />
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title />
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:identifier />
|
||||
<dc:relation />
|
||||
<dc:language />
|
||||
<dc:coverage />
|
||||
<dc:description />
|
||||
<dc:contributor>
|
||||
<cc:Agent>
|
||||
<dc:title />
|
||||
</cc:Agent>
|
||||
</dc:contributor>
|
||||
</cc:Work>
|
||||
<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>
|
||||
<g
|
||||
style="display:inline"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Base"
|
||||
id="layer1"
|
||||
transform="translate(0,-276)">
|
||||
<rect
|
||||
style="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="rect4138"
|
||||
width="2"
|
||||
height="2"
|
||||
x="5"
|
||||
y="287" />
|
||||
<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;enable-background:new"
|
||||
id="rect4138-6"
|
||||
width="2"
|
||||
height="2"
|
||||
x="11"
|
||||
y="287" />
|
||||
<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;enable-background:new"
|
||||
id="rect4138-9"
|
||||
width="2"
|
||||
height="2"
|
||||
x="17"
|
||||
y="287" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.6 KiB |
|
@ -0,0 +1,142 @@
|
|||
<?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"
|
||||
inkscape:export-ydpi="90.000000"
|
||||
inkscape:export-xdpi="90.000000"
|
||||
width="28"
|
||||
height="4"
|
||||
id="svg11300"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="window-list-active-bottom.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
version="1.0"
|
||||
style="display:inline;enable-background:new">
|
||||
<sodipodi:namedview
|
||||
stroke="#ef2929"
|
||||
fill="#f57900"
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#808080"
|
||||
borderopacity="1"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="19.769528"
|
||||
inkscape:cx="12.291705"
|
||||
inkscape:cy="3.0971298"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:showpageshadow="true"
|
||||
inkscape:window-width="1142"
|
||||
inkscape:window-height="566"
|
||||
inkscape:window-x="2561"
|
||||
inkscape:window-y="82"
|
||||
width="400px"
|
||||
height="300px"
|
||||
inkscape:snap-nodes="true"
|
||||
inkscape:snap-bbox="true"
|
||||
gridtolerance="10000"
|
||||
inkscape:object-nodes="true"
|
||||
inkscape:snap-grids="true"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:bbox-paths="false"
|
||||
inkscape:snap-bbox-edge-midpoints="false"
|
||||
inkscape:snap-bbox-midpoints="false"
|
||||
objecttolerance="10000"
|
||||
guidetolerance="10000"
|
||||
borderlayer="true"
|
||||
showborder="true"
|
||||
guidecolor="#ff0b00"
|
||||
guideopacity="1"
|
||||
guidehicolor="#001aff"
|
||||
guidehiopacity="0.49803922"
|
||||
inkscape:snap-smooth-nodes="false"
|
||||
inkscape:snap-page="true">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3123"
|
||||
empspacing="4"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs3" />
|
||||
<metadata
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title />
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:source />
|
||||
<cc:license
|
||||
rdf:resource="" />
|
||||
<dc:title />
|
||||
<dc:subject>
|
||||
<rdf:Bag />
|
||||
</dc:subject>
|
||||
<dc:date />
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title />
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title />
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:identifier />
|
||||
<dc:relation />
|
||||
<dc:language />
|
||||
<dc:coverage />
|
||||
<dc:description />
|
||||
<dc:contributor>
|
||||
<cc:Agent>
|
||||
<dc:title />
|
||||
</cc:Agent>
|
||||
</dc:contributor>
|
||||
</cc:Work>
|
||||
<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>
|
||||
<g
|
||||
style="display:inline"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Base"
|
||||
id="layer1"
|
||||
transform="translate(0,-296)">
|
||||
<rect
|
||||
style="opacity:1;fill:#8fa876;fill-opacity:1;stroke:none"
|
||||
id="rect4270-9"
|
||||
width="24"
|
||||
height="2"
|
||||
x="2"
|
||||
y="298" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.8 KiB |
|
@ -0,0 +1,142 @@
|
|||
<?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"
|
||||
inkscape:export-ydpi="90.000000"
|
||||
inkscape:export-xdpi="90.000000"
|
||||
width="28"
|
||||
height="4"
|
||||
id="svg11300"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="window-list-active-top.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
version="1.0"
|
||||
style="display:inline;enable-background:new">
|
||||
<sodipodi:namedview
|
||||
stroke="#ef2929"
|
||||
fill="#f57900"
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#808080"
|
||||
borderopacity="1"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="19.769528"
|
||||
inkscape:cx="-0.83031425"
|
||||
inkscape:cy="3.0971298"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:showpageshadow="true"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1027"
|
||||
inkscape:window-x="1920"
|
||||
inkscape:window-y="0"
|
||||
width="400px"
|
||||
height="300px"
|
||||
inkscape:snap-nodes="true"
|
||||
inkscape:snap-bbox="true"
|
||||
gridtolerance="10000"
|
||||
inkscape:object-nodes="true"
|
||||
inkscape:snap-grids="true"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:bbox-paths="false"
|
||||
inkscape:snap-bbox-edge-midpoints="false"
|
||||
inkscape:snap-bbox-midpoints="false"
|
||||
objecttolerance="10000"
|
||||
guidetolerance="10000"
|
||||
borderlayer="true"
|
||||
showborder="true"
|
||||
guidecolor="#ff0b00"
|
||||
guideopacity="1"
|
||||
guidehicolor="#001aff"
|
||||
guidehiopacity="0.49803922"
|
||||
inkscape:snap-smooth-nodes="false"
|
||||
inkscape:snap-page="true">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3123"
|
||||
empspacing="4"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs3" />
|
||||
<metadata
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title />
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:source />
|
||||
<cc:license
|
||||
rdf:resource="" />
|
||||
<dc:title></dc:title>
|
||||
<dc:subject>
|
||||
<rdf:Bag />
|
||||
</dc:subject>
|
||||
<dc:date />
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title />
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title />
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:identifier />
|
||||
<dc:relation />
|
||||
<dc:language />
|
||||
<dc:coverage />
|
||||
<dc:description />
|
||||
<dc:contributor>
|
||||
<cc:Agent>
|
||||
<dc:title />
|
||||
</cc:Agent>
|
||||
</dc:contributor>
|
||||
</cc:Work>
|
||||
<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>
|
||||
<g
|
||||
style="display:inline"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Base"
|
||||
id="layer1"
|
||||
transform="translate(0,-296)">
|
||||
<rect
|
||||
style="opacity:1;fill:#8fa876;fill-opacity:1;stroke:none"
|
||||
id="rect4270-9"
|
||||
width="24"
|
||||
height="2"
|
||||
x="2"
|
||||
y="296" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.8 KiB |
|
@ -0,0 +1,195 @@
|
|||
<?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/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="22.627418"
|
||||
inkscape:cx="6.9977696"
|
||||
inkscape:cy="7.1645903"
|
||||
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(-36,1036)"
|
||||
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,0)">
|
||||
<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
|
||||
rx="1.8571391"
|
||||
y="31.8622"
|
||||
x="18.5"
|
||||
height="13"
|
||||
width="13"
|
||||
id="rect5147-9-1-5-7-6-7-4"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#8fa876;fill-opacity:1;stroke:#1a1a1a;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-37"
|
||||
transform="translate(36,-1036)"
|
||||
style="display:inline">
|
||||
<g
|
||||
id="g3981-6-4-97"
|
||||
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-5"
|
||||
transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,727.94436,295.31123)">
|
||||
<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">
|
||||
<rect
|
||||
ry="0.66666085"
|
||||
rx="0.66666085"
|
||||
y="1033.3622"
|
||||
x="8"
|
||||
height="1.9999826"
|
||||
width="5"
|
||||
id="rect3977-39-90"
|
||||
style="fill:#2f2f2f;fill-opacity:1;stroke:none" />
|
||||
<rect
|
||||
ry="0"
|
||||
y="1027.3622"
|
||||
x="11"
|
||||
height="7.9999828"
|
||||
width="2"
|
||||
id="rect3979-7-60"
|
||||
style="fill:#2f2f2f;fill-opacity:1;stroke:none" />
|
||||
</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>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.2 KiB |
|
@ -0,0 +1,195 @@
|
|||
<?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/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="22.627418"
|
||||
inkscape:cx="6.5429011"
|
||||
inkscape:cy="7.7398568"
|
||||
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="1351"
|
||||
inkscape:window-height="761"
|
||||
inkscape:window-x="210"
|
||||
inkscape:window-y="117"
|
||||
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(-36,1036)"
|
||||
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,0)">
|
||||
<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
|
||||
rx="1.8571389"
|
||||
y="31.897903"
|
||||
x="18.464298"
|
||||
height="13"
|
||||
width="13"
|
||||
id="rect5147-9-1-5-7-6-7-4"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#8fa876;fill-opacity:1;stroke:#1a1a1a;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.8571361" />
|
||||
</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="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-5"
|
||||
transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,727.94436,295.31123)">
|
||||
<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">
|
||||
<rect
|
||||
ry="0.66666085"
|
||||
rx="0.66666085"
|
||||
y="1033.3622"
|
||||
x="8"
|
||||
height="1.9999826"
|
||||
width="5"
|
||||
id="rect3977-39-90"
|
||||
style="fill:#2f2f2f;fill-opacity:1;stroke:none" />
|
||||
<rect
|
||||
ry="0"
|
||||
y="1027.3622"
|
||||
x="11"
|
||||
height="7.9999828"
|
||||
width="2"
|
||||
id="rect3979-7-60"
|
||||
style="fill:#2f2f2f;fill-opacity:1;stroke:none" />
|
||||
</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>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.2 KiB |
|
@ -0,0 +1,141 @@
|
|||
<?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-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="22.627418"
|
||||
inkscape:cx="1.7472106"
|
||||
inkscape:cy="6.3058787"
|
||||
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-dark"
|
||||
inkscape:label="#g22047">
|
||||
<g
|
||||
inkscape:label="#g21853"
|
||||
id="sdsd-0-1">
|
||||
<g
|
||||
id="scdsdcd-0-4"
|
||||
inkscape:label="#g14325"
|
||||
transform="translate(0,-30)">
|
||||
<g
|
||||
style="display:inline"
|
||||
id="g15812-6-6-1-4-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-7"
|
||||
style="display:inline">
|
||||
<g
|
||||
id="g5428-8-1-4-0-0-65-8" />
|
||||
</g>
|
||||
</g>
|
||||
<rect
|
||||
y="30.362183"
|
||||
x="17"
|
||||
height="16"
|
||||
width="16"
|
||||
id="rect13523-4-0"
|
||||
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-47">
|
||||
<rect
|
||||
ry="2"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#5b5b5b;fill-opacity:1;stroke:#8fa876;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-70"
|
||||
width="13"
|
||||
height="12.999997"
|
||||
x="18.5"
|
||||
y="31.862183"
|
||||
rx="2" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.4 KiB |
|
@ -0,0 +1,141 @@
|
|||
<?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-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="#2f2f2f"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="31.819805"
|
||||
inkscape:cx="6.333941"
|
||||
inkscape:cy="7.7688206"
|
||||
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="1262"
|
||||
inkscape:window-height="861"
|
||||
inkscape:window-x="635"
|
||||
inkscape:window-y="34"
|
||||
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></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-dark"
|
||||
inkscape:label="#g22047">
|
||||
<g
|
||||
inkscape:label="#g21853"
|
||||
id="sdsd-0-1">
|
||||
<g
|
||||
id="scdsdcd-0-4"
|
||||
inkscape:label="#g14325"
|
||||
transform="translate(0,-30)">
|
||||
<g
|
||||
style="display:inline"
|
||||
id="g15812-6-6-1-4-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-7"
|
||||
style="display:inline">
|
||||
<g
|
||||
id="g5428-8-1-4-0-0-65-8" />
|
||||
</g>
|
||||
</g>
|
||||
<rect
|
||||
y="30.362183"
|
||||
x="17"
|
||||
height="16"
|
||||
width="16"
|
||||
id="rect13523-4-0"
|
||||
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-47">
|
||||
<rect
|
||||
ry="2"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#5b5b5b;fill-opacity:1;stroke:#1a1a1a;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-70"
|
||||
width="13"
|
||||
height="12.999997"
|
||||
x="18.5"
|
||||
y="31.862183"
|
||||
rx="2" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.4 KiB |
|
@ -0,0 +1,97 @@
|
|||
<?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="16.934585"
|
||||
inkscape:cy="20.910274"
|
||||
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.05;fill:#ffffff;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.07;fill:#ffffff;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.07;fill:#ffffff;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>
|
After Width: | Height: | Size: 3.0 KiB |
|
@ -0,0 +1,127 @@
|
|||
<?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="22.627416"
|
||||
inkscape:cx="10.702765"
|
||||
inkscape:cy="22.873719"
|
||||
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.83;fill:none;fill-opacity:1;stroke:#1b1c21;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:#383c4a;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.65">
|
||||
<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.02000002;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.07000002;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.12999998;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.2;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.25;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>
|
After Width: | Height: | Size: 4.8 KiB |
|
@ -0,0 +1,117 @@
|
|||
<?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="16.000001"
|
||||
inkscape:cx="6.5686977"
|
||||
inkscape:cy="6.4384088"
|
||||
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.15;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.15;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.15;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-1"
|
||||
width="28.999802"
|
||||
height="1"
|
||||
x="1058.3101"
|
||||
y="-26.934996"
|
||||
transform="matrix(0,1,-1,0,0,0)" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.7 KiB |
|
@ -0,0 +1,101 @@
|
|||
<?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="1"
|
||||
inkscape:cx="18.945179"
|
||||
inkscape:cy="17.423975"
|
||||
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" />
|
||||
<rect
|
||||
style="opacity:0.35;fill:#000000;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="rect4137"
|
||||
width="22"
|
||||
height="1"
|
||||
x="5"
|
||||
y="1027.3622"
|
||||
rx="0"
|
||||
ry="1.3877788e-16" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.2 KiB |
|
@ -0,0 +1,81 @@
|
|||
<?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="15.839192"
|
||||
inkscape:cx="15.577767"
|
||||
inkscape:cy="11.940102"
|
||||
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:window-width="1920"
|
||||
inkscape:window-height="1030"
|
||||
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:#000000;fill-opacity:0.15294118;stroke:#000000;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.38039216"
|
||||
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:#8fa876;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:0.39215686"
|
||||
d="m 2.5,1021.3622 0.5,0 0,30 -0.5,0 c -0.831,0 -1.5,-0.669 -1.5,-1.5 l 0,-27 c 0,-0.831 0.669,-1.5 1.5,-1.5 z"
|
||||
id="rect4162"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="sccssss" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.6 KiB |
|
@ -0,0 +1,143 @@
|
|||
<?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="22.627416"
|
||||
inkscape:cx="20.862219"
|
||||
inkscape:cy="64.999507"
|
||||
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.64;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:0.99999999;fill:#323644;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.64999999">
|
||||
<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.02;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.07;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.13;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.2;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.25;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>
|
After Width: | Height: | Size: 5.3 KiB |
|
@ -0,0 +1,201 @@
|
|||
<?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="16.499159"
|
||||
inkscape:cx="2.6049273"
|
||||
inkscape:cy="12.240851"
|
||||
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-dark"
|
||||
inkscape:label="#g4820">
|
||||
<g
|
||||
id="layer1-9-13"
|
||||
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-2">
|
||||
<g
|
||||
id="g3900-12-8"
|
||||
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-7"
|
||||
width="52"
|
||||
height="24"
|
||||
x="0"
|
||||
y="1029.3622" />
|
||||
<rect
|
||||
style="fill:#5b5b5b;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="rect2987-07-4"
|
||||
width="50"
|
||||
height="20"
|
||||
x="1"
|
||||
y="1031.3622"
|
||||
ry="11"
|
||||
rx="11" />
|
||||
<circle
|
||||
style="fill:#353535;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path3759-7-4"
|
||||
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-46"
|
||||
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:1;fill:#353535;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.9 KiB |
|
@ -0,0 +1,220 @@
|
|||
<?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="11.666667"
|
||||
inkscape:cx="13.245082"
|
||||
inkscape:cy="16.13001"
|
||||
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-dark"
|
||||
inkscape:label="#g4829">
|
||||
<g
|
||||
id="layer1-9-0-51"
|
||||
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-8">
|
||||
<g
|
||||
id="g3900-1-87-0"
|
||||
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-3"
|
||||
width="52"
|
||||
height="24"
|
||||
x="0"
|
||||
y="1029.3622" />
|
||||
<rect
|
||||
style="fill:#8fa876;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="rect2987-0-8-7"
|
||||
width="50"
|
||||
height="20"
|
||||
x="1"
|
||||
y="1031.3622"
|
||||
ry="11"
|
||||
rx="11" />
|
||||
<circle
|
||||
style="fill:#353535;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path3759-0-75"
|
||||
cx="41"
|
||||
cy="1041.3622"
|
||||
r="9" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
transform="translate(-1.0003162,0)"
|
||||
id="g4816-8">
|
||||
<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-13"
|
||||
style="display:inline;opacity:1;fill:#353535;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-65"
|
||||
style="display:inline;opacity:1;fill:#353535;fill-opacity:1;stroke:none" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.4 KiB |
|
@ -0,0 +1,223 @@
|
|||
<?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>
|
After Width: | Height: | Size: 7.2 KiB |
|
@ -0,0 +1,223 @@
|
|||
<?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>
|
After Width: | Height: | Size: 7.1 KiB |
|
@ -0,0 +1,141 @@
|
|||
<?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>
|
After Width: | Height: | Size: 4.3 KiB |
|
@ -0,0 +1,141 @@
|
|||
<?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>
|
After Width: | Height: | Size: 4.3 KiB |
|
@ -0,0 +1,97 @@
|
|||
<?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>
|
After Width: | Height: | Size: 3.1 KiB |
|
@ -0,0 +1,127 @@
|
|||
<?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>
|
After Width: | Height: | Size: 4.7 KiB |
|
@ -0,0 +1,117 @@
|
|||
<?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>
|
After Width: | Height: | Size: 3.7 KiB |
|
@ -0,0 +1,92 @@
|
|||
<?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>
|
After Width: | Height: | Size: 2.9 KiB |
|
@ -0,0 +1,81 @@
|
|||
<?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>
|
After Width: | Height: | Size: 2.6 KiB |
|
@ -0,0 +1,143 @@
|
|||
<?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>
|
After Width: | Height: | Size: 5.3 KiB |
|
@ -0,0 +1,201 @@
|
|||
<?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>
|
After Width: | Height: | Size: 6.9 KiB |
|
@ -0,0 +1,220 @@
|
|||
<?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>
|
After Width: | Height: | Size: 6.4 KiB |
After Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 34 KiB |
|
@ -0,0 +1,4 @@
|
|||
#! /bin/bash
|
||||
|
||||
sassc ./sass/cinnamon.scss cinnamon.css
|
||||
sassc ./sass/cinnamon-dark.scss cinnamon-dark.css
|
|
@ -0,0 +1,50 @@
|
|||
// When color definition differs for dark and light variant,
|
||||
// it gets @if ed depending on $variant
|
||||
|
||||
// We need to set this first because we use it to tint many
|
||||
// of the remaining colors
|
||||
$selected_bg_color: if($variant == 'light', #92b372, #8fa876);
|
||||
|
||||
$base_color: if($variant =='light', mix($selected_bg_color, #ffffff, 2%), mix($selected_bg_color, #404040, 2%));
|
||||
$text_color: if($variant == 'light', #202020, #D3D3D3);
|
||||
$bg_color: if($variant == 'light', mix($selected_bg_color, #f5f5f5, 2%), mix($selected_bg_color, #2f2f2f, 1.5%));
|
||||
$fg_color: if($variant =='light', transparentize(black, 0.13), transparentize(white, 0.13));
|
||||
|
||||
$selected_fg_color: #ffffff;
|
||||
|
||||
$borders_color: if($variant =='light', darken($bg_color, 20%), darken($bg_color, 6%));
|
||||
|
||||
$separator_color: if($variant == 'light', darken($bg_color, 15%), darken($bg_color, 6%));
|
||||
|
||||
$link_color: if($variant == 'light', darken($selected_bg_color,10%),
|
||||
lighten($selected_bg_color,20%));
|
||||
|
||||
$warning_color: #F27835;
|
||||
$error_color: #FC4138;
|
||||
$destructive_color: #F04A50;
|
||||
|
||||
$insensitive_fg_color: if($variant == 'light', transparentize($fg_color, 0.45), transparentize($fg_color, 0.55));
|
||||
|
||||
$tooltip_bg_color: #fbeaa0;
|
||||
$tooltip_fg_color: #4a4a4a;
|
||||
$tooltip_border_color: #d0d0d0;
|
||||
|
||||
$osd_fg_color: #c3c3c3;
|
||||
$osd_bg_color: #353535;
|
||||
|
||||
$osd_button_bg: transparentize(lighten($osd_bg_color, 22%), 0.6);
|
||||
$osd_button_border: transparentize(darken($osd_bg_color, 20%), 0.6);
|
||||
|
||||
$osd_entry_bg: transparentize(lighten($osd_bg_color, 22%), 0.6);
|
||||
$osd_entry_border: transparentize(darken($osd_bg_color, 12%), 0.6);
|
||||
|
||||
$osd_insensitive_fg_color: mix($osd_fg_color, opacify($osd_bg_color, 1), 30%);
|
||||
|
||||
$panel_bg: $bg_color;
|
||||
$panel_fg: $fg_color;
|
||||
|
||||
$entry_bg: if($variant=='light', $base_color, lighten($base_color, 0%));
|
||||
$entry_border: if($variant == 'light', #cfd6e6, darken($borders_color, 0%));
|
||||
|
||||
$button_bg: if($variant == 'light', lighten($bg_color, 2%), lighten($base_color, 2%));
|
||||
$button_border: $entry_border;
|
|
@ -0,0 +1,155 @@
|
|||
// Drawing mixins
|
||||
|
||||
// Entries
|
||||
|
||||
@mixin entry($t, $dark:false) {
|
||||
//
|
||||
// Entries drawing function
|
||||
//
|
||||
|
||||
@if $t==normal {
|
||||
color: $text_color;
|
||||
background-color: $base_color;
|
||||
border: 1px solid $entry_border;
|
||||
box-shadow: inset 0 2px 4px transparentize($entry_bg, 0.95);
|
||||
}
|
||||
|
||||
@if $t==focus {
|
||||
color: $fg_color;
|
||||
background-color: $base_color;
|
||||
border: 1px solid $selected_bg_color;
|
||||
box-shadow: inset 0 2px 4px transparentize($entry_bg, 0.95);
|
||||
}
|
||||
|
||||
@if $t==insensitive {
|
||||
color: $insensitive_fg_color;
|
||||
background-color: mix($entry_bg, $bg_color, 55%);
|
||||
border-color: 1px solid mix($entry_border, $bg_color, 55%);
|
||||
box-shadow: inset 0 2px 4px transparentize(mix($entry_bg, $bg_color, 55%), 0.95);
|
||||
}
|
||||
|
||||
@if $t==osd {
|
||||
color: $osd_fg_color;
|
||||
background-color: $osd_entry_bg;
|
||||
border: 1px solid $osd_entry_border;
|
||||
box-shadow: inset 0 2px 4px transparentize(black, 0.95);
|
||||
}
|
||||
|
||||
@if $t==osd-focus {
|
||||
color: $selected_fg_color;
|
||||
background-color: $selected_bg_color;
|
||||
border: 1px solid $selected_bg_color;
|
||||
box-shadow: inset 0 2px 4px transparentize(black, 0.95);
|
||||
}
|
||||
|
||||
@if $t==osd-insensitive {
|
||||
color: transparentize($osd_fg_color, 0.45);
|
||||
background-color: transparentize($osd_entry_bg, 0.15);
|
||||
border: 1px solid $osd_entry_border;
|
||||
box-shadow: inset 0 2px 4px transparentize(black, 0.95);
|
||||
}
|
||||
}
|
||||
|
||||
// Buttons
|
||||
|
||||
@mixin button($t) {
|
||||
//
|
||||
// Button drawing function
|
||||
//
|
||||
|
||||
@if $t==normal {
|
||||
//
|
||||
// normal button
|
||||
//
|
||||
color: $fg_color;
|
||||
background-color: $button_bg;
|
||||
border: 1px solid $borders_color;
|
||||
box-shadow: inset 0 2px 4px transparentize($button_bg, 0.95);
|
||||
}
|
||||
|
||||
@else if $t==focus {
|
||||
//
|
||||
// focused button
|
||||
//
|
||||
color: $fg_color;
|
||||
background-color: $button_bg;
|
||||
border: 1px solid $selected_bg_color;
|
||||
box-shadow: inset 0 2px 4px transparentize($button_bg, 0.95);
|
||||
}
|
||||
|
||||
@else if $t==focus-hover {
|
||||
//
|
||||
// focused button
|
||||
//
|
||||
color: $fg_color;
|
||||
background-color: lighten($button_bg, 5%);
|
||||
border: 1px solid $selected_bg_color;
|
||||
box-shadow: inset 0 2px 4px transparentize($button_bg, 0.95);
|
||||
}
|
||||
|
||||
@else if $t==hover {
|
||||
//
|
||||
// hovered button
|
||||
//
|
||||
color: $fg_color;
|
||||
background-color: lighten($button_bg, 5%);
|
||||
border: 1px solid $borders_color;
|
||||
box-shadow: inset 0 2px 4px transparentize(lighten($button_bg, 5%), 0.95);
|
||||
}
|
||||
|
||||
@else if $t==active {
|
||||
//
|
||||
// pushed button
|
||||
//
|
||||
color: $selected_fg_color;
|
||||
background-color: $selected_bg_color;
|
||||
border: 1px solid $selected_bg_color;
|
||||
box-shadow: inset 0 2px 4px $selected_bg_color;
|
||||
}
|
||||
|
||||
@else if $t==insensitive {
|
||||
//
|
||||
// insensitive button
|
||||
//
|
||||
color: $insensitive_fg_color;
|
||||
border: 1px solid transparentize($borders_color, 0.45);
|
||||
background-color: transparentize($button_bg, 0.45);
|
||||
box-shadow: inset 0 2px 4px transparentize($button_bg, 0.95);
|
||||
}
|
||||
|
||||
@else if $t==osd {
|
||||
//
|
||||
// normal osd button
|
||||
//
|
||||
color: $osd_fg_color;
|
||||
border: 1px solid $borders_color;
|
||||
background-color: $osd_button_bg;
|
||||
}
|
||||
|
||||
@else if $t==osd-hover {
|
||||
//
|
||||
// active osd button
|
||||
//
|
||||
color: $osd_fg_color;
|
||||
border: 1px solid $osd_button_border;
|
||||
background-color: opacify(lighten($osd_button_bg, 7%), 0.1);
|
||||
}
|
||||
|
||||
@else if $t==osd-active {
|
||||
//
|
||||
// active osd button
|
||||
//
|
||||
color: $selected_fg_color;
|
||||
border: 1px solid $selected_bg_color;
|
||||
background-color: $selected_bg_color;
|
||||
}
|
||||
|
||||
@else if $t==osd-insensitive {
|
||||
//
|
||||
// insensitive osd button
|
||||
//
|
||||
color: $osd_insensitive_fg_color;
|
||||
border: 1px solid $osd_button_border;
|
||||
background-color: transparentize($osd_button_bg, 0.15);
|
||||
}
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
$variant: 'dark';
|
||||
|
||||
@import "_colors"; //use gtk colors
|
||||
@import "_drawing";
|
||||
@import "_common";
|
|
@ -0,0 +1,5 @@
|
|||
$variant: 'light';
|
||||
|
||||
@import "_colors"; //use gtk colors
|
||||
@import "_drawing";
|
||||
@import "_common";
|
|
@ -0,0 +1,16 @@
|
|||
#### Editing the theme
|
||||
|
||||
* The Colors and includes are defined in `gtkrc`, `gtkrc-dark` and `gtkrc-darker` for each theme variant.
|
||||
* `main.rc` contains the major part of the theme
|
||||
* `panel.rc` contains the panel styling for XFCE and Mate
|
||||
* `apps.rc` contains some application specific rules
|
||||
|
||||
Because this theme is heavily based on the pixmap engine, a lot of the styling comes from the images in the `assets` and `assets-dark` folders. Don't edit these images directly. Instead do the following
|
||||
|
||||
* Open the `assets.svg` or `assets-dark.svg` file in inkscape. Each object in the .svg file corresponds to an image in the `assets` and `assets-dark` folder.
|
||||
|
||||
* Find the object you want to edit and make your changes. Important: Don't change the obejct id.
|
||||
|
||||
* Save `assets.svg` or `assets-dark.svg` and delete the images corresponding to the edited .svg objects from the `assets` or `assets-dark` folder (or just delete everything in the `assets` or `assets-dark` folder).
|
||||
|
||||
* Run `./render-assets.sh` or `./render-dark-assets.sh` from a terminal.
|
|
@ -0,0 +1,45 @@
|
|||
|
||||
########### FILE MANAGERS ##############
|
||||
|
||||
style "thunar-handle" { GtkPaned::handle-size = 2 }
|
||||
|
||||
style "dark-sidebar" {
|
||||
GtkTreeView::odd_row_color = @dark_sidebar_bg
|
||||
GtkTreeView::even_row_color = @dark_sidebar_bg
|
||||
|
||||
|
||||
base[NORMAL] = @dark_sidebar_bg
|
||||
base[INSENSITIVE] = @dark_sidebar_bg
|
||||
|
||||
text[NORMAL] = "#C3C3C3"
|
||||
text[ACTIVE] = @selected_fg_color
|
||||
text[SELECTED] = @selected_fg_color
|
||||
}
|
||||
|
||||
style "thunar-frame" {
|
||||
xthickness = 0
|
||||
ythickness = 0
|
||||
}
|
||||
|
||||
# Thunar
|
||||
widget_class "*ThunarWindow*.<GtkScrolledWindow>" style "thunar-frame"
|
||||
widget_class "*ThunarShortcutsView*" style "dark-sidebar"
|
||||
widget_class "*ThunarTreeView*" style "dark-sidebar"
|
||||
widget_class "*ThunarWindow*.<GtkHPaned>" style "thunar-handle"
|
||||
|
||||
# Caja
|
||||
widget_class "*CajaSidePane*" style "dark-sidebar"
|
||||
|
||||
|
||||
|
||||
####### TERMINAL ################
|
||||
|
||||
style "terminal_screen"
|
||||
{
|
||||
text[NORMAL] = "#ffffff"
|
||||
base[NORMAL] = "#3f3f3f"
|
||||
|
||||
TerminalScreen::background-darkness = 0.9
|
||||
}
|
||||
|
||||
widget "*TerminalWindow.*.TerminalScreen*" style "terminal_screen"
|
After Width: | Height: | Size: 224 KiB |
After Width: | Height: | Size: 220 B |
After Width: | Height: | Size: 218 B |
After Width: | Height: | Size: 203 B |
After Width: | Height: | Size: 207 B |
After Width: | Height: | Size: 276 B |
After Width: | Height: | Size: 312 B |
After Width: | Height: | Size: 222 B |
After Width: | Height: | Size: 221 B |
After Width: | Height: | Size: 307 B |
After Width: | Height: | Size: 213 B |
After Width: | Height: | Size: 215 B |
After Width: | Height: | Size: 303 B |
After Width: | Height: | Size: 219 B |
After Width: | Height: | Size: 218 B |
After Width: | Height: | Size: 204 B |
After Width: | Height: | Size: 210 B |
After Width: | Height: | Size: 278 B |
After Width: | Height: | Size: 315 B |
After Width: | Height: | Size: 266 B |
After Width: | Height: | Size: 252 B |
After Width: | Height: | Size: 257 B |
After Width: | Height: | Size: 252 B |
After Width: | Height: | Size: 344 B |
After Width: | Height: | Size: 356 B |
After Width: | Height: | Size: 259 B |
After Width: | Height: | Size: 256 B |
After Width: | Height: | Size: 237 B |
After Width: | Height: | Size: 222 B |
After Width: | Height: | Size: 234 B |
After Width: | Height: | Size: 232 B |
After Width: | Height: | Size: 239 B |
After Width: | Height: | Size: 231 B |
After Width: | Height: | Size: 262 B |
After Width: | Height: | Size: 254 B |
After Width: | Height: | Size: 271 B |
After Width: | Height: | Size: 254 B |
After Width: | Height: | Size: 223 B |