Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7e219cfc54 |
4
.gitignore
vendored
@@ -6,9 +6,5 @@ node_modules/
|
||||
*.css.map
|
||||
|
||||
_gnome-shell/
|
||||
gnome-shell/dark-and-white/
|
||||
gnome-shell/dark/
|
||||
gnome-shell/light/
|
||||
|
||||
|
||||
install.sh
|
||||
13
Gulpfile.js
@@ -19,22 +19,11 @@ gulp.task('shell-style', function(done) {
|
||||
done();
|
||||
});
|
||||
|
||||
gulp.task('cinnamon-style', function(done) {
|
||||
gulp.src('cinnamon/**/*.scss')
|
||||
.pipe(sass().on('error', sass.logError))
|
||||
.pipe(gulp.dest('./cinnamon/'))
|
||||
done();
|
||||
});
|
||||
|
||||
//Watch task
|
||||
gulp.task('default',function() {
|
||||
gulp.watch('gtk-3.0/**/*.scss', gulp.series('styles'));
|
||||
});
|
||||
|
||||
gulp.task('shell',function() {
|
||||
gulp.watch('gnome-shell/**/*.scss', gulp.series('shell-style'));
|
||||
});
|
||||
|
||||
gulp.task('cinnamon',function() {
|
||||
gulp.watch('cinnamon/**/*.scss', gulp.series('cinnamon-style'));
|
||||
gulp.watch('gnome-shell/*.scss', gulp.series('shell-style'));
|
||||
});
|
||||
@@ -1,107 +0,0 @@
|
||||
// When color definition differs for dark and light variant,
|
||||
// it gets @if ed depending on $variant
|
||||
|
||||
|
||||
$base_color: #1E282C;
|
||||
$text_color: #98abb2;
|
||||
$bg_color: #222e39;
|
||||
$fg_color: #98abb2;
|
||||
|
||||
$main_dark_color: darken($bg_color, 5%);
|
||||
|
||||
$lime: #71f79f;
|
||||
$red: #ed254e;
|
||||
$orange: #ff6a00;
|
||||
$yellow: #f9dc5c;
|
||||
$purple: #c74ded;
|
||||
$darkpurple: #7b7bbd;
|
||||
$blue: #7cb7ff;
|
||||
$cyan: #00c1e4;
|
||||
|
||||
$selected_fg_color: #f7f7f7;
|
||||
$selected_bg_color: #00e8b7;
|
||||
$selected_borders_color: darken($selected_bg_color, 20%);
|
||||
$borders_color: darken(#1d2021, 3%);
|
||||
|
||||
$link_color: $blue;
|
||||
$link_visited_color:transparentize($link_color,0.5);
|
||||
|
||||
$selection_mode_bg: if($transparency == 'true', transparentize($selected_bg_color, 0.05), $selected_bg_color);
|
||||
$selection_mode_fg: $selected_fg_color;
|
||||
$warning_color: #F27835;
|
||||
$error_color: #FC4138;
|
||||
$warning_fg_color: white;
|
||||
$error_fg_color: white;
|
||||
$success_color: #73d216;
|
||||
$destructive_color: #F04A50;
|
||||
$suggested_color: #4DADD4;
|
||||
$destructive_fg_color: white;
|
||||
$suggested_fg_color: white;
|
||||
|
||||
$drop_target_color: #F08437;
|
||||
|
||||
//insensitive state derived colors
|
||||
$insensitive_fg_color: if($variant == 'light', transparentize($fg_color, 0.45), transparentize($fg_color, 0.55));
|
||||
$insensitive_bg_color: if($variant == 'light', mix($bg_color, $base_color, 40%), lighten($bg_color, 2%));
|
||||
|
||||
$header_bg: $bg_color;
|
||||
|
||||
|
||||
$header_bg_backdrop: if($darker == 'true' or $variant == 'dark', lighten($header_bg, 1.5%), lighten($header_bg, 3%));
|
||||
|
||||
$header_border: if($variant == 'light' and $darker=='false', darken($header_bg, 7%), darken($header_bg, 4%));
|
||||
|
||||
$header_fg: if($variant == 'light', saturate(transparentize($fg_color, 0.2), 10%), saturate(transparentize($fg_color, 0.2), 10%));
|
||||
$header_fg: if($darker == 'true', saturate(transparentize(#D3DAE3, 0.2), 10%), $header_fg);
|
||||
|
||||
$dark_sidebar_bg: $main_dark_color;
|
||||
$dark_sidebar_fg: #BAC3CF;
|
||||
$dark_sidebar_border: if($variant == 'light', $dark_sidebar_bg, darken($dark_sidebar_bg, 5%));
|
||||
|
||||
$osd_fg_color: $dark_sidebar_fg;
|
||||
$osd_bg_color: $dark_sidebar_bg;
|
||||
|
||||
$osd_button_bg: transparentize(lighten($osd_bg_color, 22%), 0.6);
|
||||
$osd_button_border: transparentize(darken($osd_bg_color, 12%), 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_bg_color: darken($osd_bg_color, 3%);
|
||||
$osd_insensitive_fg_color: mix($osd_fg_color, opacify($osd_bg_color, 1), 30%);
|
||||
$osd_borders_color: transparentize(black, 0.3);
|
||||
|
||||
$panel_bg: $main_dark_color;
|
||||
$panel_fg: $dark_sidebar_fg;
|
||||
|
||||
$entry_bg: if($variant=='light', $base_color, lighten($base_color, 0%));
|
||||
$entry_border: if($variant == 'light', #cfd6e6, darken($borders_color, 0%));
|
||||
|
||||
$header_entry_bg: if($darker == 'true' or $variant == 'dark', transparentize(lighten($header_bg, 22%), 0.6), transparentize($base_color, 0.1));
|
||||
$header_entry_border: if($darker == 'true' or $variant == 'dark', transparentize(darken($header_bg, 12%), 0.6), transparentize($header_fg, 0.7));
|
||||
|
||||
$button_bg: if($variant == 'light', lighten($bg_color, 2%), lighten($base_color, 2%));
|
||||
$button_border: $entry_border;
|
||||
|
||||
$header_button_bg: if($darker == 'true' or $variant == 'dark', transparentize(lighten($header_bg, 22%), 0.6), transparentize($button_bg, 0.1));
|
||||
$header_button_border: if($darker == 'true' or $variant == 'dark', transparentize(darken($header_bg, 12%), 0.6), transparentize($header_fg, 0.7));
|
||||
|
||||
//WM Buttons
|
||||
|
||||
// Close
|
||||
$wm_button_close_bg: if($variant == 'light' and $darker == 'false', #f46067, #cc575d);
|
||||
$wm_button_close_hover_bg: if($variant == 'light' and $darker == 'false', #f68086, #d7787d);
|
||||
$wm_button_close_active_bg: if($variant == 'light' and $darker == 'false', #f13039, #be3841);
|
||||
|
||||
$wm_icon_close_bg: if($variant == 'light' and $darker == 'false',#F8F8F9 , #2f343f);
|
||||
|
||||
// Minimize, Maximize
|
||||
$wm_button_hover_bg: if($variant == 'light' and $darker == 'false', #fdfdfd, #454C5C);
|
||||
$wm_button_active_bg: $selected_bg_color;
|
||||
|
||||
$wm_button_hover_border: if($variant == 'light' and $darker == 'false', #D1D3DA, #262932);
|
||||
|
||||
$wm_icon_bg: if($variant == 'light' and $darker == 'false', #90949E, #90939B);
|
||||
$wm_icon_unfocused_bg: if($variant == 'light' and $darker == 'false', #B6B8C0, #666A74);
|
||||
$wm_icon_hover_bg: if($variant == 'light' and $darker == 'false', #7A7F8B, #C4C7CC);
|
||||
$wm_icon_active_bg: $selected_fg_color;
|
||||
@@ -1,167 +0,0 @@
|
||||
// Drawing mixins
|
||||
|
||||
// generic drawing of more complex things
|
||||
|
||||
// provide font size in rem, with px fallback
|
||||
@mixin fontsize($size: 24, $base: 16) {
|
||||
font-size: round($size) + pt;
|
||||
//font-size: ($size / $base) * 1rem;
|
||||
}
|
||||
|
||||
// Entries
|
||||
|
||||
@mixin entry($t, $dark:false) {
|
||||
//
|
||||
// Entries drawing function
|
||||
//
|
||||
//@extend %reset_style;
|
||||
|
||||
@if $t==normal {
|
||||
color: $text_color;
|
||||
background-color: $entry_bg;
|
||||
border: 1px solid $entry_border;
|
||||
box-shadow: inset 0 2px 4px transparentize($entry_bg, 0.95);
|
||||
}
|
||||
|
||||
@if $t==focus {
|
||||
color: $fg_color;
|
||||
background-color: $entry_bg;
|
||||
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
|
||||
//
|
||||
//@extend %reset_style;
|
||||
|
||||
text-shadow: 0 1px transparentize($base_color, 1);
|
||||
|
||||
@if $t==normal {
|
||||
//
|
||||
// normal button
|
||||
//
|
||||
color: $fg_color;
|
||||
background-color: $button_bg;
|
||||
border: 1px solid $button_border;
|
||||
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: $button_bg;
|
||||
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 $button_border;
|
||||
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($button_border, 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 $osd_button_border;
|
||||
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);
|
||||
}
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
$variant: 'dark';
|
||||
$transparency: 'true';
|
||||
$darker: 'false';
|
||||
|
||||
@import "_colors"; //use gtk colors
|
||||
@import "_drawing";
|
||||
@import "_common";
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
$variant: 'dark';
|
||||
$transparency: 'true';
|
||||
$darker: 'false';
|
||||
|
||||
@import "_colors"; //use gtk colors
|
||||
@import "_drawing";
|
||||
@import "_common";
|
||||
@@ -1,93 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns: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="1.0 (4035a4fb49, 2020-05-01)"
|
||||
sodipodi:docname="menu-hover.svg">
|
||||
<defs
|
||||
id="defs6929">
|
||||
<linearGradient
|
||||
id="selected_bg_color"
|
||||
osb:paint="solid">
|
||||
<stop
|
||||
style="stop-color:#5294e2;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4138" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="10.13596"
|
||||
inkscape:cx="0.595299"
|
||||
inkscape:cy="17.160274"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="712"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:bbox-paths="false"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:snap-bbox-midpoints="false"
|
||||
inkscape:snap-bbox-edge-midpoints="true"
|
||||
inkscape:document-rotation="0">
|
||||
<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,1.0000001,71.275885,274.36218)"
|
||||
id="g6908"
|
||||
style="fill:#00e8b7;fill-opacity:1;opacity:0.5">
|
||||
<rect
|
||||
y="108"
|
||||
x="1011"
|
||||
height="33"
|
||||
width="348"
|
||||
id="rect5271"
|
||||
style="opacity:1;fill:#00e8b7;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>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.7 KiB |
@@ -1,60 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="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>
|
||||
|
Before Width: | Height: | Size: 1.7 KiB |
@@ -1,144 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="35"
|
||||
height="200"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
sodipodi:docname="add-workspace-active.svg">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
id="selected_fg_color"
|
||||
osb:paint="solid">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4147" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="selected_bg_color"
|
||||
osb:paint="solid">
|
||||
<stop
|
||||
style="stop-color:#5294e2;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4144" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#selected_fg_color"
|
||||
id="linearGradient4149"
|
||||
x1="18.000003"
|
||||
y1="944.36218"
|
||||
x2="18.000003"
|
||||
y2="960.36218"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="20.477731"
|
||||
inkscape:cx="1.6114609"
|
||||
inkscape:cy="95.511861"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="712"
|
||||
inkscape:window-x="0"
|
||||
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:document-rotation="0">
|
||||
<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.5;fill:#00e8b7;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 3,0 C 1.3380015,0 0,1.3380015 0,3 v 194 c 0,1.662 1.3380015,3 3,3 h 33 c 1.661999,0 3,-1.338 3,-3 V 3 C 39,1.3380015 37.661999,0 36,0 Z m 0,1 h 33 c 1.108,0 2,0.892 2,2 v 194 c 0,1.108 -0.892,2 -2,2 H 3 c -1.108,0 -2,-0.892 -2,-2 V 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="opacity:0.5;fill:#000000;fill-opacity:1" />
|
||||
<rect
|
||||
rx="2"
|
||||
style="opacity:0.5;fill:#00e8b7;fill-opacity:1;stroke:#8fbcbb;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:url(#linearGradient4149);fill-opacity:1">
|
||||
<rect
|
||||
ry="1.1428567"
|
||||
y="944.36218"
|
||||
x="17"
|
||||
height="15.999994"
|
||||
width="2.0000002"
|
||||
id="rect3897"
|
||||
style="opacity:1;fill:url(#linearGradient4149);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" />
|
||||
<rect
|
||||
transform="rotate(90)"
|
||||
ry="1.1428567"
|
||||
y="-26"
|
||||
x="951.36218"
|
||||
height="15.999994"
|
||||
width="2.0000002"
|
||||
id="rect3897-6"
|
||||
style="opacity:1;fill:url(#linearGradient4149);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" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 4.7 KiB |
@@ -1,117 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="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="8"
|
||||
inkscape:cx="-12.039549"
|
||||
inkscape:cy="128.92473"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="696"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="25"
|
||||
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></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:#202229;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:#bac3cf;fill-opacity:1">
|
||||
<rect
|
||||
ry="1.1428567"
|
||||
y="944.36218"
|
||||
x="17"
|
||||
height="15.999994"
|
||||
width="2.0000002"
|
||||
id="rect3897"
|
||||
style="opacity:1;fill:#bac3cf;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:#bac3cf;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>
|
||||
|
Before Width: | Height: | Size: 4.0 KiB |
@@ -1,117 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="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="8"
|
||||
inkscape:cx="-12.039549"
|
||||
inkscape:cy="128.92473"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="696"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="25"
|
||||
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></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:#bac3cf;fill-opacity:1">
|
||||
<rect
|
||||
ry="1.1428567"
|
||||
y="944.36218"
|
||||
x="17"
|
||||
height="15.999994"
|
||||
width="2.0000002"
|
||||
id="rect3897"
|
||||
style="opacity:1;fill:#bac3cf;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:#bac3cf;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>
|
||||
|
Before Width: | Height: | Size: 4.0 KiB |
@@ -1,131 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="32"
|
||||
height="32"
|
||||
viewBox="0 0 32 32"
|
||||
id="svg5386"
|
||||
version="1.1"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
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="18.256804"
|
||||
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:document-rotation="0"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="714"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1">
|
||||
<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:1;fill:none;fill-opacity:1;stroke:#232831;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:#222e39;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>
|
||||
|
Before Width: | Height: | Size: 4.9 KiB |
@@ -1,161 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
version="1.1"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
id="svg7384"
|
||||
height="16"
|
||||
sodipodi:docname="calendar-arrow-left-hover.svg">
|
||||
<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:document-rotation="0"
|
||||
inkscape:snap-bbox-edge-midpoints="true"
|
||||
inkscape:zoom="21.46505"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-height="712"
|
||||
inkscape:snap-to-guides="true"
|
||||
inkscape:snap-others="false"
|
||||
inkscape:snap-nodes="true"
|
||||
inkscape:snap-grids="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:snap-bbox-midpoints="false"
|
||||
inkscape:snap-bbox="true"
|
||||
showguides="true"
|
||||
showgrid="true"
|
||||
showborder="true"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
pagecolor="#ffffff"
|
||||
objecttolerance="10"
|
||||
inkscape:object-paths="false"
|
||||
inkscape:object-nodes="false"
|
||||
id="namedview88"
|
||||
guidetolerance="10"
|
||||
inkscape:guide-bbox="true"
|
||||
gridtolerance="10"
|
||||
inkscape:cy="7.9323223"
|
||||
inkscape:cx="6.1613659"
|
||||
inkscape:current-layer="layer12"
|
||||
borderopacity="1"
|
||||
bordercolor="#666666"
|
||||
inkscape:bbox-paths="true"
|
||||
inkscape:bbox-nodes="true">
|
||||
<inkscape:grid
|
||||
visible="true"
|
||||
type="xygrid"
|
||||
spacingy="1"
|
||||
spacingx="1"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originy="530"
|
||||
originx="141"
|
||||
id="grid4866"
|
||||
enabled="true"
|
||||
empspacing="2" />
|
||||
<inkscape:grid
|
||||
visible="true"
|
||||
type="xygrid"
|
||||
spacingy="0.5"
|
||||
spacingx="0.5"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originy="530"
|
||||
originx="141"
|
||||
opacity="0.1254902"
|
||||
id="grid5968"
|
||||
enabled="true"
|
||||
empspacing="4"
|
||||
empopacity="0"
|
||||
empcolor="#000000"
|
||||
color="#000000" />
|
||||
</sodipodi:namedview>
|
||||
<title
|
||||
id="title9167">Gnome Symbolic Icon Theme</title>
|
||||
<defs
|
||||
id="defs7386">
|
||||
<linearGradient
|
||||
osb:paint="solid"
|
||||
id="selected_bg_color">
|
||||
<stop
|
||||
id="stop4147"
|
||||
offset="0"
|
||||
style="stop-color:#5294e2;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g
|
||||
transform="translate(-100.0002,-747)"
|
||||
style="display:inline"
|
||||
inkscape:label="status"
|
||||
id="layer9"
|
||||
inkscape:groupmode="layer" />
|
||||
<g
|
||||
transform="translate(-100.0002,-747)"
|
||||
inkscape:label="devices"
|
||||
id="layer10"
|
||||
inkscape:groupmode="layer" />
|
||||
<g
|
||||
transform="translate(-100.0002,-747)"
|
||||
inkscape:label="apps"
|
||||
id="layer11"
|
||||
inkscape:groupmode="layer" />
|
||||
<g
|
||||
transform="translate(-100.0002,-747)"
|
||||
inkscape:label="places"
|
||||
id="layer13"
|
||||
inkscape:groupmode="layer" />
|
||||
<g
|
||||
transform="translate(-100.0002,-747)"
|
||||
inkscape:label="mimetypes"
|
||||
id="layer14"
|
||||
inkscape:groupmode="layer" />
|
||||
<g
|
||||
transform="translate(-100.0002,-747)"
|
||||
style="display:inline"
|
||||
inkscape:label="emblems"
|
||||
id="layer15"
|
||||
inkscape:groupmode="layer" />
|
||||
<g
|
||||
transform="translate(-100.0002,-747)"
|
||||
style="display:inline"
|
||||
inkscape:label="emotes"
|
||||
id="g71291"
|
||||
inkscape:groupmode="layer" />
|
||||
<g
|
||||
transform="translate(-100.0002,-747)"
|
||||
style="display:inline"
|
||||
inkscape:label="categories"
|
||||
id="g4953"
|
||||
inkscape:groupmode="layer" />
|
||||
<g
|
||||
transform="translate(-100.0002,-747)"
|
||||
style="display:inline"
|
||||
inkscape:label="actions"
|
||||
id="layer12"
|
||||
inkscape:groupmode="layer">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6040"
|
||||
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"
|
||||
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;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#00e8b7;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 5.5 KiB |
@@ -1,152 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
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>
|
||||
|
Before Width: | Height: | Size: 5.3 KiB |
@@ -1,161 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
version="1.1"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
id="svg7384"
|
||||
height="16"
|
||||
sodipodi:docname="calendar-arrow-right-hover.svg">
|
||||
<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:document-rotation="0"
|
||||
inkscape:snap-bbox-edge-midpoints="true"
|
||||
inkscape:zoom="21.46505"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-height="712"
|
||||
inkscape:snap-to-guides="true"
|
||||
inkscape:snap-others="false"
|
||||
inkscape:snap-nodes="true"
|
||||
inkscape:snap-grids="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:snap-bbox-midpoints="false"
|
||||
inkscape:snap-bbox="true"
|
||||
showguides="true"
|
||||
showgrid="true"
|
||||
showborder="true"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
pagecolor="#ffffff"
|
||||
objecttolerance="10"
|
||||
inkscape:object-paths="false"
|
||||
inkscape:object-nodes="false"
|
||||
id="namedview88"
|
||||
guidetolerance="10"
|
||||
inkscape:guide-bbox="true"
|
||||
gridtolerance="10"
|
||||
inkscape:cy="7.9323223"
|
||||
inkscape:cx="6.1613659"
|
||||
inkscape:current-layer="layer12"
|
||||
borderopacity="1"
|
||||
bordercolor="#666666"
|
||||
inkscape:bbox-paths="true"
|
||||
inkscape:bbox-nodes="true">
|
||||
<inkscape:grid
|
||||
visible="true"
|
||||
type="xygrid"
|
||||
spacingy="1"
|
||||
spacingx="1"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originy="530"
|
||||
originx="141"
|
||||
id="grid4866"
|
||||
enabled="true"
|
||||
empspacing="2" />
|
||||
<inkscape:grid
|
||||
visible="true"
|
||||
type="xygrid"
|
||||
spacingy="0.5"
|
||||
spacingx="0.5"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originy="530"
|
||||
originx="141"
|
||||
opacity="0.1254902"
|
||||
id="grid5968"
|
||||
enabled="true"
|
||||
empspacing="4"
|
||||
empopacity="0"
|
||||
empcolor="#000000"
|
||||
color="#000000" />
|
||||
</sodipodi:namedview>
|
||||
<title
|
||||
id="title9167">Gnome Symbolic Icon Theme</title>
|
||||
<defs
|
||||
id="defs7386">
|
||||
<linearGradient
|
||||
osb:paint="solid"
|
||||
id="selected_bg_color">
|
||||
<stop
|
||||
id="stop4147"
|
||||
offset="0"
|
||||
style="stop-color:#5294e2;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g
|
||||
transform="translate(-100.0002,-747)"
|
||||
style="display:inline"
|
||||
inkscape:label="status"
|
||||
id="layer9"
|
||||
inkscape:groupmode="layer" />
|
||||
<g
|
||||
transform="translate(-100.0002,-747)"
|
||||
inkscape:label="devices"
|
||||
id="layer10"
|
||||
inkscape:groupmode="layer" />
|
||||
<g
|
||||
transform="translate(-100.0002,-747)"
|
||||
inkscape:label="apps"
|
||||
id="layer11"
|
||||
inkscape:groupmode="layer" />
|
||||
<g
|
||||
transform="translate(-100.0002,-747)"
|
||||
inkscape:label="places"
|
||||
id="layer13"
|
||||
inkscape:groupmode="layer" />
|
||||
<g
|
||||
transform="translate(-100.0002,-747)"
|
||||
inkscape:label="mimetypes"
|
||||
id="layer14"
|
||||
inkscape:groupmode="layer" />
|
||||
<g
|
||||
transform="translate(-100.0002,-747)"
|
||||
style="display:inline"
|
||||
inkscape:label="emblems"
|
||||
id="layer15"
|
||||
inkscape:groupmode="layer" />
|
||||
<g
|
||||
transform="translate(-100.0002,-747)"
|
||||
style="display:inline"
|
||||
inkscape:label="emotes"
|
||||
id="g71291"
|
||||
inkscape:groupmode="layer" />
|
||||
<g
|
||||
transform="translate(-100.0002,-747)"
|
||||
style="display:inline"
|
||||
inkscape:label="categories"
|
||||
id="g4953"
|
||||
inkscape:groupmode="layer" />
|
||||
<g
|
||||
transform="translate(-100.0002,-747)"
|
||||
style="display:inline"
|
||||
inkscape:label="actions"
|
||||
id="layer12"
|
||||
inkscape:groupmode="layer">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6040"
|
||||
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"
|
||||
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;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#00e8b7;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 5.5 KiB |
@@ -1,152 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
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>
|
||||
|
Before Width: | Height: | Size: 5.3 KiB |
@@ -1,100 +0,0 @@
|
||||
<?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>
|
||||
|
Before Width: | Height: | Size: 4.9 KiB |
@@ -1,100 +0,0 @@
|
||||
<?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>
|
||||
|
Before Width: | Height: | Size: 4.9 KiB |
@@ -1,100 +0,0 @@
|
||||
<?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>
|
||||
|
Before Width: | Height: | Size: 4.8 KiB |
@@ -1,87 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
sodipodi:docname="corner-ripple.svg"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
id="svg2"
|
||||
height="104"
|
||||
width="104.00001"
|
||||
version="1.1">
|
||||
<sodipodi:namedview
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="0"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:cy="43.066171"
|
||||
inkscape:cx="54.174496"
|
||||
inkscape:zoom="2.263892"
|
||||
fit-margin-bottom="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-top="0"
|
||||
showgrid="false"
|
||||
id="namedview955"
|
||||
inkscape:window-height="712"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
guidetolerance="10"
|
||||
gridtolerance="10"
|
||||
objecttolerance="10"
|
||||
borderopacity="1"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff" />
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
id="linearGradient3857">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#398dd3;stop-opacity:0"
|
||||
id="stop3859" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#00e8b7;stop-opacity:1"
|
||||
id="stop3861" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
xlink:href="#linearGradient3857"
|
||||
id="radialGradient3863"
|
||||
fy="0"
|
||||
fx="0"
|
||||
r="52"
|
||||
cy="0"
|
||||
cx="0" />
|
||||
</defs>
|
||||
<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
|
||||
id="layer1"
|
||||
transform="translate(4.9999999e-6,-948.3622)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
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"
|
||||
transform="translate(52,1000.3622)"
|
||||
d="M 52,0 A 52,52 0 1 1 -52,0 52,52 0 1 1 52,0 Z" />
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.6 KiB |
@@ -1,162 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="32.000011"
|
||||
height="22.999983"
|
||||
viewBox="0 0 32.000011 22.999983"
|
||||
id="svg5386"
|
||||
version="1.1"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
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="28.359444"
|
||||
inkscape:cx="13.051047"
|
||||
inkscape:cy="8.8454562"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g4146"
|
||||
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:document-rotation="0"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="712"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1">
|
||||
<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:1;fill:none;fill-opacity:1;stroke:#232831;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:#222e39;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>
|
||||
|
Before Width: | Height: | Size: 6.1 KiB |
@@ -1,156 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
sodipodi:docname="desklet.svg"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
version="1.1"
|
||||
id="svg5386"
|
||||
viewBox="0 0 32.000011 22.999983"
|
||||
height="22.999983"
|
||||
width="32.000011">
|
||||
<defs
|
||||
id="defs5388">
|
||||
<clipPath
|
||||
id="clipPath4180"
|
||||
clipPathUnits="userSpaceOnUse">
|
||||
<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="rect4182"
|
||||
width="48"
|
||||
height="22.999983"
|
||||
x="-7"
|
||||
y="-1052.1622"
|
||||
transform="scale(1,-1)" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-height="714"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:document-rotation="0"
|
||||
fit-margin-bottom="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-top="0"
|
||||
showguides="false"
|
||||
inkscape:snap-bbox-edge-midpoints="true"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:bbox-paths="true"
|
||||
inkscape:snap-bbox="true"
|
||||
units="px"
|
||||
showgrid="true"
|
||||
inkscape:current-layer="g4146"
|
||||
inkscape:document-units="px"
|
||||
inkscape:cy="7.633471"
|
||||
inkscape:cx="22.308942"
|
||||
inkscape:zoom="27.059436"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
id="base">
|
||||
<inkscape:grid
|
||||
originy="-9.0000174"
|
||||
originx="1.0975551e-05"
|
||||
id="grid5954"
|
||||
type="xygrid" />
|
||||
</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
|
||||
transform="translate(1.0975552e-5,-1020.3622)"
|
||||
id="layer1"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Ebene 1">
|
||||
<g
|
||||
transform="translate(0,-8.8000161)"
|
||||
clip-path="url(#clipPath4180)"
|
||||
id="g4146">
|
||||
<rect
|
||||
style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#232831;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:#222e39;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.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>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 5.8 KiB |
@@ -1,131 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
sodipodi:docname="osd.svg"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
version="1.1"
|
||||
id="svg5386"
|
||||
viewBox="0 0 32 32"
|
||||
height="32"
|
||||
width="32">
|
||||
<defs
|
||||
id="defs5388" />
|
||||
<sodipodi:namedview
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-height="714"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:snap-bbox-edge-midpoints="true"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:bbox-paths="true"
|
||||
inkscape:snap-bbox="true"
|
||||
units="px"
|
||||
showgrid="false"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:document-units="px"
|
||||
inkscape:cy="11.205466"
|
||||
inkscape:cx="23.210075"
|
||||
inkscape:zoom="27.059437"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
id="base">
|
||||
<inkscape:grid
|
||||
id="grid5954"
|
||||
type="xygrid" />
|
||||
</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
|
||||
transform="translate(0,-1020.3622)"
|
||||
id="layer1"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Ebene 1">
|
||||
<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:1;fill:none;fill-opacity:1;stroke:#232831;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:#222e39;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.65"
|
||||
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>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 4.9 KiB |
|
Before Width: | Height: | Size: 838 B |
|
Before Width: | Height: | Size: 680 B |
|
Before Width: | Height: | Size: 8.9 KiB |
@@ -1,167 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
style="display:inline;enable-background:new"
|
||||
version="1.0"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
sodipodi:docname="activities-active.svg"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
sodipodi:version="0.32"
|
||||
id="svg11300"
|
||||
height="24"
|
||||
width="24"
|
||||
inkscape:export-xdpi="90.000000"
|
||||
inkscape:export-ydpi="90.000000">
|
||||
<sodipodi:namedview
|
||||
inkscape:document-rotation="0"
|
||||
guidehiopacity="0.49803922"
|
||||
guidehicolor="#001aff"
|
||||
guideopacity="1"
|
||||
guidecolor="#ff0b00"
|
||||
showborder="true"
|
||||
borderlayer="true"
|
||||
guidetolerance="10000"
|
||||
objecttolerance="10000"
|
||||
inkscape:snap-bbox-midpoints="false"
|
||||
inkscape:snap-bbox-edge-midpoints="false"
|
||||
inkscape:bbox-paths="false"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:guide-bbox="true"
|
||||
showguides="false"
|
||||
inkscape:snap-grids="true"
|
||||
inkscape:object-nodes="true"
|
||||
gridtolerance="10000"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:snap-nodes="true"
|
||||
height="300px"
|
||||
width="400px"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-height="712"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:showpageshadow="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:grid-bbox="true"
|
||||
showgrid="true"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:cy="11.459165"
|
||||
inkscape:cx="4.4779162"
|
||||
inkscape:zoom="21.46505"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="1"
|
||||
borderopacity="1"
|
||||
bordercolor="#525252"
|
||||
pagecolor="#bebebe"
|
||||
id="base"
|
||||
fill="#f57900"
|
||||
stroke="#ef2929">
|
||||
<inkscape:grid
|
||||
snapvisiblegridlinesonly="true"
|
||||
enabled="true"
|
||||
visible="true"
|
||||
empspacing="4"
|
||||
id="grid3123"
|
||||
type="xygrid" />
|
||||
<sodipodi:guide
|
||||
id="guide4135"
|
||||
orientation="1,0"
|
||||
position="12,12" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
osb:paint="solid"
|
||||
id="selected_bg_color">
|
||||
<stop
|
||||
id="stop4140"
|
||||
offset="0"
|
||||
style="stop-color:#5294e2;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<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
|
||||
transform="translate(0,-276)"
|
||||
id="layer1"
|
||||
inkscape:label="Base"
|
||||
inkscape:groupmode="layer"
|
||||
style="display:inline">
|
||||
<rect
|
||||
y="287"
|
||||
x="5"
|
||||
height="2"
|
||||
width="2"
|
||||
id="rect4138"
|
||||
style="opacity:1;fill:#00e8b7;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" />
|
||||
<rect
|
||||
y="287"
|
||||
x="11"
|
||||
height="2"
|
||||
width="2"
|
||||
id="rect4138-6"
|
||||
style="display:inline;opacity:1;fill:#00e8b7;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" />
|
||||
<rect
|
||||
y="287"
|
||||
x="17"
|
||||
height="2"
|
||||
width="2"
|
||||
id="rect4138-9"
|
||||
style="display:inline;opacity:1;fill:#00e8b7;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" />
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 4.9 KiB |
@@ -1,158 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
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>
|
||||
|
Before Width: | Height: | Size: 4.6 KiB |
@@ -1,83 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="27"
|
||||
height="27"
|
||||
viewBox="0 0 27 27"
|
||||
id="svg4196"
|
||||
version="1.1"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
sodipodi:docname="panel-bottom.svg">
|
||||
<defs
|
||||
id="defs4198" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="20.362392"
|
||||
inkscape:cx="3.5273194"
|
||||
inkscape:cy="11.775312"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g4136"
|
||||
showgrid="true"
|
||||
units="px"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:bbox-paths="true"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:snap-bbox-edge-midpoints="true"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="712"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid4762" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata4201">
|
||||
<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,-1025.3622)">
|
||||
<g
|
||||
id="g4136"
|
||||
transform="matrix(1,0,0,-1,0,2077.7244)">
|
||||
<rect
|
||||
y="1025.3622"
|
||||
x="0"
|
||||
height="26"
|
||||
width="27"
|
||||
id="rect4713"
|
||||
style="display:inline;opacity:1;fill:#2e3440;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<rect
|
||||
y="1051.3622"
|
||||
x="0"
|
||||
height="1"
|
||||
width="27"
|
||||
id="rect4713-4"
|
||||
style="display:inline;opacity:1;fill:#232831;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.5 KiB |
@@ -1,83 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
sodipodi:docname="panel-left.svg"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
version="1.1"
|
||||
id="svg4196"
|
||||
viewBox="0 0 27 27"
|
||||
height="27"
|
||||
width="27">
|
||||
<defs
|
||||
id="defs4198" />
|
||||
<sodipodi:namedview
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="29"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-height="700"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:snap-bbox-edge-midpoints="true"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:bbox-paths="true"
|
||||
inkscape:snap-bbox="true"
|
||||
units="px"
|
||||
showgrid="true"
|
||||
inkscape:current-layer="g4136"
|
||||
inkscape:document-units="px"
|
||||
inkscape:cy="17.013621"
|
||||
inkscape:cx="21.439907"
|
||||
inkscape:zoom="21.020004"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
id="base">
|
||||
<inkscape:grid
|
||||
id="grid4762"
|
||||
type="xygrid" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata4201">
|
||||
<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
|
||||
transform="translate(0,-1025.3622)"
|
||||
id="layer1"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Ebene 1">
|
||||
<g
|
||||
transform="rotate(-90,13.5,1038.8622)"
|
||||
id="g4136">
|
||||
<rect
|
||||
style="display:inline;opacity:1;fill:#2e3440;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect4713"
|
||||
width="27"
|
||||
height="26"
|
||||
x="0"
|
||||
y="1025.3622" />
|
||||
<rect
|
||||
style="display:inline;opacity:1;fill:#232831;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect4713-4"
|
||||
width="27"
|
||||
height="1"
|
||||
x="0"
|
||||
y="1051.3622" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.5 KiB |
@@ -1,83 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
sodipodi:docname="panel-right.svg"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
version="1.1"
|
||||
id="svg4196"
|
||||
viewBox="0 0 27 27"
|
||||
height="27"
|
||||
width="27">
|
||||
<defs
|
||||
id="defs4198" />
|
||||
<sodipodi:namedview
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="29"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-height="700"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:snap-bbox-edge-midpoints="true"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:bbox-paths="true"
|
||||
inkscape:snap-bbox="true"
|
||||
units="px"
|
||||
showgrid="true"
|
||||
inkscape:current-layer="g4136"
|
||||
inkscape:document-units="px"
|
||||
inkscape:cy="26.741696"
|
||||
inkscape:cx="0.79586235"
|
||||
inkscape:zoom="7.4316937"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
id="base">
|
||||
<inkscape:grid
|
||||
id="grid4762"
|
||||
type="xygrid" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata4201">
|
||||
<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
|
||||
transform="translate(0,-1025.3622)"
|
||||
id="layer1"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Ebene 1">
|
||||
<g
|
||||
transform="matrix(0,-1,-1,0,1052.3622,1052.3622)"
|
||||
id="g4136">
|
||||
<rect
|
||||
style="display:inline;opacity:0.95;fill:#2e3440;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect4713"
|
||||
width="27"
|
||||
height="26"
|
||||
x="0"
|
||||
y="1025.3622" />
|
||||
<rect
|
||||
style="display:inline;opacity:1;fill:#232831;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect4713-4"
|
||||
width="27"
|
||||
height="1"
|
||||
x="0"
|
||||
y="1051.3622" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.6 KiB |
@@ -1,79 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
sodipodi:docname="panel-top.svg"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
version="1.1"
|
||||
id="svg4196"
|
||||
viewBox="0 0 27 27"
|
||||
height="27"
|
||||
width="27">
|
||||
<defs
|
||||
id="defs4198" />
|
||||
<sodipodi:namedview
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="29"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-height="700"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:snap-bbox-edge-midpoints="true"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:bbox-paths="true"
|
||||
inkscape:snap-bbox="true"
|
||||
units="px"
|
||||
showgrid="true"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:document-units="px"
|
||||
inkscape:cy="19.62736"
|
||||
inkscape:cx="11.460174"
|
||||
inkscape:zoom="21.020004"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
id="base">
|
||||
<inkscape:grid
|
||||
id="grid4762"
|
||||
type="xygrid" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata4201">
|
||||
<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
|
||||
transform="translate(0,-1025.3622)"
|
||||
id="layer1"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Ebene 1">
|
||||
<rect
|
||||
y="1025.3622"
|
||||
x="0"
|
||||
height="26"
|
||||
width="27"
|
||||
id="rect4713"
|
||||
style="display:inline;opacity:1;fill:#2e3440;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<rect
|
||||
y="1051.3622"
|
||||
x="0"
|
||||
height="1"
|
||||
width="27"
|
||||
id="rect4713-4"
|
||||
style="display:inline;opacity:1;fill:#232831;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.4 KiB |
@@ -1,151 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
style="display:inline;enable-background:new"
|
||||
version="1.0"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
sodipodi:docname="window-list-active-bottom.svg"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
sodipodi:version="0.32"
|
||||
id="svg11300"
|
||||
height="4"
|
||||
width="28"
|
||||
inkscape:export-xdpi="90.000000"
|
||||
inkscape:export-ydpi="90.000000">
|
||||
<sodipodi:namedview
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:snap-page="true"
|
||||
inkscape:snap-smooth-nodes="false"
|
||||
guidehiopacity="0.49803922"
|
||||
guidehicolor="#001aff"
|
||||
guideopacity="1"
|
||||
guidecolor="#ff0b00"
|
||||
showborder="true"
|
||||
borderlayer="true"
|
||||
guidetolerance="10000"
|
||||
objecttolerance="10000"
|
||||
inkscape:snap-bbox-midpoints="false"
|
||||
inkscape:snap-bbox-edge-midpoints="false"
|
||||
inkscape:bbox-paths="false"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:guide-bbox="true"
|
||||
showguides="true"
|
||||
inkscape:snap-grids="true"
|
||||
inkscape:object-nodes="true"
|
||||
gridtolerance="10000"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:snap-nodes="true"
|
||||
height="300px"
|
||||
width="400px"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-height="712"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:showpageshadow="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:grid-bbox="true"
|
||||
showgrid="true"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:cy="3.0971298"
|
||||
inkscape:cx="6.9341604"
|
||||
inkscape:zoom="18.75397"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
borderopacity="1"
|
||||
bordercolor="#808080"
|
||||
pagecolor="#ffffff"
|
||||
id="base"
|
||||
fill="#f57900"
|
||||
stroke="#ef2929">
|
||||
<inkscape:grid
|
||||
snapvisiblegridlinesonly="true"
|
||||
enabled="true"
|
||||
visible="true"
|
||||
empspacing="4"
|
||||
id="grid3123"
|
||||
type="xygrid" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
osb:paint="solid"
|
||||
id="selected_bg_color">
|
||||
<stop
|
||||
id="stop4137"
|
||||
offset="0"
|
||||
style="stop-color:#5294e2;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<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
|
||||
transform="translate(0,-296)"
|
||||
id="layer1"
|
||||
inkscape:label="Base"
|
||||
inkscape:groupmode="layer"
|
||||
style="display:inline">
|
||||
<rect
|
||||
y="298"
|
||||
x="2"
|
||||
height="2"
|
||||
width="24"
|
||||
id="rect4270-9"
|
||||
style="opacity:1;fill:#00e8b7;fill-opacity:1;stroke:none" />
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 4.1 KiB |
@@ -1,152 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
style="display:inline;enable-background:new"
|
||||
version="1.0"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
sodipodi:docname="window-list-active-left.svg"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
sodipodi:version="0.32"
|
||||
id="svg11300"
|
||||
height="28"
|
||||
width="4"
|
||||
inkscape:export-xdpi="90.000000"
|
||||
inkscape:export-ydpi="90.000000">
|
||||
<sodipodi:namedview
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:snap-page="true"
|
||||
inkscape:snap-smooth-nodes="false"
|
||||
guidehiopacity="0.49803922"
|
||||
guidehicolor="#001aff"
|
||||
guideopacity="1"
|
||||
guidecolor="#ff0b00"
|
||||
showborder="true"
|
||||
borderlayer="true"
|
||||
guidetolerance="10000"
|
||||
objecttolerance="10000"
|
||||
inkscape:snap-bbox-midpoints="false"
|
||||
inkscape:snap-bbox-edge-midpoints="false"
|
||||
inkscape:bbox-paths="false"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:guide-bbox="true"
|
||||
showguides="true"
|
||||
inkscape:snap-grids="true"
|
||||
inkscape:object-nodes="true"
|
||||
gridtolerance="10000"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:snap-nodes="true"
|
||||
height="300px"
|
||||
width="400px"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-height="712"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:showpageshadow="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:grid-bbox="true"
|
||||
showgrid="true"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:cy="5.3696817"
|
||||
inkscape:cx="6.9544689"
|
||||
inkscape:zoom="9.376985"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
borderopacity="1"
|
||||
bordercolor="#808080"
|
||||
pagecolor="#ffffff"
|
||||
id="base"
|
||||
fill="#f57900"
|
||||
stroke="#ef2929">
|
||||
<inkscape:grid
|
||||
snapvisiblegridlinesonly="true"
|
||||
enabled="true"
|
||||
visible="true"
|
||||
empspacing="4"
|
||||
id="grid3123"
|
||||
type="xygrid" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
osb:paint="solid"
|
||||
id="selected_bg_color">
|
||||
<stop
|
||||
id="stop4137"
|
||||
offset="0"
|
||||
style="stop-color:#5294e2;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<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
|
||||
transform="translate(0,-272)"
|
||||
id="layer1"
|
||||
inkscape:label="Base"
|
||||
inkscape:groupmode="layer"
|
||||
style="display:inline">
|
||||
<rect
|
||||
transform="rotate(90)"
|
||||
y="-2"
|
||||
x="274"
|
||||
height="2"
|
||||
width="24"
|
||||
id="rect4270-9"
|
||||
style="opacity:1;fill:#00e8b7;fill-opacity:1;stroke:none" />
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 4.1 KiB |
@@ -1,152 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
style="display:inline;enable-background:new"
|
||||
version="1.0"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
sodipodi:docname="window-list-active-right.svg"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
sodipodi:version="0.32"
|
||||
id="svg11300"
|
||||
height="28"
|
||||
width="4"
|
||||
inkscape:export-xdpi="90.000000"
|
||||
inkscape:export-ydpi="90.000000">
|
||||
<sodipodi:namedview
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:snap-page="true"
|
||||
inkscape:snap-smooth-nodes="false"
|
||||
guidehiopacity="0.49803922"
|
||||
guidehicolor="#001aff"
|
||||
guideopacity="1"
|
||||
guidecolor="#ff0b00"
|
||||
showborder="true"
|
||||
borderlayer="true"
|
||||
guidetolerance="10000"
|
||||
objecttolerance="10000"
|
||||
inkscape:snap-bbox-midpoints="false"
|
||||
inkscape:snap-bbox-edge-midpoints="false"
|
||||
inkscape:bbox-paths="false"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:guide-bbox="true"
|
||||
showguides="true"
|
||||
inkscape:snap-grids="true"
|
||||
inkscape:object-nodes="true"
|
||||
gridtolerance="10000"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:snap-nodes="true"
|
||||
height="300px"
|
||||
width="400px"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-height="712"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:showpageshadow="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:grid-bbox="true"
|
||||
showgrid="true"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:cy="5.3696817"
|
||||
inkscape:cx="6.9544689"
|
||||
inkscape:zoom="9.376985"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
borderopacity="1"
|
||||
bordercolor="#808080"
|
||||
pagecolor="#ffffff"
|
||||
id="base"
|
||||
fill="#f57900"
|
||||
stroke="#ef2929">
|
||||
<inkscape:grid
|
||||
snapvisiblegridlinesonly="true"
|
||||
enabled="true"
|
||||
visible="true"
|
||||
empspacing="4"
|
||||
id="grid3123"
|
||||
type="xygrid" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
osb:paint="solid"
|
||||
id="selected_bg_color">
|
||||
<stop
|
||||
id="stop4137"
|
||||
offset="0"
|
||||
style="stop-color:#5294e2;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<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
|
||||
transform="translate(0,-272)"
|
||||
id="layer1"
|
||||
inkscape:label="Base"
|
||||
inkscape:groupmode="layer"
|
||||
style="display:inline">
|
||||
<rect
|
||||
transform="rotate(90)"
|
||||
y="-4"
|
||||
x="274"
|
||||
height="2"
|
||||
width="24"
|
||||
id="rect4270-9"
|
||||
style="opacity:1;fill:#00e8b7;fill-opacity:1;stroke:none" />
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 4.1 KiB |
@@ -1,151 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
style="display:inline;enable-background:new"
|
||||
version="1.0"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
sodipodi:docname="window-list-active-top.svg"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
sodipodi:version="0.32"
|
||||
id="svg11300"
|
||||
height="4"
|
||||
width="28"
|
||||
inkscape:export-xdpi="90.000000"
|
||||
inkscape:export-ydpi="90.000000">
|
||||
<sodipodi:namedview
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:snap-page="true"
|
||||
inkscape:snap-smooth-nodes="false"
|
||||
guidehiopacity="0.49803922"
|
||||
guidehicolor="#001aff"
|
||||
guideopacity="1"
|
||||
guidecolor="#ff0b00"
|
||||
showborder="true"
|
||||
borderlayer="true"
|
||||
guidetolerance="10000"
|
||||
objecttolerance="10000"
|
||||
inkscape:snap-bbox-midpoints="false"
|
||||
inkscape:snap-bbox-edge-midpoints="false"
|
||||
inkscape:bbox-paths="false"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:guide-bbox="true"
|
||||
showguides="true"
|
||||
inkscape:snap-grids="true"
|
||||
inkscape:object-nodes="true"
|
||||
gridtolerance="10000"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:snap-nodes="true"
|
||||
height="300px"
|
||||
width="400px"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-height="712"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:showpageshadow="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:grid-bbox="true"
|
||||
showgrid="true"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:cy="3.0971298"
|
||||
inkscape:cx="-2.1454696"
|
||||
inkscape:zoom="18.75397"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
borderopacity="1"
|
||||
bordercolor="#808080"
|
||||
pagecolor="#ffffff"
|
||||
id="base"
|
||||
fill="#f57900"
|
||||
stroke="#ef2929">
|
||||
<inkscape:grid
|
||||
snapvisiblegridlinesonly="true"
|
||||
enabled="true"
|
||||
visible="true"
|
||||
empspacing="4"
|
||||
id="grid3123"
|
||||
type="xygrid" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
osb:paint="solid"
|
||||
id="selected_bg_color">
|
||||
<stop
|
||||
id="stop4137"
|
||||
offset="0"
|
||||
style="stop-color:#5294e2;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<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
|
||||
transform="translate(0,-296)"
|
||||
id="layer1"
|
||||
inkscape:label="Base"
|
||||
inkscape:groupmode="layer"
|
||||
style="display:inline">
|
||||
<rect
|
||||
y="296"
|
||||
x="2"
|
||||
height="2"
|
||||
width="24"
|
||||
id="rect4270-9"
|
||||
style="opacity:1;fill:#00e8b7;fill-opacity:1;stroke:none" />
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 4.1 KiB |
@@ -1,207 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="50"
|
||||
height="20"
|
||||
id="svg7539"
|
||||
version="1.1"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
sodipodi:docname="switch-off-selected.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>
|
||||
<filter
|
||||
height="1.072"
|
||||
y="-0.035999998"
|
||||
width="1.072"
|
||||
x="-0.035999998"
|
||||
id="filter930"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
inkscape:collect="always">
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur932"
|
||||
stdDeviation="0.225"
|
||||
inkscape:collect="always" />
|
||||
</filter>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="4.8062428"
|
||||
inkscape:cx="3.8344054"
|
||||
inkscape:cy="11.11566"
|
||||
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="1366"
|
||||
inkscape:window-height="714"
|
||||
inkscape:window-x="0"
|
||||
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:document-rotation="0">
|
||||
<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)">
|
||||
<path
|
||||
id="path900"
|
||||
d="m 127.85953,-77.245935 a 9.5,9.5 0 0 0 -0.0195,0.585938 9.5,9.5 0 0 0 9.5,9.5 h 7.5 2 7.5 a 9.5,9.5 0 0 0 9.5,-9.5 9.5,9.5 0 0 0 -0.0195,-0.414062 9.5,9.5 0 0 1 -9.48053,8.914062 h -7.5 -2 -7.5 a 9.5,9.5 0 0 1 -9.48047,-9.085938 z"
|
||||
style="opacity:1;fill:none;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path872"
|
||||
d="m 137.34,-87.159997 a 9.5,9.5 0 0 0 -9.5,9.5 9.5,9.5 0 0 0 9.5,9.5 h 7.5 2 7.5 a 9.5,9.5 0 0 0 9.5,-9.5 9.5,9.5 0 0 0 -9.5,-9.5 h -7.5 -2 z"
|
||||
style="fill:#485563;fill-opacity:1;stroke:#485563;stroke-opacity:1" />
|
||||
<rect
|
||||
ry="7.392344"
|
||||
y="-83.659973"
|
||||
x="129.83998"
|
||||
height="15"
|
||||
width="15"
|
||||
id="rect934"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#000000;fill-opacity:0.1;fill-rule:nonzero;stroke:none;stroke-width:1.76471;stroke-opacity:1;marker:none;filter:url(#filter930);enable-background:new" />
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#000000;fill-opacity:0.2;fill-rule:nonzero;stroke:none;stroke-width:1.76471;stroke-opacity:1;marker:none;filter:url(#filter930);enable-background:new"
|
||||
id="rect912"
|
||||
width="15"
|
||||
height="15"
|
||||
x="129.83998"
|
||||
y="-84.659973"
|
||||
ry="7.392344" />
|
||||
<rect
|
||||
ry="7.392344"
|
||||
y="-85.159973"
|
||||
x="129.83998"
|
||||
height="15"
|
||||
width="15"
|
||||
id="rect3872"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#859398;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.76471;stroke-opacity:1;marker:none;enable-background:new" />
|
||||
<path
|
||||
id="path902"
|
||||
d="m 137.34,-87.159997 a 9.5,9.5 0 0 0 -9.5,9.5 9.5,9.5 0 0 0 0.0195,0.414062 9.5,9.5 0 0 1 9.4805,-8.914062 h 7.5 2 7.5 a 9.5,9.5 0 0 1 9.48047,9.085938 9.5,9.5 0 0 0 0.0195,-0.585938 9.5,9.5 0 0 0 -9.5,-9.5 h -7.5 -2 z"
|
||||
style="fill:none;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect936"
|
||||
d="m 137.23259,-85.159997 c -4.09536,0 -7.39258,3.29722 -7.39258,7.39258 v 0.21484 c 0,0.1326 0.0127,0.26174 0.0195,0.39258 0.20406,-3.91019 3.41029,-7 7.37305,-7 h 0.21484 c 3.96276,0 7.16899,3.08981 7.37305,7 0.007,-0.13084 0.0195,-0.25998 0.0195,-0.39258 v -0.21484 c 0,-4.09536 -3.29722,-7.39258 -7.39258,-7.39258 z"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:0.2;fill-rule:nonzero;stroke:none;stroke-width:1.76471;stroke-opacity:1;marker:none;enable-background:new" />
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 7.1 KiB |
@@ -1,243 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="50"
|
||||
height="20"
|
||||
id="svg7539"
|
||||
version="1.1"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
sodipodi:docname="switch-on-selected.svg">
|
||||
<defs
|
||||
id="defs7541">
|
||||
<linearGradient
|
||||
id="linearGradient870"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop866"
|
||||
offset="0"
|
||||
style="stop-color:#ff9200;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop868"
|
||||
offset="1"
|
||||
style="stop-color:#fadd00;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="selected_fg_color"
|
||||
osb:paint="solid">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4171" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="selected_bg_color"
|
||||
osb:paint="solid">
|
||||
<stop
|
||||
style="stop-color:#5294e2;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4166" />
|
||||
</linearGradient>
|
||||
<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>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#selected_fg_color"
|
||||
id="linearGradient4173"
|
||||
x1="26"
|
||||
y1="1031.3622"
|
||||
x2="26"
|
||||
y2="1051.3622"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<filter
|
||||
height="1.072"
|
||||
y="-0.035999998"
|
||||
width="1.072"
|
||||
x="-0.035999998"
|
||||
id="filter930"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
inkscape:collect="always">
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur932"
|
||||
stdDeviation="0.225"
|
||||
inkscape:collect="always" />
|
||||
</filter>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient870"
|
||||
id="linearGradient867"
|
||||
x1="127.34"
|
||||
y1="-78"
|
||||
x2="164.34"
|
||||
y2="-78"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient870"
|
||||
id="linearGradient875"
|
||||
x1="127.34"
|
||||
y1="-78"
|
||||
x2="164.34"
|
||||
y2="-78"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="9.6124852"
|
||||
inkscape:cx="14.042172"
|
||||
inkscape:cy="11.838426"
|
||||
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="1366"
|
||||
inkscape:window-height="714"
|
||||
inkscape:window-x="0"
|
||||
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:document-rotation="0">
|
||||
<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)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path872"
|
||||
d="m 137.34,-87.499997 a 9.5,9.5 0 0 0 -9.5,9.5 9.5,9.5 0 0 0 9.5,9.5 h 7.5 2 7.5 a 9.5,9.5 0 0 0 9.5,-9.5 9.5,9.5 0 0 0 -9.5,-9.5 h -7.5 -2 z"
|
||||
style="fill:url(#linearGradient867);fill-opacity:1.0;stroke:url(#linearGradient875);stroke-opacity:1" />
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#000000;fill-opacity:0.2;fill-rule:nonzero;stroke:none;stroke-width:1.76471;stroke-opacity:1;marker:none;filter:url(#filter930);enable-background:new"
|
||||
id="rect912"
|
||||
width="15"
|
||||
height="15"
|
||||
x="146.34"
|
||||
y="-84.500008"
|
||||
ry="7.392344" />
|
||||
<rect
|
||||
ry="7.392344"
|
||||
y="-85.000008"
|
||||
x="146.34"
|
||||
height="15"
|
||||
width="15"
|
||||
id="rect3872"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#f8f8f8;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.76471;stroke-opacity:1;marker:none;enable-background:new" />
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 7.1 KiB |
@@ -1,203 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
inkscape:export-ydpi="90"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-filename="/home/steffen/.local/share/themes/neu2/gtk-3.0/assets/dark/checkbox-unchecked.png"
|
||||
sodipodi:docname="checkbox-checked-focused.svg"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
version="1.1"
|
||||
id="svg2"
|
||||
height="16"
|
||||
width="16">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
osb:paint="solid"
|
||||
id="selected_bg_color">
|
||||
<stop
|
||||
id="stop4159"
|
||||
offset="0"
|
||||
style="stop-color:#5294e2;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3768-6">
|
||||
<stop
|
||||
id="stop3770-6"
|
||||
offset="0"
|
||||
style="stop-color:#0f0f0f;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#171717;stop-opacity:1;"
|
||||
offset="0.078125"
|
||||
id="stop3778-2" />
|
||||
<stop
|
||||
id="stop3774-0"
|
||||
offset="0.97355771"
|
||||
style="stop-color:#171717;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop3776-1"
|
||||
offset="1"
|
||||
style="stop-color:#1b1b1b;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:snap-bbox-edge-midpoints="true"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:bbox-paths="true"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-height="714"
|
||||
inkscape:window-width="1366"
|
||||
showborder="true"
|
||||
inkscape:showpageshadow="false"
|
||||
inkscape:guide-bbox="true"
|
||||
showguides="true"
|
||||
inkscape:snap-bbox="true"
|
||||
showgrid="true"
|
||||
inkscape:current-layer="g5400-6-68"
|
||||
inkscape:document-units="px"
|
||||
inkscape:cy="0.18346861"
|
||||
inkscape:cx="-30.177817"
|
||||
inkscape:zoom="4.9573586"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
id="base">
|
||||
<inkscape:grid
|
||||
snapvisiblegridlinesonly="true"
|
||||
enabled="true"
|
||||
visible="true"
|
||||
empspacing="5"
|
||||
id="grid2985"
|
||||
type="xygrid" />
|
||||
</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
|
||||
transform="translate(0,-1036.3622)"
|
||||
id="layer1"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Ebene 1">
|
||||
<g
|
||||
inkscape:label="#g10758"
|
||||
id="checkbox-checked-dark"
|
||||
style="display:inline;opacity:1"
|
||||
transform="translate(-36,1036)">
|
||||
<g
|
||||
transform="translate(19)"
|
||||
style="display:inline"
|
||||
id="checkbox-unchecked-5-59"
|
||||
inkscape:label="#g22047">
|
||||
<g
|
||||
inkscape:label="#g21853"
|
||||
id="sdsd-7-54">
|
||||
<g
|
||||
id="scdsdcd-5-8"
|
||||
inkscape:label="#g14325"
|
||||
transform="translate(0,-30)">
|
||||
<g
|
||||
style="display:inline"
|
||||
id="g15812-6-6-1-5-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-53-5"
|
||||
style="display:inline">
|
||||
<g
|
||||
id="g5428-8-1-4-0-0-4-2" />
|
||||
</g>
|
||||
</g>
|
||||
<rect
|
||||
y="30.362183"
|
||||
x="17"
|
||||
height="16"
|
||||
width="16"
|
||||
id="rect13523-7-11"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
|
||||
<g
|
||||
id="g5400-6-68">
|
||||
<rect
|
||||
ry="1.9999917"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#00e8b7;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
id="rect5147-9-1-5-7-6-7-4"
|
||||
width="13.999989"
|
||||
height="13.99999"
|
||||
x="18.000006"
|
||||
y="31.362196"
|
||||
rx="1.9999943" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
style="display:inline"
|
||||
transform="translate(36,-1036)"
|
||||
id="checkbox-checked-dark-7-37"
|
||||
inkscape:label="Ebene 1">
|
||||
<g
|
||||
style="opacity:0.85;fill:#1a1a1a;fill-opacity:1"
|
||||
transform="rotate(45,-3.2604448,1033.6624)"
|
||||
id="g3981-6-4-97" />
|
||||
<g
|
||||
transform="rotate(45,7.4999938,1026.3622)"
|
||||
id="g4049-2-5">
|
||||
<g
|
||||
transform="translate(12.374375,11.531233)"
|
||||
id="g4056-7-6">
|
||||
<g
|
||||
style="fill:#3b3c3e;fill-opacity:1"
|
||||
transform="translate(-3,-4.9999826)"
|
||||
id="g3981-0-8">
|
||||
<rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none"
|
||||
id="rect3977-39-90"
|
||||
width="5"
|
||||
height="1.9999826"
|
||||
x="8"
|
||||
y="1033.3622"
|
||||
rx="0.66666085"
|
||||
ry="0.66666085" />
|
||||
<rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none"
|
||||
id="rect3979-7-60"
|
||||
width="2"
|
||||
height="7.9999828"
|
||||
x="11"
|
||||
y="1027.3622"
|
||||
ry="0" />
|
||||
</g>
|
||||
<rect
|
||||
transform="translate(0,1036.3622)"
|
||||
y="-8"
|
||||
x="5"
|
||||
height="1"
|
||||
width="3"
|
||||
id="rect4047-81-5"
|
||||
style="fill:#eeeeee;fill-opacity:0;stroke:none" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 6.4 KiB |
@@ -1,203 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
inkscape:export-ydpi="90"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-filename="/home/steffen/.local/share/themes/neu2/gtk-3.0/assets/dark/checkbox-unchecked.png"
|
||||
sodipodi:docname="checkbox-checked.svg"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
version="1.1"
|
||||
id="svg2"
|
||||
height="16"
|
||||
width="16">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
osb:paint="solid"
|
||||
id="selected_bg_color">
|
||||
<stop
|
||||
id="stop4159"
|
||||
offset="0"
|
||||
style="stop-color:#5230e2;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3768-6">
|
||||
<stop
|
||||
id="stop3770-6"
|
||||
offset="0"
|
||||
style="stop-color:#0f0f0f;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#171717;stop-opacity:1;"
|
||||
offset="0.078125"
|
||||
id="stop3778-2" />
|
||||
<stop
|
||||
id="stop3774-0"
|
||||
offset="0.97355771"
|
||||
style="stop-color:#171717;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop3776-1"
|
||||
offset="1"
|
||||
style="stop-color:#1b1b1b;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:snap-bbox-edge-midpoints="true"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:bbox-paths="true"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-height="714"
|
||||
inkscape:window-width="1366"
|
||||
showborder="true"
|
||||
inkscape:showpageshadow="false"
|
||||
inkscape:guide-bbox="true"
|
||||
showguides="true"
|
||||
inkscape:snap-bbox="true"
|
||||
showgrid="true"
|
||||
inkscape:current-layer="g5400-6-68"
|
||||
inkscape:document-units="px"
|
||||
inkscape:cy="7.5299665"
|
||||
inkscape:cx="-23.283526"
|
||||
inkscape:zoom="7.0107637"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
id="base">
|
||||
<inkscape:grid
|
||||
snapvisiblegridlinesonly="true"
|
||||
enabled="true"
|
||||
visible="true"
|
||||
empspacing="5"
|
||||
id="grid2985"
|
||||
type="xygrid" />
|
||||
</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
|
||||
transform="translate(0,-1036.3622)"
|
||||
id="layer1"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Ebene 1">
|
||||
<g
|
||||
inkscape:label="#g10758"
|
||||
id="checkbox-checked-dark"
|
||||
style="display:inline;opacity:1"
|
||||
transform="translate(-36,1036)">
|
||||
<g
|
||||
transform="translate(19)"
|
||||
style="display:inline"
|
||||
id="checkbox-unchecked-5-59"
|
||||
inkscape:label="#g22047">
|
||||
<g
|
||||
inkscape:label="#g21853"
|
||||
id="sdsd-7-54">
|
||||
<g
|
||||
id="scdsdcd-5-8"
|
||||
inkscape:label="#g14325"
|
||||
transform="translate(0,-30)">
|
||||
<g
|
||||
style="display:inline"
|
||||
id="g15812-6-6-1-5-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-53-5"
|
||||
style="display:inline">
|
||||
<g
|
||||
id="g5428-8-1-4-0-0-4-2" />
|
||||
</g>
|
||||
</g>
|
||||
<rect
|
||||
y="30.362183"
|
||||
x="17"
|
||||
height="16"
|
||||
width="16"
|
||||
id="rect13523-7-11"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
|
||||
<g
|
||||
id="g5400-6-68">
|
||||
<rect
|
||||
ry="1.9999917"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#00e8b7;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
id="rect5147-9-1-5-7-6-7-4"
|
||||
width="13.999989"
|
||||
height="13.99999"
|
||||
x="18.000006"
|
||||
y="31.362196"
|
||||
rx="1.9999943" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
style="display:inline"
|
||||
transform="translate(36,-1036)"
|
||||
id="checkbox-checked-dark-7-37"
|
||||
inkscape:label="Ebene 1">
|
||||
<g
|
||||
style="opacity:0.85;fill:#1a1a1a;fill-opacity:1"
|
||||
transform="rotate(45,-3.2604448,1033.6624)"
|
||||
id="g3981-6-4-97" />
|
||||
<g
|
||||
transform="rotate(45,7.4999938,1026.3622)"
|
||||
id="g4049-2-5">
|
||||
<g
|
||||
transform="translate(12.374375,11.531233)"
|
||||
id="g4056-7-6">
|
||||
<g
|
||||
style="fill:#3b3c3e;fill-opacity:1"
|
||||
transform="translate(-3,-4.9999826)"
|
||||
id="g3981-0-8">
|
||||
<rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none"
|
||||
id="rect3977-39-90"
|
||||
width="5"
|
||||
height="1.9999826"
|
||||
x="8"
|
||||
y="1033.3622"
|
||||
rx="0.66666085"
|
||||
ry="0.66666085" />
|
||||
<rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none"
|
||||
id="rect3979-7-60"
|
||||
width="2"
|
||||
height="7.9999828"
|
||||
x="11"
|
||||
y="1027.3622"
|
||||
ry="0" />
|
||||
</g>
|
||||
<rect
|
||||
transform="translate(0,1036.3622)"
|
||||
y="-8"
|
||||
x="5"
|
||||
height="1"
|
||||
width="3"
|
||||
id="rect4047-81-5"
|
||||
style="fill:#eeeeee;fill-opacity:0;stroke:none" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 6.4 KiB |
@@ -1,149 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
inkscape:export-ydpi="90"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-filename="/home/steffen/.local/share/themes/neu2/gtk-3.0/assets/dark/checkbox-unchecked.png"
|
||||
sodipodi:docname="checkbox-unchecked-focused.svg"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
version="1.1"
|
||||
id="svg2"
|
||||
height="16"
|
||||
width="16">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
osb:paint="solid"
|
||||
id="selected_bg_color">
|
||||
<stop
|
||||
id="stop4150"
|
||||
offset="0"
|
||||
style="stop-color:#5294e2;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3768-6">
|
||||
<stop
|
||||
id="stop3770-6"
|
||||
offset="0"
|
||||
style="stop-color:#0f0f0f;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#171717;stop-opacity:1;"
|
||||
offset="0.078125"
|
||||
id="stop3778-2" />
|
||||
<stop
|
||||
id="stop3774-0"
|
||||
offset="0.97355771"
|
||||
style="stop-color:#171717;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop3776-1"
|
||||
offset="1"
|
||||
style="stop-color:#1b1b1b;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:snap-bbox-edge-midpoints="true"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:bbox-paths="true"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-height="714"
|
||||
inkscape:window-width="1366"
|
||||
showborder="true"
|
||||
inkscape:showpageshadow="false"
|
||||
inkscape:guide-bbox="true"
|
||||
showguides="true"
|
||||
inkscape:snap-bbox="true"
|
||||
showgrid="true"
|
||||
inkscape:current-layer="g5400-2-47"
|
||||
inkscape:document-units="px"
|
||||
inkscape:cy="2.1620001"
|
||||
inkscape:cx="0.1158876"
|
||||
inkscape:zoom="27.632352"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
id="base">
|
||||
<inkscape:grid
|
||||
snapvisiblegridlinesonly="true"
|
||||
enabled="true"
|
||||
visible="true"
|
||||
empspacing="5"
|
||||
id="grid2985"
|
||||
type="xygrid" />
|
||||
</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
|
||||
transform="translate(0,-1036.3622)"
|
||||
id="layer1"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Ebene 1">
|
||||
<g
|
||||
inkscape:label="#g22047"
|
||||
id="checkbox-unchecked-dark"
|
||||
style="display:inline;opacity:1"
|
||||
transform="translate(-17,1036)">
|
||||
<g
|
||||
id="sdsd-0-1"
|
||||
inkscape:label="#g21853">
|
||||
<g
|
||||
transform="translate(0,-30)"
|
||||
inkscape:label="#g14325"
|
||||
id="scdsdcd-0-4">
|
||||
<g
|
||||
transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)"
|
||||
id="g15812-6-6-1-4-4"
|
||||
style="display:inline">
|
||||
<g
|
||||
style="display:inline"
|
||||
id="g5489-2-9-6-8-8-9-7"
|
||||
transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)">
|
||||
<g
|
||||
id="g5428-8-1-4-0-0-65-8" />
|
||||
</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-4-0"
|
||||
width="16"
|
||||
height="16"
|
||||
x="17"
|
||||
y="30.362183" />
|
||||
<g
|
||||
id="g5400-2-47">
|
||||
<rect
|
||||
rx="2"
|
||||
y="31.862183"
|
||||
x="18.5"
|
||||
height="12.999997"
|
||||
width="13"
|
||||
id="rect5147-9-1-5-7-6-3-70"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:0.2;stroke:#00e8b7;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="2" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 4.6 KiB |
@@ -1,140 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
inkscape:export-ydpi="90"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-filename="/home/steffen/.local/share/themes/neu2/gtk-3.0/assets/dark/checkbox-unchecked.png"
|
||||
sodipodi:docname="checkbox-unchecked.svg"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
version="1.1"
|
||||
id="svg2"
|
||||
height="16"
|
||||
width="16">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
id="linearGradient3768-6">
|
||||
<stop
|
||||
id="stop3770-6"
|
||||
offset="0"
|
||||
style="stop-color:#0f0f0f;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#171717;stop-opacity:1;"
|
||||
offset="0.078125"
|
||||
id="stop3778-2" />
|
||||
<stop
|
||||
id="stop3774-0"
|
||||
offset="0.97355771"
|
||||
style="stop-color:#171717;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop3776-1"
|
||||
offset="1"
|
||||
style="stop-color:#1b1b1b;stop-opacity:1;" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:snap-bbox-edge-midpoints="true"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:bbox-paths="true"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="358"
|
||||
inkscape:window-height="712"
|
||||
inkscape:window-width="1006"
|
||||
showborder="true"
|
||||
inkscape:showpageshadow="false"
|
||||
inkscape:guide-bbox="true"
|
||||
showguides="true"
|
||||
inkscape:snap-bbox="true"
|
||||
showgrid="true"
|
||||
inkscape:current-layer="g5400-2-47"
|
||||
inkscape:document-units="px"
|
||||
inkscape:cy="8.1556653"
|
||||
inkscape:cx="6.7628387"
|
||||
inkscape:zoom="2.6831313"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
id="base">
|
||||
<inkscape:grid
|
||||
snapvisiblegridlinesonly="true"
|
||||
enabled="true"
|
||||
visible="true"
|
||||
empspacing="5"
|
||||
id="grid2985"
|
||||
type="xygrid" />
|
||||
</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
|
||||
transform="translate(0,-1036.3622)"
|
||||
id="layer1"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Ebene 1">
|
||||
<g
|
||||
inkscape:label="#g22047"
|
||||
id="checkbox-unchecked-dark"
|
||||
style="display:inline;opacity:1"
|
||||
transform="translate(-17,1036)">
|
||||
<g
|
||||
id="sdsd-0-1"
|
||||
inkscape:label="#g21853">
|
||||
<g
|
||||
transform="translate(0,-30)"
|
||||
inkscape:label="#g14325"
|
||||
id="scdsdcd-0-4">
|
||||
<g
|
||||
transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)"
|
||||
id="g15812-6-6-1-4-4"
|
||||
style="display:inline">
|
||||
<g
|
||||
style="display:inline"
|
||||
id="g5489-2-9-6-8-8-9-7"
|
||||
transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)">
|
||||
<g
|
||||
id="g5428-8-1-4-0-0-65-8" />
|
||||
</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-4-0"
|
||||
width="16"
|
||||
height="16"
|
||||
x="17"
|
||||
y="30.362183" />
|
||||
<g
|
||||
id="g5400-2-47">
|
||||
<rect
|
||||
rx="2"
|
||||
y="31.862183"
|
||||
x="18.5"
|
||||
height="12.999997"
|
||||
width="13"
|
||||
id="rect5147-9-1-5-7-6-3-70"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:0.1981169;stroke:#262934;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="2" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 4.4 KiB |
@@ -1,131 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="32"
|
||||
height="32"
|
||||
viewBox="0 0 32 32"
|
||||
id="svg5386"
|
||||
version="1.1"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
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="6.4173492"
|
||||
inkscape:cx="10.702765"
|
||||
inkscape:cy="11.654995"
|
||||
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:document-rotation="0"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="714"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1">
|
||||
<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:1;fill:none;fill-opacity:1;stroke:#232831;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:#222e39;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.02;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="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.07;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="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.13;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="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)"
|
||||
id="rect4164-4-7"
|
||||
d="M 431.64844,388.30469 C 432.37319,389.0416 433.37997,389.5 434.5,389.5 h 15.00023 c 1.12003,0 2.12681,-0.4584 2.85156,-1.19531 -0.2591,0.12217 -0.5451,0.19531 -0.85156,0.19531 H 432.5 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>
|
||||
|
Before Width: | Height: | Size: 4.8 KiB |
@@ -1,116 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="37"
|
||||
height="18"
|
||||
id="svg3783"
|
||||
version="1.1"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
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="14.099859"
|
||||
inkscape:cx="13.902559"
|
||||
inkscape:cy="6.4384088"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="g3027"
|
||||
showgrid="true"
|
||||
inkscape:showpageshadow="false"
|
||||
inkscape:window-width="1364"
|
||||
inkscape:window-height="700"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="29"
|
||||
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:document-rotation="0">
|
||||
<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>
|
||||
|
Before Width: | Height: | Size: 3.7 KiB |
@@ -1,105 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
sodipodi:docname="button-box.svg"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
version="1.1"
|
||||
id="svg5386"
|
||||
viewBox="0 0 22 18.999971"
|
||||
height="18.999971"
|
||||
width="22">
|
||||
<defs
|
||||
id="defs5388">
|
||||
<clipPath
|
||||
id="clipPath4228"
|
||||
clipPathUnits="userSpaceOnUse">
|
||||
<rect
|
||||
ry="1.5"
|
||||
rx="1.5"
|
||||
y="1027.3622"
|
||||
x="-3"
|
||||
height="29.000017"
|
||||
width="38"
|
||||
id="rect4230"
|
||||
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
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-height="714"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:snap-smooth-nodes="true"
|
||||
inkscape:object-nodes="true"
|
||||
inkscape:snap-intersection-paths="true"
|
||||
inkscape:object-paths="true"
|
||||
showguides="false"
|
||||
fit-margin-bottom="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-top="0"
|
||||
inkscape:snap-bbox-edge-midpoints="true"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:bbox-paths="true"
|
||||
inkscape:snap-bbox="true"
|
||||
units="px"
|
||||
showgrid="true"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:document-units="px"
|
||||
inkscape:cy="17.423975"
|
||||
inkscape:cx="18.945179"
|
||||
inkscape:zoom="9.7144868"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
id="base">
|
||||
<inkscape:grid
|
||||
originy="-6.000065"
|
||||
originx="-5"
|
||||
id="grid5954"
|
||||
type="xygrid" />
|
||||
</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
|
||||
transform="translate(-5,-1027.3622)"
|
||||
id="layer1"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Ebene 1">
|
||||
<path
|
||||
sodipodi:nodetypes="csssscc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect4145-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"
|
||||
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" />
|
||||
<rect
|
||||
ry="1.3877788e-16"
|
||||
rx="0"
|
||||
y="1027.3622"
|
||||
x="5"
|
||||
height="1"
|
||||
width="22"
|
||||
id="rect4137"
|
||||
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" />
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.4 KiB |
@@ -1,96 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="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">
|
||||
<linearGradient
|
||||
id="selected_bg_color"
|
||||
osb:paint="solid">
|
||||
<stop
|
||||
style="stop-color:#5294e2;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4138" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#selected_bg_color"
|
||||
id="linearGradient4140"
|
||||
x1="2"
|
||||
y1="1021.3622"
|
||||
x2="2"
|
||||
y2="1051.3622"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="15.839192"
|
||||
inkscape:cx="0.58833524"
|
||||
inkscape:cy="24.231157"
|
||||
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="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:url(#linearGradient4140);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>
|
||||
|
Before Width: | Height: | Size: 3.1 KiB |
@@ -1,147 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="32"
|
||||
height="84"
|
||||
viewBox="0 0 32 84"
|
||||
id="svg5386"
|
||||
version="1.1"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
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="7.2411561"
|
||||
inkscape:cx="20.862219"
|
||||
inkscape:cy="-7.747559"
|
||||
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:document-rotation="0"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="714"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1">
|
||||
<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>
|
||||
|
Before Width: | Height: | Size: 5.5 KiB |
@@ -1,207 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="50"
|
||||
height="20"
|
||||
id="svg7539"
|
||||
version="1.1"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
sodipodi:docname="switch-off-selected.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>
|
||||
<filter
|
||||
height="1.072"
|
||||
y="-0.035999998"
|
||||
width="1.072"
|
||||
x="-0.035999998"
|
||||
id="filter930"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
inkscape:collect="always">
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur932"
|
||||
stdDeviation="0.225"
|
||||
inkscape:collect="always" />
|
||||
</filter>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="4.8062428"
|
||||
inkscape:cx="3.8344054"
|
||||
inkscape:cy="11.11566"
|
||||
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="1366"
|
||||
inkscape:window-height="714"
|
||||
inkscape:window-x="0"
|
||||
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:document-rotation="0">
|
||||
<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)">
|
||||
<path
|
||||
id="path900"
|
||||
d="m 127.85953,-77.245935 a 9.5,9.5 0 0 0 -0.0195,0.585938 9.5,9.5 0 0 0 9.5,9.5 h 7.5 2 7.5 a 9.5,9.5 0 0 0 9.5,-9.5 9.5,9.5 0 0 0 -0.0195,-0.414062 9.5,9.5 0 0 1 -9.48053,8.914062 h -7.5 -2 -7.5 a 9.5,9.5 0 0 1 -9.48047,-9.085938 z"
|
||||
style="opacity:1;fill:none;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path872"
|
||||
d="m 137.34,-87.159997 a 9.5,9.5 0 0 0 -9.5,9.5 9.5,9.5 0 0 0 9.5,9.5 h 7.5 2 7.5 a 9.5,9.5 0 0 0 9.5,-9.5 9.5,9.5 0 0 0 -9.5,-9.5 h -7.5 -2 z"
|
||||
style="fill:#485563;fill-opacity:1;stroke:#485563;stroke-opacity:1" />
|
||||
<rect
|
||||
ry="7.392344"
|
||||
y="-83.659973"
|
||||
x="129.83998"
|
||||
height="15"
|
||||
width="15"
|
||||
id="rect934"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#000000;fill-opacity:0.1;fill-rule:nonzero;stroke:none;stroke-width:1.76471;stroke-opacity:1;marker:none;filter:url(#filter930);enable-background:new" />
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#000000;fill-opacity:0.2;fill-rule:nonzero;stroke:none;stroke-width:1.76471;stroke-opacity:1;marker:none;filter:url(#filter930);enable-background:new"
|
||||
id="rect912"
|
||||
width="15"
|
||||
height="15"
|
||||
x="129.83998"
|
||||
y="-84.659973"
|
||||
ry="7.392344" />
|
||||
<rect
|
||||
ry="7.392344"
|
||||
y="-85.159973"
|
||||
x="129.83998"
|
||||
height="15"
|
||||
width="15"
|
||||
id="rect3872"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#859398;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.76471;stroke-opacity:1;marker:none;enable-background:new" />
|
||||
<path
|
||||
id="path902"
|
||||
d="m 137.34,-87.159997 a 9.5,9.5 0 0 0 -9.5,9.5 9.5,9.5 0 0 0 0.0195,0.414062 9.5,9.5 0 0 1 9.4805,-8.914062 h 7.5 2 7.5 a 9.5,9.5 0 0 1 9.48047,9.085938 9.5,9.5 0 0 0 0.0195,-0.585938 9.5,9.5 0 0 0 -9.5,-9.5 h -7.5 -2 z"
|
||||
style="fill:none;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect936"
|
||||
d="m 137.23259,-85.159997 c -4.09536,0 -7.39258,3.29722 -7.39258,7.39258 v 0.21484 c 0,0.1326 0.0127,0.26174 0.0195,0.39258 0.20406,-3.91019 3.41029,-7 7.37305,-7 h 0.21484 c 3.96276,0 7.16899,3.08981 7.37305,7 0.007,-0.13084 0.0195,-0.25998 0.0195,-0.39258 v -0.21484 c 0,-4.09536 -3.29722,-7.39258 -7.39258,-7.39258 z"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:0.2;fill-rule:nonzero;stroke:none;stroke-width:1.76471;stroke-opacity:1;marker:none;enable-background:new" />
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 7.1 KiB |
@@ -1,243 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="50"
|
||||
height="20"
|
||||
id="svg7539"
|
||||
version="1.1"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
sodipodi:docname="switch-on-selected.svg">
|
||||
<defs
|
||||
id="defs7541">
|
||||
<linearGradient
|
||||
id="linearGradient870"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop866"
|
||||
offset="0"
|
||||
style="stop-color:#ff9200;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop868"
|
||||
offset="1"
|
||||
style="stop-color:#fadd00;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="selected_fg_color"
|
||||
osb:paint="solid">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4171" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="selected_bg_color"
|
||||
osb:paint="solid">
|
||||
<stop
|
||||
style="stop-color:#5294e2;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4166" />
|
||||
</linearGradient>
|
||||
<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>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#selected_fg_color"
|
||||
id="linearGradient4173"
|
||||
x1="26"
|
||||
y1="1031.3622"
|
||||
x2="26"
|
||||
y2="1051.3622"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<filter
|
||||
height="1.072"
|
||||
y="-0.035999998"
|
||||
width="1.072"
|
||||
x="-0.035999998"
|
||||
id="filter930"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
inkscape:collect="always">
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur932"
|
||||
stdDeviation="0.225"
|
||||
inkscape:collect="always" />
|
||||
</filter>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient870"
|
||||
id="linearGradient867"
|
||||
x1="127.34"
|
||||
y1="-78"
|
||||
x2="164.34"
|
||||
y2="-78"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient870"
|
||||
id="linearGradient875"
|
||||
x1="127.34"
|
||||
y1="-78"
|
||||
x2="164.34"
|
||||
y2="-78"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="9.6124852"
|
||||
inkscape:cx="14.042172"
|
||||
inkscape:cy="11.838426"
|
||||
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="1366"
|
||||
inkscape:window-height="714"
|
||||
inkscape:window-x="0"
|
||||
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:document-rotation="0">
|
||||
<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)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path872"
|
||||
d="m 137.34,-87.499997 a 9.5,9.5 0 0 0 -9.5,9.5 9.5,9.5 0 0 0 9.5,9.5 h 7.5 2 7.5 a 9.5,9.5 0 0 0 9.5,-9.5 9.5,9.5 0 0 0 -9.5,-9.5 h -7.5 -2 z"
|
||||
style="fill:url(#linearGradient867);fill-opacity:1.0;stroke:url(#linearGradient875);stroke-opacity:1" />
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#000000;fill-opacity:0.2;fill-rule:nonzero;stroke:none;stroke-width:1.76471;stroke-opacity:1;marker:none;filter:url(#filter930);enable-background:new"
|
||||
id="rect912"
|
||||
width="15"
|
||||
height="15"
|
||||
x="146.34"
|
||||
y="-84.500008"
|
||||
ry="7.392344" />
|
||||
<rect
|
||||
ry="7.392344"
|
||||
y="-85.000008"
|
||||
x="146.34"
|
||||
height="15"
|
||||
width="15"
|
||||
id="rect3872"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#f8f8f8;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.76471;stroke-opacity:1;marker:none;enable-background:new" />
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 7.1 KiB |
|
Before Width: | Height: | Size: 152 KiB |
@@ -8,7 +8,7 @@ $_bubble_bg_color: $osd_bg_color;
|
||||
$_bubble_fg_color: $fg_color;
|
||||
$_bubble_borders_color: $fg_color;
|
||||
$_bubble_transparent: transparentize($osd_bg_color, 0.17);
|
||||
$topbar_bg_color: transparentize($dracula,0.05);
|
||||
$topbar_bg_color: transparentize($dracula,0.35);
|
||||
|
||||
stage {
|
||||
font-family: $font-family;
|
||||
@@ -154,9 +154,6 @@ StScrollBar {
|
||||
width: 65px;
|
||||
height: 22px;
|
||||
background-size: contain;
|
||||
//Gnome 3.32//
|
||||
background-image: url("assets/toggle-off.svg");
|
||||
&:checked { background-image: url("assets/toggle-on.svg"); }
|
||||
}
|
||||
|
||||
@each $v in us, intl {
|
||||
@@ -516,7 +513,6 @@ StScrollBar {
|
||||
.popup-menu {
|
||||
min-width: 15em;
|
||||
background-color: transparent;
|
||||
color: $fg_color;
|
||||
.popup-menu-arrow { } //defined globally in the TOP BAR
|
||||
.popup-sub-menu {
|
||||
|
||||
@@ -524,14 +520,12 @@ StScrollBar {
|
||||
box-shadow: $depth6;
|
||||
}
|
||||
|
||||
.popup-menu-content { padding: 15px 0; }
|
||||
.popup-menu-content { padding: 1em 0em; }
|
||||
.popup-menu-item {
|
||||
spacing: 5px;
|
||||
padding: 5px;
|
||||
|
||||
&:ltr { padding-right: 1.75em; padding-left: 0; }
|
||||
&:rtl { padding-right: 0; padding-left: 1.75em; }
|
||||
spacing: 12px;
|
||||
|
||||
&:ltr { padding: .4em 1.75em .4em 0em; }
|
||||
&:rtl { padding: .4em 0em .4em 1.75em; }
|
||||
&:checked {
|
||||
@include gradient();
|
||||
// background-color: transparentize($selected_bg_color,0.1);
|
||||
@@ -578,20 +572,13 @@ StScrollBar {
|
||||
}
|
||||
|
||||
.popup-separator-menu-item {
|
||||
background: transparent;
|
||||
&-separator {
|
||||
//-margin-horizontal: 24px;
|
||||
height: 1px; //not really the whole box
|
||||
margin: 6px 64px;
|
||||
background-color: transparent;
|
||||
border-color: transparent;
|
||||
border-bottom-width: 1px;
|
||||
border-bottom-style: solid;
|
||||
}
|
||||
.popup-sub-menu & &-separator { //submenu separators
|
||||
margin: 0 64px 0 32px;
|
||||
background: transparent;
|
||||
}
|
||||
//-margin-horizontal: 24px;
|
||||
height: 1px; //not really the whole box
|
||||
margin: 6px 64px;
|
||||
background-color: transparent;
|
||||
border-color: transparent;
|
||||
border-bottom-width: 1px;
|
||||
border-bottom-style: solid;
|
||||
}
|
||||
|
||||
|
||||
@@ -724,7 +711,7 @@ StScrollBar {
|
||||
height: 50px;
|
||||
background-color: $selected_bg_color;
|
||||
color: $selected_fg_color;
|
||||
border: none;
|
||||
//background-image: url("resource:///org/gnome/shell/theme/assets/ws-switch-arrow-up.png");
|
||||
background-size: 32px;
|
||||
border-radius: 8px;
|
||||
}
|
||||
@@ -855,16 +842,6 @@ StScrollBar {
|
||||
color: lighten($fg_color, 10%);
|
||||
&:focus, &:hover, &:active { color: lighten($fg_color, 10%); }
|
||||
}
|
||||
|
||||
// Remove default bottom border
|
||||
&.clock-display {
|
||||
&:active, &:overview, &:focus, &:checked {
|
||||
box-shadow: none;
|
||||
.clock {
|
||||
box-shadow: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.panel-status-indicators-box,
|
||||
@@ -904,11 +881,6 @@ StScrollBar {
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
.calendar, .world-clocks-button, .weather-button, .events-button {
|
||||
background: transparent;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.calendar,
|
||||
.datemenu-today-button,
|
||||
.datemenu-displays-box,
|
||||
@@ -932,10 +904,8 @@ StScrollBar {
|
||||
.world-clocks-button,
|
||||
.weather-button,
|
||||
.events-section-title,
|
||||
.message-list-section-title,
|
||||
.events-button {
|
||||
.message-list-section-title {
|
||||
border-radius: 4px;
|
||||
color: $fg_color;
|
||||
padding: .4em;
|
||||
}
|
||||
|
||||
@@ -951,8 +921,7 @@ StScrollBar {
|
||||
.world-clocks-button,
|
||||
.weather-button,
|
||||
.events-section-title,
|
||||
.message-list-section-title,
|
||||
.events-button {
|
||||
.message-list-section-title {
|
||||
&:hover,&:focus { background-color: lighten($bg_color,5%); }
|
||||
&:active {
|
||||
color: lighten($selected_fg_color,5%);
|
||||
@@ -970,16 +939,11 @@ StScrollBar {
|
||||
.world-clocks-header,
|
||||
.weather-header,
|
||||
.events-section-title,
|
||||
.message-list-section-title,
|
||||
.events-title {
|
||||
.message-list-section-title {
|
||||
color: darken($fg_color, 10%);
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.events-button .event-time {
|
||||
color: darken($fg_color, 4%);
|
||||
}
|
||||
|
||||
.world-clocks-grid {
|
||||
spacing-rows: 0.4em;
|
||||
}
|
||||
@@ -1004,20 +968,14 @@ StScrollBar {
|
||||
&:active { background-color: transparentize($bg_color,0.95); }
|
||||
}
|
||||
|
||||
.calendar-change-month-back { //arrow back
|
||||
background-image: url("assets/calendar-arrow-left.svg");
|
||||
&:rtl { background-image: url("assets/calendar-arrow-right.svg"); }
|
||||
}
|
||||
.calendar-change-month-forward { //arrow foreward
|
||||
background-image: url("assets/calendar-arrow-right.svg");
|
||||
&:rtl { background-image: url("assets/calendar-arrow-left.svg"); }
|
||||
}
|
||||
|
||||
.calendar-change-month-back StIcon,
|
||||
.calendar-change-month-forward StIcon {
|
||||
color: darken($fg_color, 5%);
|
||||
}
|
||||
|
||||
.calendar-change-month-back { //arrow back
|
||||
background-image: url("assets/calendar-arrow-left.svg");
|
||||
&:rtl { background-image: url("assets/calendar-arrow-right.svg"); }
|
||||
}
|
||||
.calendar-change-month-forward { //arrow foreward
|
||||
background-image: url("assets/calendar-arrow-right.svg");
|
||||
&:rtl { background-image: url("assets/calendar-arrow-left.svg"); }
|
||||
}
|
||||
|
||||
.calendar-day-base {
|
||||
font-size: 80%;
|
||||
@@ -1026,7 +984,6 @@ StScrollBar {
|
||||
padding: 0.1em;
|
||||
margin: 2px;
|
||||
border-radius: 1.4em;
|
||||
color: $fg_color;
|
||||
&:hover,&:focus { background-color: lighten($bg_color,5%); }
|
||||
&:active,&:selected {
|
||||
color: $selected_fg_color;
|
||||
@@ -1051,29 +1008,12 @@ StScrollBar {
|
||||
.calendar-nonwork-day {
|
||||
color: $insensitive_fg_color;
|
||||
}
|
||||
// Today
|
||||
.calendar-today {
|
||||
font-weight: bold;
|
||||
border: 1px solid transparent;
|
||||
background-color: $selected_bg_color;
|
||||
color: $selected_fg_color;
|
||||
|
||||
&:hover,&:focus {
|
||||
background-color:lighten($selected_bg_color, 3%);
|
||||
color: $selected_fg_color;
|
||||
}
|
||||
|
||||
&:active,&:selected {
|
||||
background-color: $selected_bg_color;
|
||||
color: $selected_fg_color;
|
||||
|
||||
&:hover,&:focus {
|
||||
background-color:lighten($selected_bg_color, 3%);
|
||||
color: $selected_fg_color;
|
||||
}
|
||||
}
|
||||
//color: lighten($fg_color,10%);
|
||||
//background-color: darken($bg_color,5%);
|
||||
border: 1px solid transparentize($borders_color,0.5);
|
||||
}
|
||||
|
||||
.calendar-day-with-events {
|
||||
color: lighten($fg_color,10%);
|
||||
font-weight: bold;
|
||||
@@ -1097,8 +1037,11 @@ StScrollBar {
|
||||
/* Message list */
|
||||
.message-list {
|
||||
width: 31.5em;
|
||||
.message-title, .message-content, .message-body {
|
||||
color: darken($fg_color, 5%);
|
||||
.message-title{
|
||||
color: darken($fg_color,5%);
|
||||
}
|
||||
.message-content{
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1138,10 +1081,8 @@ StScrollBar {
|
||||
//@include gradient();
|
||||
box-shadow: 2px 0px 0px 0px $g2 inset;
|
||||
}
|
||||
border: 1px solid darken($bg_color, 5%);
|
||||
border-radius: 3px;
|
||||
background: darken($bg_color, 1%);
|
||||
box-shadow: none;
|
||||
border-radius: 1px;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.message-icon-bin {
|
||||
@@ -1205,54 +1146,7 @@ StScrollBar {
|
||||
icon-size: 16px;
|
||||
padding: 8px; }
|
||||
}
|
||||
/* World clocks */
|
||||
.world-clocks-button {
|
||||
|
||||
// city label
|
||||
.world-clocks-city {
|
||||
color: $fg_color;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
// timezone time
|
||||
.world-clocks-time {
|
||||
font-weight: bold;
|
||||
color: $fg_color;
|
||||
font-feature-settings: "lnum";
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
// timezone offset label
|
||||
.world-clocks-timezone {
|
||||
color: darken($fg_color,20%);
|
||||
font-feature-settings: "tnum";
|
||||
}
|
||||
}
|
||||
|
||||
/* Weather */
|
||||
.weather-button {
|
||||
|
||||
.weather-header {
|
||||
color: darken($fg_color, 10%);
|
||||
font-weight: bold;
|
||||
|
||||
&.location {
|
||||
font-weight: normal;
|
||||
}
|
||||
}
|
||||
|
||||
.weather-forecast-time {
|
||||
color: darken($fg_color, 10%);
|
||||
font-feature-settings: "tnum";
|
||||
font-weight: normal;
|
||||
padding-top: 0.2em;
|
||||
padding-bottom: 0.4em;
|
||||
}
|
||||
|
||||
.weather-forecast-temp {
|
||||
font-weight: bold;
|
||||
}
|
||||
}
|
||||
|
||||
// a little unstructured mess:
|
||||
|
||||
@@ -1319,12 +1213,8 @@ StScrollBar {
|
||||
//close buttons
|
||||
|
||||
.window-close {
|
||||
background-color: transparent;
|
||||
background-image: url("assets/close-window.svg");
|
||||
background-size: 32px;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
color: transparent;
|
||||
height: 32px;
|
||||
width: 32px;
|
||||
}
|
||||
@@ -1355,7 +1245,7 @@ StScrollBar {
|
||||
|
||||
.nm-dialog-airplane-text { color: $fg_color; }
|
||||
.nm-dialog-header-icon { icon-size: 32px; }
|
||||
.nm-dialog-scroll-view { border: 2px solid $borders_color; background: transparent;}
|
||||
.nm-dialog-scroll-view { border: 2px solid $borders_color; }
|
||||
.nm-dialog-header { font-weight: bold; }
|
||||
|
||||
.nm-dialog-item {
|
||||
@@ -1446,14 +1336,7 @@ StScrollBar {
|
||||
}
|
||||
|
||||
.search-section { spacing: 16px; } // This should be equal to #searchResultsContent spacing
|
||||
.search-section-content {
|
||||
background-color: transparent;
|
||||
border-radius: 0;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
// This is the space between the provider icon and the results container
|
||||
spacing: 32px;
|
||||
}
|
||||
.search-section-content { spacing: 32px; } // This is the space between the provider icon and the results container
|
||||
.search-statustext { // "no results"
|
||||
@extend %status_text;
|
||||
}
|
||||
@@ -1650,7 +1533,8 @@ StScrollBar {
|
||||
background-image: none;
|
||||
background-color: rgba(255, 255, 255, 0.7);
|
||||
}
|
||||
&:checked .page-indicator-icon{
|
||||
&:checked .page-indicator-icon,
|
||||
&:checked:active {
|
||||
background-image: none;
|
||||
background-color: #FFFFFF;
|
||||
transition-duration: 0s;
|
||||
@@ -1717,7 +1601,6 @@ StScrollBar {
|
||||
box-shadow: 0 1px 4px black;
|
||||
&:hover { background-color: transparentize($bg_color, 0.04); }
|
||||
&:focus { background-color: transparentize($bg_color, 0.04); }
|
||||
*{ color: $topbar_color; }
|
||||
|
||||
.notification-icon { padding: 5px; }
|
||||
.notification-content { padding: 5px; spacing: 5px; }
|
||||
@@ -1728,10 +1611,8 @@ StScrollBar {
|
||||
spacing: 1px;
|
||||
}
|
||||
.notification-button {
|
||||
padding: 5px;
|
||||
padding: 4px 4px 5px;
|
||||
background-color: transparentize($bg_color, 0.1);
|
||||
box-shadow: none;
|
||||
border: none;
|
||||
&:first-child { border-radius: 0 0 0 3px; }
|
||||
&:last-child { border-radius: 0 0 3px 0; }
|
||||
&:hover, &focus { background-color: darken($bg_color,2%); color: $selected_bg_color;}
|
||||
|
||||
@@ -4,11 +4,17 @@
|
||||
|
||||
// drawing of depth/shadows
|
||||
|
||||
$depth: 0 1px 2px rgba(0, 0, 0, 0.10);
|
||||
$depth2: 0 1px 2px rgba(0, 0, 0, 0.15);
|
||||
$depth3: inset 0 1px 1px rgba(0, 0, 0, 0.06);
|
||||
$depth4: inset 0 1px 2px rgba(0, 0, 0, 0.10);
|
||||
$depth5: inset 0 1px 2px rgba(0, 0, 0, 0.15);
|
||||
$depth: 0 1px 2px rgba(0, 0, 0, 0.10),
|
||||
0 2px 3px rgba(0, 0, 0, 0.22);
|
||||
$depth2: 0 1px 2px rgba(0, 0, 0, 0.15),
|
||||
0 2px 3px rgba(0, 0, 0, 0.30);
|
||||
$depth3: inset 0 1px 1px rgba(0, 0, 0, 0.06),
|
||||
inset 0 1px 2px rgba(0, 0, 0, 0.20),
|
||||
0px 1px 0px 0px rgba(255, 255, 255, 0.15);
|
||||
$depth4: inset 0 1px 2px rgba(0, 0, 0, 0.10),
|
||||
inset 0 2px 3px rgba(0, 0, 0, 0.22);
|
||||
$depth5: inset 0 1px 2px rgba(0, 0, 0, 0.15),
|
||||
inset 0 2px 3px rgba(0, 0, 0, 0.30);
|
||||
$depth6: 0 2px 4px 2px transparentize(black, 0.8);
|
||||
|
||||
// generic drawing of more complex things
|
||||
|
||||
@@ -29,7 +29,7 @@ stage {
|
||||
.button:insensitive {
|
||||
color: #5d6d76;
|
||||
background-color: rgba(47, 60, 70, 0.66);
|
||||
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
||||
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), inset 0 2px 3px rgba(0, 0, 0, 0.22);
|
||||
border: none;
|
||||
text-shadow: none;
|
||||
icon-shadow: none; }
|
||||
@@ -57,7 +57,7 @@ stage {
|
||||
.modal-dialog-linked-button:insensitive {
|
||||
color: #5d6d76;
|
||||
background-color: rgba(47, 60, 70, 0.66);
|
||||
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
||||
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), inset 0 2px 3px rgba(0, 0, 0, 0.22);
|
||||
border: none;
|
||||
text-shadow: none;
|
||||
icon-shadow: none; }
|
||||
@@ -96,7 +96,7 @@ stage {
|
||||
StEntry {
|
||||
background-color: #2f404f;
|
||||
border-color: #161819;
|
||||
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
|
||||
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 2px 3px rgba(0, 0, 0, 0.22);
|
||||
border-radius: 2px;
|
||||
padding: 4px;
|
||||
border-width: 0;
|
||||
@@ -104,10 +104,10 @@ StEntry {
|
||||
selection-background-color: #00e8b7;
|
||||
selected-color: #f7f7f7; }
|
||||
StEntry:focus {
|
||||
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); }
|
||||
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 2px 3px rgba(0, 0, 0, 0.22); }
|
||||
StEntry:insensitive {
|
||||
color: #5d6d76;
|
||||
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); }
|
||||
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 2px 3px rgba(0, 0, 0, 0.22); }
|
||||
StEntry StIcon.capslock-warning {
|
||||
icon-size: 16px;
|
||||
warning-color: #ff9f39;
|
||||
@@ -182,10 +182,7 @@ StScrollBar {
|
||||
.toggle-switch {
|
||||
width: 65px;
|
||||
height: 22px;
|
||||
background-size: contain;
|
||||
background-image: url("assets/toggle-off.svg"); }
|
||||
.toggle-switch:checked {
|
||||
background-image: url("assets/toggle-on.svg"); }
|
||||
background-size: contain; }
|
||||
|
||||
.toggle-switch-us {
|
||||
background-image: url("assets/toggle-off.svg"); }
|
||||
@@ -494,22 +491,18 @@ StScrollBar {
|
||||
/* Popovers/Menus */
|
||||
.popup-menu {
|
||||
min-width: 15em;
|
||||
background-color: transparent;
|
||||
color: #98abb2; }
|
||||
background-color: transparent; }
|
||||
.popup-menu .popup-sub-menu {
|
||||
background-color: rgba(0, 0, 0, 0.2);
|
||||
box-shadow: 0 2px 4px 2px rgba(0, 0, 0, 0.2); }
|
||||
.popup-menu .popup-menu-content {
|
||||
padding: 15px 0; }
|
||||
padding: 1em 0em; }
|
||||
.popup-menu .popup-menu-item {
|
||||
spacing: 5px;
|
||||
padding: 5px; }
|
||||
spacing: 12px; }
|
||||
.popup-menu .popup-menu-item:ltr {
|
||||
padding-right: 1.75em;
|
||||
padding-left: 0; }
|
||||
padding: .4em 1.75em .4em 0em; }
|
||||
.popup-menu .popup-menu-item:rtl {
|
||||
padding-right: 0;
|
||||
padding-left: 1.75em; }
|
||||
padding: .4em 0em .4em 1.75em; }
|
||||
.popup-menu .popup-menu-item:checked {
|
||||
background-gradient-start: #00e8b7;
|
||||
background-gradient-end: #00e8b7;
|
||||
@@ -551,17 +544,12 @@ StScrollBar {
|
||||
-arrow-box-shadow: 0 1px 3px black; }
|
||||
|
||||
.popup-separator-menu-item {
|
||||
background: transparent; }
|
||||
.popup-separator-menu-item-separator {
|
||||
height: 1px;
|
||||
margin: 6px 64px;
|
||||
background-color: transparent;
|
||||
border-color: transparent;
|
||||
border-bottom-width: 1px;
|
||||
border-bottom-style: solid; }
|
||||
.popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator {
|
||||
margin: 0 64px 0 32px;
|
||||
background: transparent; }
|
||||
height: 1px;
|
||||
margin: 6px 64px;
|
||||
background-color: transparent;
|
||||
border-color: transparent;
|
||||
border-bottom-width: 1px;
|
||||
border-bottom-style: solid; }
|
||||
|
||||
.background-menu {
|
||||
-boxpointer-gap: 4px;
|
||||
@@ -668,7 +656,6 @@ StScrollBar {
|
||||
height: 50px;
|
||||
background-color: #00e8b7;
|
||||
color: #f7f7f7;
|
||||
border: none;
|
||||
background-size: 32px;
|
||||
border-radius: 8px; }
|
||||
|
||||
@@ -710,7 +697,7 @@ StScrollBar {
|
||||
/* TOP BAR */
|
||||
#panel {
|
||||
background-gradient-direction: none;
|
||||
background-color: rgba(34, 46, 57, 0.95);
|
||||
background-color: rgba(34, 46, 57, 0.65);
|
||||
/* transition from solid to transparent */
|
||||
transition-duration: 500ms;
|
||||
font-weight: bold;
|
||||
@@ -747,7 +734,7 @@ StScrollBar {
|
||||
#panel .panel-button .popup-menu-arrow {
|
||||
icon-shadow: 0px 0px 2px rgba(0, 0, 0, 0.9); }
|
||||
#panel .panel-button:hover {
|
||||
background: rgba(53, 72, 89, 0.95);
|
||||
background: rgba(53, 72, 89, 0.65);
|
||||
color: white;
|
||||
transition-duration: 200ms; }
|
||||
#panel .panel-button:active, #panel .panel-button:overview, #panel .panel-button:focus, #panel .panel-button:checked {
|
||||
@@ -785,10 +772,6 @@ StScrollBar {
|
||||
.lock-screen #panel .panel-button:hover,
|
||||
.lock-screen #panel .panel-button:active {
|
||||
color: #b5c3c8; }
|
||||
#panel .panel-button.clock-display:active, #panel .panel-button.clock-display:overview, #panel .panel-button.clock-display:focus, #panel .panel-button.clock-display:checked {
|
||||
box-shadow: none; }
|
||||
#panel .panel-button.clock-display:active .clock, #panel .panel-button.clock-display:overview .clock, #panel .panel-button.clock-display:focus .clock, #panel .panel-button.clock-display:checked .clock {
|
||||
box-shadow: none; }
|
||||
#panel .panel-status-indicators-box,
|
||||
#panel .panel-status-menu-box {
|
||||
spacing: 2px; }
|
||||
@@ -813,10 +796,6 @@ StScrollBar {
|
||||
.calendar {
|
||||
margin-bottom: 1em; }
|
||||
|
||||
.calendar, .world-clocks-button, .weather-button, .events-button {
|
||||
background: transparent;
|
||||
border: none; }
|
||||
|
||||
.calendar,
|
||||
.datemenu-today-button,
|
||||
.datemenu-displays-box,
|
||||
@@ -844,10 +823,8 @@ StScrollBar {
|
||||
.world-clocks-button,
|
||||
.weather-button,
|
||||
.events-section-title,
|
||||
.message-list-section-title,
|
||||
.events-button {
|
||||
.message-list-section-title {
|
||||
border-radius: 4px;
|
||||
color: #98abb2;
|
||||
padding: .4em; }
|
||||
|
||||
.message-list-section-list:ltr {
|
||||
@@ -864,17 +841,14 @@ StScrollBar {
|
||||
.events-section-title:hover,
|
||||
.events-section-title:focus,
|
||||
.message-list-section-title:hover,
|
||||
.message-list-section-title:focus,
|
||||
.events-button:hover,
|
||||
.events-button:focus {
|
||||
.message-list-section-title:focus {
|
||||
background-color: #2c3b49; }
|
||||
|
||||
.datemenu-today-button:active,
|
||||
.world-clocks-button:active,
|
||||
.weather-button:active,
|
||||
.events-section-title:active,
|
||||
.message-list-section-title:active,
|
||||
.events-button:active {
|
||||
.message-list-section-title:active {
|
||||
color: white;
|
||||
background-color: #00e8b7; }
|
||||
|
||||
@@ -884,14 +858,10 @@ StScrollBar {
|
||||
.world-clocks-header,
|
||||
.weather-header,
|
||||
.events-section-title,
|
||||
.message-list-section-title,
|
||||
.events-title {
|
||||
.message-list-section-title {
|
||||
color: #7b939c;
|
||||
font-weight: bold; }
|
||||
|
||||
.events-button .event-time {
|
||||
color: #8ca1a9; }
|
||||
|
||||
.world-clocks-grid {
|
||||
spacing-rows: 0.4em; }
|
||||
|
||||
@@ -923,10 +893,6 @@ StScrollBar {
|
||||
.calendar-change-month-forward:rtl {
|
||||
background-image: url("assets/calendar-arrow-left.svg"); }
|
||||
|
||||
.calendar-change-month-back StIcon,
|
||||
.calendar-change-month-forward StIcon {
|
||||
color: #899fa7; }
|
||||
|
||||
.calendar-day-base {
|
||||
font-size: 80%;
|
||||
text-align: center;
|
||||
@@ -934,8 +900,7 @@ StScrollBar {
|
||||
height: 2.4em;
|
||||
padding: 0.1em;
|
||||
margin: 2px;
|
||||
border-radius: 1.4em;
|
||||
color: #98abb2; }
|
||||
border-radius: 1.4em; }
|
||||
.calendar-day-base:hover, .calendar-day-base:focus {
|
||||
background-color: #2c3b49; }
|
||||
.calendar-day-base:active, .calendar-day-base:selected {
|
||||
@@ -964,18 +929,7 @@ StScrollBar {
|
||||
|
||||
.calendar-today {
|
||||
font-weight: bold;
|
||||
border: 1px solid transparent;
|
||||
background-color: #00e8b7;
|
||||
color: #f7f7f7; }
|
||||
.calendar-today:hover, .calendar-today:focus {
|
||||
background-color: #00f7c3;
|
||||
color: #f7f7f7; }
|
||||
.calendar-today:active, .calendar-today:selected {
|
||||
background-color: #00e8b7;
|
||||
color: #f7f7f7; }
|
||||
.calendar-today:active:hover, .calendar-today:active:focus, .calendar-today:selected:hover, .calendar-today:selected:focus {
|
||||
background-color: #00f7c3;
|
||||
color: #f7f7f7; }
|
||||
border: 1px solid rgba(22, 24, 25, 0.5); }
|
||||
|
||||
.calendar-day-with-events {
|
||||
color: #b5c3c8;
|
||||
@@ -1000,7 +954,7 @@ StScrollBar {
|
||||
/* Message list */
|
||||
.message-list {
|
||||
width: 31.5em; }
|
||||
.message-list .message-title, .message-list .message-content, .message-list .message-body {
|
||||
.message-list .message-title {
|
||||
color: #899fa7; }
|
||||
|
||||
.message-list-clear-button.button {
|
||||
@@ -1039,10 +993,8 @@ StScrollBar {
|
||||
background: transparent; }
|
||||
|
||||
.message {
|
||||
border: 1px solid #182129;
|
||||
border-radius: 3px;
|
||||
background: #202b36;
|
||||
box-shadow: none; }
|
||||
border-radius: 1px;
|
||||
background: transparent; }
|
||||
.message:hover, .message:focus {
|
||||
background-color: #202b36;
|
||||
box-shadow: 2px 0px 0px 0px #00e8b7 inset; }
|
||||
@@ -1097,38 +1049,6 @@ StScrollBar {
|
||||
icon-size: 16px;
|
||||
padding: 8px; }
|
||||
|
||||
/* World clocks */
|
||||
.world-clocks-button .world-clocks-city {
|
||||
color: #98abb2;
|
||||
font-weight: normal; }
|
||||
|
||||
.world-clocks-button .world-clocks-time {
|
||||
font-weight: bold;
|
||||
color: #98abb2;
|
||||
font-feature-settings: "lnum";
|
||||
text-align: right; }
|
||||
|
||||
.world-clocks-button .world-clocks-timezone {
|
||||
color: #627a82;
|
||||
font-feature-settings: "tnum"; }
|
||||
|
||||
/* Weather */
|
||||
.weather-button .weather-header {
|
||||
color: #7b939c;
|
||||
font-weight: bold; }
|
||||
.weather-button .weather-header.location {
|
||||
font-weight: normal; }
|
||||
|
||||
.weather-button .weather-forecast-time {
|
||||
color: #7b939c;
|
||||
font-feature-settings: "tnum";
|
||||
font-weight: normal;
|
||||
padding-top: 0.2em;
|
||||
padding-bottom: 0.4em; }
|
||||
|
||||
.weather-button .weather-forecast-temp {
|
||||
font-weight: bold; }
|
||||
|
||||
.system-switch-user-submenu-icon.user-icon {
|
||||
icon-size: 20px;
|
||||
padding: 0 2px; }
|
||||
@@ -1183,12 +1103,8 @@ StScrollBar {
|
||||
icon-size: 1.09em; }
|
||||
|
||||
.window-close {
|
||||
background-color: transparent;
|
||||
background-image: url("assets/close-window.svg");
|
||||
background-size: 32px;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
color: transparent;
|
||||
height: 32px;
|
||||
width: 32px; }
|
||||
|
||||
@@ -1224,8 +1140,7 @@ StScrollBar {
|
||||
icon-size: 32px; }
|
||||
|
||||
.nm-dialog-scroll-view {
|
||||
border: 2px solid #161819;
|
||||
background: transparent; }
|
||||
border: 2px solid #161819; }
|
||||
|
||||
.nm-dialog-header {
|
||||
font-weight: bold; }
|
||||
@@ -1285,12 +1200,12 @@ StScrollBar {
|
||||
border: none;
|
||||
color: #98abb2;
|
||||
background-color: rgba(34, 46, 57, 0.6);
|
||||
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); }
|
||||
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 2px 3px rgba(0, 0, 0, 0.22); }
|
||||
.search-entry:focus {
|
||||
border-width: 0;
|
||||
color: #98abb2;
|
||||
background-color: rgba(34, 46, 57, 0.8);
|
||||
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15); }
|
||||
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15), 0 2px 3px rgba(0, 0, 0, 0.3); }
|
||||
.search-entry .search-entry-icon {
|
||||
icon-size: 1em;
|
||||
padding: 0 4px;
|
||||
@@ -1312,10 +1227,6 @@ StScrollBar {
|
||||
spacing: 16px; }
|
||||
|
||||
.search-section-content {
|
||||
background-color: transparent;
|
||||
border-radius: 0;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
spacing: 32px; }
|
||||
|
||||
.list-search-results {
|
||||
@@ -1350,7 +1261,7 @@ StScrollBar {
|
||||
#dash {
|
||||
font-size: 9pt;
|
||||
color: white;
|
||||
background-color: rgba(34, 46, 57, 0.95);
|
||||
background-color: rgba(34, 46, 57, 0.65);
|
||||
padding: 6px 0;
|
||||
border: 1px solid #161819;
|
||||
border-left: 0px;
|
||||
@@ -1372,7 +1283,7 @@ StScrollBar {
|
||||
border-radius: 7px;
|
||||
padding: 4px 12px;
|
||||
color: white;
|
||||
background-color: rgba(34, 46, 57, 0.95);
|
||||
background-color: rgba(34, 46, 57, 0.65);
|
||||
text-align: center;
|
||||
border: 1px solid #161819;
|
||||
-x-offset: 8px; }
|
||||
@@ -1435,7 +1346,7 @@ StScrollBar {
|
||||
.grid-search-result:active .overview-icon,
|
||||
.grid-search-result:checked .overview-icon {
|
||||
background-color: rgba(21, 28, 35, 0.85);
|
||||
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
|
||||
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), 0 2px 3px rgba(0, 0, 0, 0.3);
|
||||
color: #98abb2; }
|
||||
.app-well-app:hover .overview-icon,
|
||||
.app-well-app:focus .overview-icon,
|
||||
@@ -1473,7 +1384,7 @@ StScrollBar {
|
||||
border: none;
|
||||
transition-duration: 100ms;
|
||||
text-align: center;
|
||||
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); }
|
||||
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 2px 3px rgba(0, 0, 0, 0.22); }
|
||||
|
||||
.app-well-app.app-folder > .overview-icon {
|
||||
background-color: rgba(34, 46, 57, 0.35); }
|
||||
@@ -1515,7 +1426,7 @@ StScrollBar {
|
||||
.page-indicator:active .page-indicator-icon {
|
||||
background-image: none;
|
||||
background-color: rgba(255, 255, 255, 0.7); }
|
||||
.page-indicator:checked .page-indicator-icon {
|
||||
.page-indicator:checked .page-indicator-icon, .page-indicator:checked:active {
|
||||
background-image: none;
|
||||
background-color: #FFFFFF;
|
||||
transition-duration: 0s; }
|
||||
@@ -1535,7 +1446,7 @@ StScrollBar {
|
||||
|
||||
.workspace-thumbnail-indicator {
|
||||
border: 4px solid rgba(0, 232, 183, 0.5);
|
||||
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
|
||||
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 2px 3px rgba(0, 0, 0, 0.22);
|
||||
padding: 0; }
|
||||
|
||||
.search-display > StBoxLayout,
|
||||
@@ -1570,8 +1481,6 @@ StScrollBar {
|
||||
background-color: rgba(34, 46, 57, 0.96); }
|
||||
.notification-banner:focus {
|
||||
background-color: rgba(34, 46, 57, 0.96); }
|
||||
.notification-banner * {
|
||||
color: white; }
|
||||
.notification-banner .notification-icon {
|
||||
padding: 5px; }
|
||||
.notification-banner .notification-content {
|
||||
@@ -1584,10 +1493,8 @@ StScrollBar {
|
||||
padding-top: 2px;
|
||||
spacing: 1px; }
|
||||
.notification-banner .notification-button {
|
||||
padding: 5px;
|
||||
background-color: rgba(34, 46, 57, 0.9);
|
||||
box-shadow: none;
|
||||
border: none; }
|
||||
padding: 4px 4px 5px;
|
||||
background-color: rgba(34, 46, 57, 0.9); }
|
||||
.notification-banner .notification-button:first-child {
|
||||
border-radius: 0 0 0 3px; }
|
||||
.notification-banner .notification-button:last-child {
|
||||
@@ -1828,7 +1735,7 @@ StScrollBar {
|
||||
.login-dialog .modal-dialog-button:default:insensitive {
|
||||
color: #5d6d76;
|
||||
background-color: rgba(47, 60, 70, 0.66);
|
||||
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
||||
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), inset 0 2px 3px rgba(0, 0, 0, 0.22);
|
||||
border: none;
|
||||
text-shadow: none;
|
||||
icon-shadow: none; }
|
||||
|
||||
@@ -1,8 +1,6 @@
|
||||
style "theme-panel" = "dark" {
|
||||
xthickness = 1
|
||||
ythickness = 1
|
||||
bg[NORMAL] = @panel_bg_color
|
||||
fg[NORMAL] = @panel_fg_color
|
||||
}
|
||||
|
||||
style "xfdesktop-icon-view" {
|
||||
|
||||
@@ -14,24 +14,12 @@
|
||||
height="480px"
|
||||
id="svg3032"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (unknown)"
|
||||
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
|
||||
sodipodi:docname="assets.svg">
|
||||
<title
|
||||
id="title5071">EvoPop GTK2 Source</title>
|
||||
<defs
|
||||
id="defs3034">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient1547">
|
||||
<stop
|
||||
style="stop-color:#00f284;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop1543" />
|
||||
<stop
|
||||
style="stop-color:#00f6c6;stop-opacity:0.97647059"
|
||||
offset="1"
|
||||
id="stop1545" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6819">
|
||||
<stop
|
||||
@@ -47,6 +35,18 @@
|
||||
offset="1"
|
||||
style="stop-color:#cccccc;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5083"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop5085"
|
||||
offset="0"
|
||||
style="stop-color:#e6e6e6;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop5089"
|
||||
offset="1"
|
||||
style="stop-color:#f9f9f9;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4080-70-3-0">
|
||||
<stop
|
||||
@@ -58,6 +58,16 @@
|
||||
offset="1"
|
||||
id="stop4084-4-2-04" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5083"
|
||||
id="linearGradient5272"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="5.0000005"
|
||||
y1="19.137304"
|
||||
x2="5.0000005"
|
||||
y2="3.6127"
|
||||
gradientTransform="matrix(0.78947368,0,0,0.78947368,2.3157895,2.3157895)" />
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath6964">
|
||||
@@ -429,60 +439,6 @@
|
||||
y1="109.80856"
|
||||
x2="5"
|
||||
y2="82.123726" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient1547"
|
||||
id="linearGradient1549"
|
||||
x1="31"
|
||||
y1="3"
|
||||
x2="36"
|
||||
y2="3"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient1547"
|
||||
id="linearGradient1557"
|
||||
x1="31"
|
||||
y1="3"
|
||||
x2="36"
|
||||
y2="3"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient1547"
|
||||
id="linearGradient1565"
|
||||
x1="31"
|
||||
y1="5"
|
||||
x2="36"
|
||||
y2="5"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient1547"
|
||||
id="linearGradient1573"
|
||||
x1="31"
|
||||
y1="5"
|
||||
x2="36"
|
||||
y2="5"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient1547"
|
||||
id="linearGradient1581"
|
||||
x1="31.5"
|
||||
y1="5"
|
||||
x2="35.5"
|
||||
y2="5"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient1547"
|
||||
id="linearGradient1589"
|
||||
x1="31"
|
||||
y1="5"
|
||||
x2="36"
|
||||
y2="5"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
@@ -491,19 +447,19 @@
|
||||
borderopacity="1"
|
||||
inkscape:pageopacity="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="7.2109641"
|
||||
inkscape:cx="92.249976"
|
||||
inkscape:cy="173.70848"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:zoom="3.1706945"
|
||||
inkscape:cx="550.31674"
|
||||
inkscape:cy="397.66718"
|
||||
inkscape:current-layer="menu-radio-checked"
|
||||
inkscape:document-units="px"
|
||||
showgrid="true"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:snap-nodes="true"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="713"
|
||||
inkscape:window-height="656"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="25"
|
||||
inkscape:window-y="31"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="false"
|
||||
inkscape:guide-bbox="true"
|
||||
@@ -574,7 +530,7 @@
|
||||
id="rect5231"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="opacity:1;fill:#00d3a7;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
style="opacity:1;fill:#00D3A7;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 597,4 h 18 v 472 h -18 z"
|
||||
id="rect6304"
|
||||
inkscape:connector-curvature="0" />
|
||||
@@ -619,7 +575,7 @@
|
||||
id="g7815-8"
|
||||
transform="translate(7,6)">
|
||||
<path
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#00d3a7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#00D3A7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
d="M 3.0415924,81.5 H 9.5 v 29 H 2.9973982 C 2,110.5 1.5,110 1.5,108.95841 V 83.085787 C 1.5,82 2,81.5 3.0415924,81.5 Z"
|
||||
id="path7817-7"
|
||||
inkscape:connector-curvature="0"
|
||||
@@ -659,7 +615,7 @@
|
||||
id="g5195"
|
||||
transform="matrix(-1,0,0,1,46,45)">
|
||||
<path
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#00d3a7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#00D3A7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
d="M 4.5,107.5 V 82.997398 C 4.5,82 5,81.5 5.9973982,81.5 H 10"
|
||||
id="path5197"
|
||||
inkscape:connector-curvature="0"
|
||||
@@ -709,7 +665,7 @@
|
||||
d="M 49,141.5 H 44.5 V 155"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#cdcdcd;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
||||
<path
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#00d3a7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#00D3A7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
d="m 44,155.5 h 4.002602 C 49,155.5 49.5,155 49.5,153.95841 V 141"
|
||||
id="path5217"
|
||||
inkscape:connector-curvature="0"
|
||||
@@ -892,16 +848,14 @@
|
||||
id="g1591">
|
||||
<path
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#d2d6db;fill-opacity:1;stroke:none;stroke-width:1;marker:none;enable-background:accumulate"
|
||||
d="m 72,12 c -0.562649,0 -1,0.437351 -1,1 v 26 c 0,0.562649 0.437351,1 1,1 h 4 c 0.562649,0 1,-0.437351 1,-1 V 13 c 0,-0.562649 -0.437351,-1 -1,-1 z"
|
||||
d="M 72 12 C 71.437351 12 71 12.437351 71 13 L 71 39 C 71 39.562649 71.437351 40 72 40 L 76 40 C 76.562649 40 77 39.562649 77 39 L 77 13 C 77 12.437351 76.562649 12 76 12 L 72 12 z "
|
||||
transform="translate(-69,-10)"
|
||||
id="rect1583"
|
||||
inkscape:connector-curvature="0" />
|
||||
id="rect1583" />
|
||||
<path
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:0.15;stroke:none;stroke-width:1;marker:none;enable-background:accumulate"
|
||||
d="M 71,38.613281 V 39 c 0,0.562649 0.437351,1 1,1 h 4 c 0.562649,0 1,-0.437351 1,-1 V 38.613281 C 76.734624,38.851586 76.386389,39 76,39 h -4 c -0.386389,0 -0.734624,-0.148414 -1,-0.386719 z"
|
||||
d="M 71 38.613281 L 71 39 C 71 39.562649 71.437351 40 72 40 L 76 40 C 76.562649 40 77 39.562649 77 39 L 77 38.613281 C 76.734624 38.851586 76.386389 39 76 39 L 72 39 C 71.613611 39 71.265376 38.851586 71 38.613281 z "
|
||||
transform="translate(-69,-10)"
|
||||
id="path1585"
|
||||
inkscape:connector-curvature="0" />
|
||||
id="path1585" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path1589"
|
||||
@@ -1070,14 +1024,14 @@
|
||||
transform="translate(-62,34)"
|
||||
id="a5307">
|
||||
<rect
|
||||
style="fill:#7a7d81;fill-opacity:1;stroke:none;stroke-width:0.30000001;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
style="fill:#999999;fill-opacity:1;stroke:none;stroke-width:0.30000001;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect5272"
|
||||
width="4"
|
||||
width="6"
|
||||
height="7"
|
||||
x="300"
|
||||
y="0"
|
||||
rx="0"
|
||||
ry="2" />
|
||||
ry="0" />
|
||||
</a>
|
||||
</g>
|
||||
<g
|
||||
@@ -1097,14 +1051,14 @@
|
||||
transform="translate(-46,34)"
|
||||
id="a5307-0">
|
||||
<rect
|
||||
style="fill:#55595f;fill-opacity:1;stroke:none;stroke-width:0.30000001;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
style="fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.30000001;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect5272-4"
|
||||
width="5"
|
||||
width="6"
|
||||
height="7"
|
||||
x="300"
|
||||
y="0"
|
||||
rx="0"
|
||||
ry="2" />
|
||||
ry="0" />
|
||||
</a>
|
||||
</g>
|
||||
<g
|
||||
@@ -1120,18 +1074,18 @@
|
||||
style="fill:none;fill-opacity:1;stroke:none;stroke-width:0.30000001;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<a
|
||||
inkscape:label="#a5307-0-9"
|
||||
style="fill:#00d3a7;fill-opacity:1"
|
||||
style="fill:#00D3A7;fill-opacity:1"
|
||||
transform="translate(-30,34)"
|
||||
id="a5307-0-9">
|
||||
<rect
|
||||
style="fill:#00d3a7;fill-opacity:1;stroke:none;stroke-width:0.30000001;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
style="fill:#00D3A7;fill-opacity:1;stroke:none;stroke-width:0.30000001;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect5272-4-2"
|
||||
width="5"
|
||||
width="6"
|
||||
height="7"
|
||||
x="300"
|
||||
y="0"
|
||||
rx="0"
|
||||
ry="2" />
|
||||
ry="0" />
|
||||
</a>
|
||||
</g>
|
||||
<g
|
||||
@@ -1198,14 +1152,14 @@
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<rect
|
||||
ry="2"
|
||||
ry="5.6843419e-14"
|
||||
rx="0"
|
||||
y="-1"
|
||||
x="300"
|
||||
height="7"
|
||||
width="4"
|
||||
width="6"
|
||||
id="rect4717"
|
||||
style="fill:#7a7d81;fill-opacity:1;stroke:none;stroke-width:0.30000001;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
style="fill:#999999;fill-opacity:1;stroke:none;stroke-width:0.30000001;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</a>
|
||||
</g>
|
||||
<g
|
||||
@@ -1226,14 +1180,14 @@
|
||||
style="fill:#535859;fill-opacity:1"
|
||||
inkscape:label="#a5307-0">
|
||||
<rect
|
||||
ry="2"
|
||||
ry="0"
|
||||
rx="0"
|
||||
y="0"
|
||||
x="300"
|
||||
height="7"
|
||||
width="5"
|
||||
width="6"
|
||||
id="rect4725"
|
||||
style="fill:#55595f;fill-opacity:1;stroke:none;stroke-width:0.30000001;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
style="fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.30000001;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</a>
|
||||
</g>
|
||||
<g
|
||||
@@ -1251,17 +1205,17 @@
|
||||
<a
|
||||
id="a4731"
|
||||
transform="rotate(90,278.75,-2.75)"
|
||||
style="fill:#00d3a7;fill-opacity:1"
|
||||
style="fill:#00D3A7;fill-opacity:1"
|
||||
inkscape:label="#a5307-0-9">
|
||||
<rect
|
||||
ry="2"
|
||||
ry="0"
|
||||
rx="0"
|
||||
y="0"
|
||||
x="300"
|
||||
height="7"
|
||||
width="5"
|
||||
width="6"
|
||||
id="rect4733"
|
||||
style="fill:#00d3a7;fill-opacity:1;stroke:none;stroke-width:0.30000001;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
style="fill:#00D3A7;fill-opacity:1;stroke:none;stroke-width:0.30000001;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</a>
|
||||
</g>
|
||||
<rect
|
||||
@@ -1276,7 +1230,7 @@
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<rect
|
||||
style="fill:#00d3a7;fill-opacity:1;stroke:none;stroke-width:0.30000001;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
style="fill:#00D3A7;fill-opacity:1;stroke:none;stroke-width:0.30000001;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="menubar-item-active"
|
||||
width="1"
|
||||
height="3"
|
||||
@@ -1530,7 +1484,7 @@
|
||||
height="2"
|
||||
width="2"
|
||||
id="rect4951"
|
||||
style="opacity:1;fill:#ebf0f5;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.1" />
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.1" />
|
||||
<path
|
||||
inkscape:label="#rect4948"
|
||||
sodipodi:nodetypes="ccc"
|
||||
@@ -1733,7 +1687,7 @@
|
||||
<g
|
||||
id="g5371">
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#00d3a7;fill-opacity:1;stroke:none;stroke-width:0.83666009;marker:none;enable-background:accumulate"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#00D3A7;fill-opacity:1;stroke:none;stroke-width:0.83666009;marker:none;enable-background:accumulate"
|
||||
id="rect5373"
|
||||
width="6"
|
||||
height="28"
|
||||
@@ -1770,7 +1724,7 @@
|
||||
id="g5397"
|
||||
transform="translate(17,7)">
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#00d3a7;fill-opacity:0.94117647;stroke:none;stroke-width:0.83666003;marker:none;enable-background:accumulate"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#00D3A7;fill-opacity:0.94117647;stroke:none;stroke-width:0.83666003;marker:none;enable-background:accumulate"
|
||||
id="rect5373-3"
|
||||
width="6"
|
||||
height="28"
|
||||
@@ -1804,7 +1758,7 @@
|
||||
height="4"
|
||||
width="5"
|
||||
id="rect5101"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient1549);fill-opacity:1;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" />
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#00D3A7;fill-opacity:1;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
@@ -1815,7 +1769,7 @@
|
||||
id="g5137"
|
||||
transform="rotate(-90,127.5,-20.5)">
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient1557);fill-opacity:1;stroke:none;stroke-width:1.29099441;marker:none;enable-background:accumulate"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#00D3A7;fill-opacity:1;stroke:none;stroke-width:1.29099441;marker:none;enable-background:accumulate"
|
||||
id="rect5139"
|
||||
width="5"
|
||||
height="4"
|
||||
@@ -1851,7 +1805,7 @@
|
||||
transform="translate(135,86)"
|
||||
id="g5358-2">
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#fffffe;fill-opacity:1;stroke:#00d3a7;stroke-width:1.0666666;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#f4f5f7;fill-opacity:1;stroke:none;stroke-width:1.0666666;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
id="rect5270-11"
|
||||
width="16"
|
||||
height="16"
|
||||
@@ -1864,6 +1818,11 @@
|
||||
d="M 11,3 C 6.568,3 3,6.568 3,11 3,11.0838 3.007,11.16558 3.0117,11.24805 3.14507,6.93462 6.65306,3.5 11,3.5 c 4.34694,0 7.85493,3.43462 7.98828,7.74805 0.005,-0.0825 0.0117,-0.1643 0.0117,-0.24805 0,-4.432 -3.568,-8 -8,-8 z"
|
||||
id="rect5232-08"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:0.2;stroke:none;stroke-width:1.0666666;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
d="M 3.01172,10.75195 C 3.0067,10.83442 3,10.91625 3,11 c 0,4.432 3.568,8 8,8 4.432,0 8,-3.568 8,-8 0,-0.0838 -0.007,-0.16558 -0.0117,-0.24805 C 18.85493,15.06538 15.34694,18.5 11,18.5 6.65306,18.5 3.14507,15.06538 3.01172,10.75195 Z"
|
||||
id="path5237-50"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
@@ -1883,7 +1842,7 @@
|
||||
id="g5238"
|
||||
transform="translate(135,86)">
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#00d3a7;fill-opacity:1;stroke:#00d3a7;stroke-width:1.0666666;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#00D3A7;fill-opacity:1;stroke:none;stroke-width:1.0666666;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
id="rect5270-1"
|
||||
width="15.99998"
|
||||
height="16"
|
||||
@@ -1891,6 +1850,16 @@
|
||||
y="3"
|
||||
rx="15.99998"
|
||||
ry="16" />
|
||||
<path
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:0.2;stroke:none;stroke-width:1.0666666;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
d="m 10.99999,2.99995 c -4.4319945,0 -7.99999,3.568 -7.99999,8 0,0.0838 0.007,0.16558 0.0117,0.24805 0.1333698,-4.31343 3.6413554,-7.74805 7.98829,-7.74805 4.346935,0 7.85492,3.43462 7.98827,7.74805 0.005,-0.0825 0.0117,-0.1643 0.0117,-0.24805 0,-4.432 -3.567996,-8 -7.99999,-8 z"
|
||||
id="rect5232-0"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:0.2;stroke:none;stroke-width:1.0666666;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
d="m 3.0117201,10.75195 c -0.005,0.0825 -0.0117,0.1643 -0.0117,0.24805 0,4.432 3.5679955,8 7.9999899,8 C 15.432004,19 19,15.432 19,11 19,10.9162 18.993,10.83442 18.9883,10.75195 18.85493,15.06538 15.346945,18.5 11.00001,18.5 6.6530754,18.5 3.1450898,15.06538 3.01174,10.75195 Z"
|
||||
id="path5237-5"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
@@ -1910,7 +1879,22 @@
|
||||
transform="translate(135,86)"
|
||||
id="g5264">
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#00d3a7;fill-opacity:1;stroke:#00d3a7;stroke-width:1.0666666;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient5272);fill-opacity:1;stroke:none;stroke-width:1;marker:none;enable-background:accumulate"
|
||||
id="rect5266"
|
||||
width="15"
|
||||
height="15"
|
||||
x="3.5"
|
||||
y="3.5"
|
||||
rx="15"
|
||||
ry="15" />
|
||||
<path
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
d="m 3.5,12 c 0,-4.155 3.345,-7.5 7.5,-7.5 4.155,0 7.5,3.345 7.5,7.5"
|
||||
id="path5268"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csc" />
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#00D3A7;fill-opacity:1;stroke:none;stroke-width:1.0666666;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
id="rect5270"
|
||||
width="16"
|
||||
height="16"
|
||||
@@ -1918,6 +1902,18 @@
|
||||
y="3"
|
||||
rx="16"
|
||||
ry="16" />
|
||||
<path
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:0.2;stroke:none;stroke-width:1.0666666;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
d="m 165,319 c -4.432,0 -8,3.568 -8,8 0,0.0838 0.007,0.16558 0.0117,0.24805 0.13337,-4.31343 3.64136,-7.74805 7.9883,-7.74805 4.34694,0 7.85493,3.43462 7.98828,7.74805 0.005,-0.0825 0.0117,-0.1643 0.0117,-0.24805 0,-4.432 -3.568,-8 -8,-8 z"
|
||||
transform="translate(-154,-316)"
|
||||
id="rect5232"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:0.2;stroke:none;stroke-width:1.0666666;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
d="M 157.01172,326.75195 C 157.0067,326.83442 157,326.91625 157,327 c 0,4.432 3.568,8 8,8 4.432,0 8,-3.568 8,-8 0,-0.0838 -0.007,-0.16558 -0.0117,-0.24805 -0.13337,4.31343 -3.64136,7.74805 -7.9883,7.74805 -4.34694,0 -7.85493,-3.43462 -7.98828,-7.74805 z"
|
||||
transform="translate(-154,-316)"
|
||||
id="path5237"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
@@ -2009,7 +2005,7 @@
|
||||
height="3"
|
||||
width="4"
|
||||
id="rect5400"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#c6c6c6;fill-opacity:1;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" />
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#c6c8cb;fill-opacity:1;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" />
|
||||
<rect
|
||||
rx="0"
|
||||
ry="1.5"
|
||||
@@ -2018,7 +2014,7 @@
|
||||
height="3"
|
||||
width="4"
|
||||
id="rect5402"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#c6c6c6;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#c6c8cb;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
@@ -2039,7 +2035,7 @@
|
||||
id="g5408"
|
||||
transform="rotate(90,133.5,219)">
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient1581);fill-opacity:1;stroke:none;stroke-width:1;marker:none;enable-background:accumulate"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#00D3A7;fill-opacity:1;stroke:none;stroke-width:1;marker:none;enable-background:accumulate"
|
||||
id="rect5410"
|
||||
width="4"
|
||||
height="3"
|
||||
@@ -2047,7 +2043,7 @@
|
||||
y="3.5"
|
||||
ry="1.5" />
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:url(#linearGradient1589);stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#00D3A7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
id="rect5412"
|
||||
width="4"
|
||||
height="3"
|
||||
@@ -2124,7 +2120,7 @@
|
||||
id="g5043-3"
|
||||
transform="translate(255,102)">
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#c6c6c6;fill-opacity:1;stroke:none;stroke-width:1;marker:none;enable-background:accumulate"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#c6c8cb;fill-opacity:1;stroke:none;stroke-width:1;marker:none;enable-background:accumulate"
|
||||
id="rect5045-2"
|
||||
width="4"
|
||||
height="3"
|
||||
@@ -2132,7 +2128,7 @@
|
||||
y="3.5"
|
||||
ry="1.5" />
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#c6c6c6;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#c6c8cb;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
id="use5047-1"
|
||||
width="4"
|
||||
height="3"
|
||||
@@ -2172,7 +2168,7 @@
|
||||
height="3"
|
||||
width="4"
|
||||
id="rect5389"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient1565);fill-opacity:1;stroke:#46f6c6;stroke-width:1;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#00D3A7;fill-opacity:1;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" />
|
||||
<rect
|
||||
rx="0"
|
||||
ry="1.5"
|
||||
@@ -2181,7 +2177,7 @@
|
||||
height="3"
|
||||
width="4"
|
||||
id="rect5391"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:url(#linearGradient1573);stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#00D3A7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
||||
</g>
|
||||
<rect
|
||||
style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
@@ -2273,7 +2269,7 @@
|
||||
height="29"
|
||||
width="7"
|
||||
id="use6911"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#00d3a7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#00D3A7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
@@ -2341,7 +2337,7 @@
|
||||
id="g7089"
|
||||
transform="translate(7,6)">
|
||||
<path
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#00d3a7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#00D3A7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
d="M 3.0937501,81.5 H 9.5 v 29 H 2.9687501 C 2,110.5 1.5,110 1.5,109 V 83.0625 C 1.5,82 2,81.5 3.0937501,81.5 Z"
|
||||
id="path7091"
|
||||
inkscape:connector-curvature="0"
|
||||
@@ -2390,7 +2386,7 @@
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csssscc" />
|
||||
<path
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#00d3a7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#00D3A7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
d="m 57,126.5 h 5 c 1,0 1.5,0.5 1.5,1.5 v 26.0625 C 63.5,155 63,155.5 62.03125,155.5 H 57"
|
||||
id="path7115"
|
||||
inkscape:connector-curvature="0"
|
||||
@@ -2446,7 +2442,7 @@
|
||||
inkscape:connector-curvature="0"
|
||||
id="path7103"
|
||||
d="m 37,126.5 h 5 c 1,0 1.5,0.5 1.5,1.5 v 25.96875 C 43.5,155 43,155.5 42.03125,155.5 H 37"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#00d3a7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#00D3A7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
||||
<rect
|
||||
ry="0"
|
||||
rx="0"
|
||||
@@ -2483,7 +2479,7 @@
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect7260"
|
||||
d="M 3.0312501,81.5 H 9.5 v 29 H 3.0000001 C 2,110.5 1.5,110 1.5,108.96875 V 83 c 0,-1 0.5,-1.5 1.5312501,-1.5 z"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#fefefe;fill-opacity:1;stroke:#00d3a7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#fefefe;fill-opacity:1;stroke:#00D3A7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
@@ -2614,7 +2610,7 @@
|
||||
inkscape:connector-curvature="0"
|
||||
id="path7354"
|
||||
d="M 2.9973982,81.5 H 9.5 v 29 H 2.9973982 C 2,110.5 1.5,110 1.5,109.0026 V 82.975301 C 1.5,82 2,81.5 2.9973982,81.5 Z"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#00d3a7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#00D3A7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -2663,7 +2659,7 @@
|
||||
inkscape:connector-curvature="0"
|
||||
id="path7372"
|
||||
d="m 57,126.5 h 5.046796 C 63,126.5 63.5,127 63.5,128.04159 v 25.91682 C 63.5,155 63,155.5 62.002602,155.5 H 57"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#00d3a7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#00D3A7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
|
||||
id="rect7374"
|
||||
@@ -2711,7 +2707,7 @@
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csssscc" />
|
||||
<path
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#00d3a7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#00D3A7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
d="m 37,126.5 h 4.980505 C 43,126.5 43.5,127 43.5,127.9974 v 25.9831 C 43.5,155 43,155.5 42.002602,155.5 H 37"
|
||||
id="path7390"
|
||||
inkscape:connector-curvature="0"
|
||||
@@ -2748,7 +2744,7 @@
|
||||
id="g7404"
|
||||
transform="translate(47,45)">
|
||||
<path
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#fefefe;fill-opacity:1;stroke:#00d3a7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#fefefe;fill-opacity:1;stroke:#00D3A7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
d="M 2.9973982,81.5 H 9.5 v 29 H 2.9973982 C 2,110.5 1.5,110 1.5,108.95841 V 82.997398 C 1.5,82 2,81.5 2.9973982,81.5 Z"
|
||||
id="path7406"
|
||||
inkscape:connector-curvature="0"
|
||||
@@ -2839,7 +2835,7 @@
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4982"
|
||||
d="M 3.0000001,81.5 H 9.5 v 29 H 3.0000001 C 2,110.5 1.5,110 1.5,108.96875 V 83.03125 C 1.5,82 2,81.5 3.0000001,81.5 Z"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#00d3a7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#00D3A7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -3037,14 +3033,14 @@
|
||||
x="234"
|
||||
y="31" />
|
||||
<rect
|
||||
style="fill:#7a7d81;fill-opacity:1;stroke:none;stroke-width:0.30000001;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
style="fill:#999999;fill-opacity:1;stroke:none;stroke-width:0.30000001;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect5124"
|
||||
width="4"
|
||||
width="6"
|
||||
height="7"
|
||||
x="238"
|
||||
y="34"
|
||||
rx="0"
|
||||
ry="2" />
|
||||
ry="0" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:label="#g5134"
|
||||
@@ -3060,12 +3056,12 @@
|
||||
<rect
|
||||
style="fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.30000001;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect5132"
|
||||
width="5"
|
||||
width="6"
|
||||
height="7"
|
||||
x="254"
|
||||
y="34"
|
||||
rx="0"
|
||||
ry="2" />
|
||||
ry="0" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:label="#g5142"
|
||||
@@ -3081,17 +3077,17 @@
|
||||
<a
|
||||
id="a5138"
|
||||
transform="translate(-30,34)"
|
||||
style="fill:#00d3a7;fill-opacity:1"
|
||||
style="fill:#00D3A7;fill-opacity:1"
|
||||
inkscape:label="#a5307-0-9">
|
||||
<rect
|
||||
ry="2"
|
||||
ry="0"
|
||||
rx="0"
|
||||
y="0"
|
||||
x="300"
|
||||
height="7"
|
||||
width="5"
|
||||
width="6"
|
||||
id="rect5140"
|
||||
style="fill:#00d3a7;fill-opacity:1;stroke:none;stroke-width:0.30000001;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
style="fill:#00D3A7;fill-opacity:1;stroke:none;stroke-width:0.30000001;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</a>
|
||||
</g>
|
||||
<g
|
||||
@@ -3099,7 +3095,7 @@
|
||||
id="treeview-separator-rtl"
|
||||
transform="matrix(-1,0,0,1,966,0)">
|
||||
<rect
|
||||
style="opacity:1;fill:#ebf0f5;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.1"
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.1"
|
||||
id="rect5144"
|
||||
width="2"
|
||||
height="2"
|
||||
@@ -3329,7 +3325,7 @@
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5053"
|
||||
d="M 4.5,107.5 V 82.96875 C 4.5,82 5,81.5 5.9687501,81.5 H 10"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#00d3a7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#00D3A7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
||||
<path
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#cdcdcd;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
d="M 9.5,82 V 96"
|
||||
@@ -3378,7 +3374,7 @@
|
||||
d="M 5,96.5 H 9.5 V 110"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#cdcdcd;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
||||
<path
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#00d3a7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#00D3A7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
d="M 10,110.5 H 6.0000001 C 4.9999991,110.5 4.5,110 4.5,109.03125 V 96"
|
||||
id="path5074"
|
||||
inkscape:connector-curvature="0"
|
||||
@@ -3496,9 +3492,9 @@
|
||||
<g
|
||||
id="g5079"
|
||||
transform="translate(7,6)"
|
||||
style="stroke:#00d3a7;stroke-opacity:1">
|
||||
style="stroke:#00D3A7;stroke-opacity:1">
|
||||
<path
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#00d3a7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#00D3A7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
d="M 3.0000001,81.5 H 9.5 v 29 H 3.0312501 C 2,110.5 1.5,110 1.5,108.96875 v -26 C 1.5,82 2,81.5 3.0000001,81.5 Z"
|
||||
id="path5081"
|
||||
inkscape:connector-curvature="0"
|
||||
@@ -3722,7 +3718,7 @@
|
||||
id="g5161"
|
||||
transform="matrix(-1,0,0,1,46,45)">
|
||||
<path
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#00d3a7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#00D3A7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
d="M 4.5,107.5 V 82.975301 C 4.5,82 4.9999991,81.5 6.0194953,81.5 H 10"
|
||||
id="path5163"
|
||||
inkscape:connector-curvature="0"
|
||||
@@ -3779,7 +3775,7 @@
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5179"
|
||||
d="M 10,110.5 H 6.0194953 C 4.9999992,110.5 4.5,110 4.5,108.9805 V 96"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#00d3a7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#00D3A7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
@@ -3822,7 +3818,7 @@
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5193"
|
||||
d="M 3.0415924,81.5 H 9.5 v 29 H 2.9973982 C 2,110.5 1.5,110 1.5,108.91421 V 83.041592 C 1.5,82 2,81.5 3.0415924,81.5 Z"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#00d3a7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#00D3A7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -3862,7 +3858,7 @@
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5206"
|
||||
d="M 4.5,107.5 V 83.085787 C 4.5,82 5,81.5 5.953204,81.5 H 10"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#00d3a7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#00D3A7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
||||
<path
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#cdcdcd;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
d="M 9.5,82 V 96"
|
||||
@@ -3911,7 +3907,7 @@
|
||||
d="M 5,96.5 H 9.5 V 110"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#cdcdcd;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
||||
<path
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#00d3a7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#00D3A7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
d="M 10,110.5 H 5.9973982 C 5,110.5 4.5,110 4.5,108.91421 V 96"
|
||||
id="path5223"
|
||||
inkscape:connector-curvature="0"
|
||||
@@ -4135,7 +4131,7 @@
|
||||
id="g4962"
|
||||
transform="translate(47,45)">
|
||||
<path
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#00d3a7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#00D3A7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
d="M 3.0084467,81.5 H 9.5 v 29 H 2.9863496 C 2,110.5 1.5,110 1.5,108.99584 V 82.997398 C 1.5,82 2,81.5 3.0084467,81.5 Z"
|
||||
id="path4964"
|
||||
inkscape:connector-curvature="0"
|
||||
@@ -4265,7 +4261,7 @@
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5063"
|
||||
d="M 2.9973982,81.5 H 9.5 v 29 H 3.0000001 C 2,110.5 1.5,110 1.5,108.96875 V 82.997398 C 1.5,82 2,81.5 2.9973982,81.5 Z"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#00d3a7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#00D3A7;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
@@ -4362,7 +4358,7 @@
|
||||
id="rect9553-5"
|
||||
style="color:#bebebe;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:1;marker:none" />
|
||||
<path
|
||||
style="fill:#00d3a7;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
|
||||
style="fill:#00D3A7;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
|
||||
d="m 588,89 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,4 c 1.65555,0 3,1.34444 3,3 0,1.65555 -1.34445,3 -3,3 -1.65555,0 -3,-1.34445 -3,-3 0,-1.65556 1.34445,-3 3,-3 z"
|
||||
transform="translate(-419.99999,399.00002)"
|
||||
id="path5789"
|
||||
@@ -4393,7 +4389,7 @@
|
||||
transform="translate(-4.00041,317.00338)"
|
||||
style="display:inline;enable-background:new">
|
||||
<path
|
||||
style="fill:#00d3a7;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
|
||||
style="fill:#00D3A7;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
|
||||
d="m 584,30 c -1.108,0 -2,0.892 -2,2 v 8 c 0,1.108 0.892,2 2,2 h 8 c 1.108,0 2,-0.892 2,-2 v -8 c 0,-1.108 -0.892,-2 -2,-2 z m 7.98828,1.990234 a 1.0001,1.0001 0 0 1 0.7793,1.650391 l -4.89453,5.875 a 1.0001,1.0001 0 0 1 -0.81055,0.492187 1.0001,1.0001 0 0 1 -0.88477,-0.416015 l -2.88476,-2.884766 a 1.0001,1.0001 0 1 1 1.41406,-1.414062 l 2.22656,2.226562 4.29883,-5.160156 a 1.0001,1.0001 0 0 1 0.75586,-0.369141 z"
|
||||
transform="translate(4.00041,-317.00338)"
|
||||
id="rect5738"
|
||||
@@ -4698,7 +4694,7 @@
|
||||
id="rect5063"
|
||||
style="opacity:0.2;fill:none;fill-opacity:1;stroke:none" />
|
||||
<rect
|
||||
style="opacity:1;fill:#00d3a7;fill-opacity:1;stroke:none;stroke-width:1.22474492"
|
||||
style="opacity:1;fill:#00D3A7;fill-opacity:1;stroke:none;stroke-width:1.22474492"
|
||||
id="rect5061"
|
||||
width="30"
|
||||
height="3"
|
||||
|
||||
|
Before Width: | Height: | Size: 192 KiB After Width: | Height: | Size: 195 KiB |
@@ -1 +0,0 @@
|
||||
../../assets/checkbox-checked-active.png
|
||||
|
Before Width: | Height: | Size: 40 B After Width: | Height: | Size: 476 B |
BIN
gtk-2.0/assets/checkbox-checked-active.png
Normal file
|
Before Width: | Height: | Size: 40 B After Width: | Height: | Size: 476 B |
@@ -1 +0,0 @@
|
||||
../../assets/checkbox-checked-hover.png
|
||||
|
Before Width: | Height: | Size: 39 B After Width: | Height: | Size: 470 B |
BIN
gtk-2.0/assets/checkbox-checked-hover.png
Normal file
|
Before Width: | Height: | Size: 39 B After Width: | Height: | Size: 470 B |
@@ -1 +0,0 @@
|
||||
../../assets/checkbox-checked-insensitive.png
|
||||
|
Before Width: | Height: | Size: 45 B After Width: | Height: | Size: 482 B |
BIN
gtk-2.0/assets/checkbox-checked-insensitive.png
Normal file
|
Before Width: | Height: | Size: 45 B After Width: | Height: | Size: 482 B |
@@ -1 +0,0 @@
|
||||
../../assets/checkbox-checked.png
|
||||
|
Before Width: | Height: | Size: 33 B After Width: | Height: | Size: 470 B |
BIN
gtk-2.0/assets/checkbox-checked.png
Normal file
|
Before Width: | Height: | Size: 33 B After Width: | Height: | Size: 470 B |
@@ -1 +0,0 @@
|
||||
../../assets/checkbox-mixed-active.png
|
||||
|
Before Width: | Height: | Size: 38 B After Width: | Height: | Size: 307 B |
BIN
gtk-2.0/assets/checkbox-mixed-active.png
Normal file
|
Before Width: | Height: | Size: 38 B After Width: | Height: | Size: 307 B |
@@ -1 +0,0 @@
|
||||
../../assets/checkbox-mixed-hover.png
|
||||
|
Before Width: | Height: | Size: 37 B After Width: | Height: | Size: 307 B |
BIN
gtk-2.0/assets/checkbox-mixed-hover.png
Normal file
|
Before Width: | Height: | Size: 37 B After Width: | Height: | Size: 307 B |
@@ -1 +0,0 @@
|
||||
../../assets/checkbox-mixed-insensitive.png
|
||||
|
Before Width: | Height: | Size: 43 B After Width: | Height: | Size: 297 B |
BIN
gtk-2.0/assets/checkbox-mixed-insensitive.png
Normal file
|
Before Width: | Height: | Size: 43 B After Width: | Height: | Size: 297 B |
@@ -1 +0,0 @@
|
||||
../../assets/checkbox-mixed.png
|
||||
|
Before Width: | Height: | Size: 31 B After Width: | Height: | Size: 307 B |
BIN
gtk-2.0/assets/checkbox-mixed.png
Normal file
|
Before Width: | Height: | Size: 31 B After Width: | Height: | Size: 307 B |
@@ -1 +0,0 @@
|
||||
../../assets/checkbox-unchecked-active.png
|
||||
|
Before Width: | Height: | Size: 42 B After Width: | Height: | Size: 322 B |
BIN
gtk-2.0/assets/checkbox-unchecked-active.png
Normal file
|
Before Width: | Height: | Size: 42 B After Width: | Height: | Size: 322 B |
@@ -1 +0,0 @@
|
||||
../../assets/checkbox-unchecked-hover.png
|
||||
|
Before Width: | Height: | Size: 41 B After Width: | Height: | Size: 352 B |
BIN
gtk-2.0/assets/checkbox-unchecked-hover.png
Normal file
|
Before Width: | Height: | Size: 41 B After Width: | Height: | Size: 352 B |
@@ -1 +0,0 @@
|
||||
../../assets/checkbox-unchecked-insensitive.png
|
||||
|
Before Width: | Height: | Size: 47 B After Width: | Height: | Size: 314 B |
BIN
gtk-2.0/assets/checkbox-unchecked-insensitive.png
Normal file
|
Before Width: | Height: | Size: 47 B After Width: | Height: | Size: 314 B |
@@ -1 +0,0 @@
|
||||
../../assets/checkbox-unchecked.png
|
||||
|
Before Width: | Height: | Size: 35 B After Width: | Height: | Size: 305 B |
BIN
gtk-2.0/assets/checkbox-unchecked.png
Normal file
|
Before Width: | Height: | Size: 35 B After Width: | Height: | Size: 305 B |
|
Before Width: | Height: | Size: 324 B After Width: | Height: | Size: 315 B |
|
Before Width: | Height: | Size: 322 B After Width: | Height: | Size: 316 B |
@@ -1 +0,0 @@
|
||||
../../assets/radio-checked-active.png
|
||||
|
Before Width: | Height: | Size: 37 B After Width: | Height: | Size: 750 B |
BIN
gtk-2.0/assets/radio-checked-active.png
Normal file
|
Before Width: | Height: | Size: 37 B After Width: | Height: | Size: 750 B |
@@ -1 +0,0 @@
|
||||
../../assets/radio-checked-hover.png
|
||||
|
Before Width: | Height: | Size: 36 B After Width: | Height: | Size: 750 B |
BIN
gtk-2.0/assets/radio-checked-hover.png
Normal file
|
Before Width: | Height: | Size: 36 B After Width: | Height: | Size: 750 B |
@@ -1 +0,0 @@
|
||||
../../assets/radio-checked-insensitive.png
|
||||
|
Before Width: | Height: | Size: 42 B After Width: | Height: | Size: 490 B |
BIN
gtk-2.0/assets/radio-checked-insensitive.png
Normal file
|
Before Width: | Height: | Size: 42 B After Width: | Height: | Size: 490 B |
@@ -1 +0,0 @@
|
||||
../../assets/radio-checked.png
|
||||
|
Before Width: | Height: | Size: 30 B After Width: | Height: | Size: 750 B |
BIN
gtk-2.0/assets/radio-checked.png
Normal file
|
Before Width: | Height: | Size: 30 B After Width: | Height: | Size: 750 B |
@@ -1 +0,0 @@
|
||||
../../assets/radio-mixed-active.png
|
||||
|
Before Width: | Height: | Size: 35 B After Width: | Height: | Size: 467 B |
BIN
gtk-2.0/assets/radio-mixed-active.png
Normal file
|
Before Width: | Height: | Size: 35 B After Width: | Height: | Size: 467 B |
@@ -1 +0,0 @@
|
||||
../../assets/radio-mixed-hover.png
|
||||
|
Before Width: | Height: | Size: 34 B After Width: | Height: | Size: 467 B |
BIN
gtk-2.0/assets/radio-mixed-hover.png
Normal file
|
Before Width: | Height: | Size: 34 B After Width: | Height: | Size: 467 B |
@@ -1 +0,0 @@
|
||||
../../assets/radio-mixed-insensitive.png
|
||||
|
Before Width: | Height: | Size: 40 B After Width: | Height: | Size: 384 B |
BIN
gtk-2.0/assets/radio-mixed-insensitive.png
Normal file
|
Before Width: | Height: | Size: 40 B After Width: | Height: | Size: 384 B |
@@ -1 +0,0 @@
|
||||
../../assets/radio-mixed.png
|
||||
|
Before Width: | Height: | Size: 28 B After Width: | Height: | Size: 467 B |
BIN
gtk-2.0/assets/radio-mixed.png
Normal file
|
Before Width: | Height: | Size: 28 B After Width: | Height: | Size: 467 B |