Compare commits
113 Commits
sidebar-is
...
dependabot
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d575b85940 | ||
|
|
1ec33bcbe1 | ||
|
|
095ba407ca | ||
|
|
7ac06828a8 | ||
|
|
a50173fbd6 | ||
|
|
b9c663ac19 | ||
|
|
647f169f56 | ||
|
|
61941c05d5 | ||
|
|
b8ad507957 | ||
|
|
b4969d2a66 | ||
|
|
ea38f15390 | ||
|
|
4e9666c8a4 | ||
|
|
08610356f8 | ||
|
|
5b08b518b0 | ||
|
|
496f02a801 | ||
|
|
e4e4fada9b | ||
|
|
a164141483 | ||
|
|
71d1e7da5e | ||
|
|
b1713927af | ||
|
|
a181f9940b | ||
|
|
21a530125e | ||
|
|
e3ee178398 | ||
|
|
10aefff067 | ||
|
|
f1265e325b | ||
|
|
ef4110b220 | ||
|
|
9e9c69f2aa | ||
|
|
f611c6c2d9 | ||
|
|
769761f675 | ||
|
|
e14ea3a8a6 | ||
|
|
f7a54318f3 | ||
|
|
54de6a5ed0 | ||
|
|
ffb634e975 | ||
|
|
717b58f49d | ||
|
|
884a85eab8 | ||
|
|
9e3bfeeeee | ||
|
|
18075d63ca | ||
|
|
3ec889b484 | ||
|
|
4e258fa0c0 | ||
|
|
0160c1d8d9 | ||
|
|
5b663d4253 | ||
|
|
7c6c06ad23 | ||
|
|
696fca5bb3 | ||
|
|
5887279545 | ||
|
|
1bbe4e2222 | ||
|
|
d0811834ea | ||
|
|
0c09c6c4de | ||
|
|
e6af80ca9b | ||
|
|
97d54adf3d | ||
|
|
c56da383b1 | ||
|
|
f6ebc031e3 | ||
|
|
b407bef2ba | ||
|
|
558769d6c3 | ||
|
|
1b6cad0512 | ||
|
|
66bbfa285f | ||
|
|
2d861cab32 | ||
|
|
abbe752a25 | ||
|
|
b8e8b7d723 | ||
|
|
3293c631a6 | ||
|
|
a8ffdd73ac | ||
|
|
9810668cd0 | ||
|
|
4c22e51c20 | ||
|
|
1bdef4cb9a | ||
|
|
09185d040c | ||
|
|
1258b94723 | ||
|
|
5799ac5f10 | ||
|
|
006b77dc6c | ||
|
|
ee372baff9 | ||
|
|
0b36bfdd5d | ||
|
|
9de6861453 | ||
|
|
b276698e72 | ||
|
|
50380d25b6 | ||
|
|
c65be305ba | ||
|
|
2a939fd535 | ||
|
|
338cd5d22b | ||
|
|
51738754d4 | ||
|
|
88b15fd637 | ||
|
|
7e441f13ab | ||
|
|
28b2f27fd4 | ||
|
|
7c60cbc11f | ||
|
|
0b3bb72b5d | ||
|
|
0cd277545a | ||
|
|
693fa573f9 | ||
|
|
218a24a802 | ||
|
|
881f54b2b1 | ||
|
|
64ad9c4923 | ||
|
|
d1968f5b1a | ||
|
|
05d0957b5f | ||
|
|
d8442d2671 | ||
|
|
24854709be | ||
|
|
cb89c137b3 | ||
|
|
2ef973ac62 | ||
|
|
4820b93776 | ||
|
|
48b4999205 | ||
|
|
ba7c80cacd | ||
|
|
011d8b2fea | ||
|
|
c8cf6591e2 | ||
|
|
617419f237 | ||
|
|
546fbd2d0e | ||
|
|
22aed6a2f6 | ||
|
|
727a3e641e | ||
|
|
40aa607c31 | ||
|
|
d8d2560c95 | ||
|
|
5576860714 | ||
|
|
9c5e89d9ad | ||
|
|
013c62dd66 | ||
|
|
8484608313 | ||
|
|
aee36320db | ||
|
|
9df39eb645 | ||
|
|
4848f499f3 | ||
|
|
83b141db15 | ||
|
|
14bfdffe44 | ||
|
|
5666ec9196 | ||
|
|
632ae20b16 |
6
.gitignore
vendored
@@ -6,3 +6,9 @@ node_modules/
|
||||
*.css.map
|
||||
|
||||
_gnome-shell/
|
||||
gnome-shell/dark-and-white/
|
||||
gnome-shell/dark/
|
||||
gnome-shell/light/
|
||||
|
||||
|
||||
install.sh
|
||||
|
||||
|
Before Width: | Height: | Size: 232 KiB After Width: | Height: | Size: 286 KiB |
13
Gulpfile.js
@@ -19,11 +19,22 @@ 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.watch('gnome-shell/**/*.scss', gulp.series('shell-style'));
|
||||
});
|
||||
|
||||
gulp.task('cinnamon',function() {
|
||||
gulp.watch('cinnamon/**/*.scss', gulp.series('cinnamon-style'));
|
||||
});
|
||||
107
cinnamon/_colors.scss
Normal file
@@ -0,0 +1,107 @@
|
||||
// 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;
|
||||
1811
cinnamon/_common.scss
Normal file
167
cinnamon/_drawing.scss
Normal file
@@ -0,0 +1,167 @@
|
||||
// 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);
|
||||
}
|
||||
}
|
||||
1516
cinnamon/cinnamon-dark.css
Normal file
8
cinnamon/cinnamon-dark.scss
Normal file
@@ -0,0 +1,8 @@
|
||||
$variant: 'dark';
|
||||
$transparency: 'true';
|
||||
$darker: 'false';
|
||||
|
||||
@import "_colors"; //use gtk colors
|
||||
@import "_drawing";
|
||||
@import "_common";
|
||||
|
||||
1516
cinnamon/cinnamon.css
Normal file
7
cinnamon/cinnamon.scss
Normal file
@@ -0,0 +1,7 @@
|
||||
$variant: 'dark';
|
||||
$transparency: 'true';
|
||||
$darker: 'false';
|
||||
|
||||
@import "_colors"; //use gtk colors
|
||||
@import "_drawing";
|
||||
@import "_common";
|
||||
93
cinnamon/common-assets/menu/menu-hover.svg
Normal file
@@ -0,0 +1,93 @@
|
||||
<?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>
|
||||
|
After Width: | Height: | Size: 2.7 KiB |
60
cinnamon/common-assets/menu/menu-separator.svg
Normal file
@@ -0,0 +1,60 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="90.311111mm"
|
||||
height="0.56444442mm"
|
||||
viewBox="0 0 320 1.9999999"
|
||||
id="svg7537"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="menu-separator.svg">
|
||||
<defs
|
||||
id="defs7539" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="11.2"
|
||||
inkscape:cx="115.53549"
|
||||
inkscape:cy="8.9322818"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="723"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="23"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata7542">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Ebene 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(340,-443.3622)" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
144
cinnamon/common-assets/misc/add-workspace-active.svg
Normal file
@@ -0,0 +1,144 @@
|
||||
<?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>
|
||||
|
After Width: | Height: | Size: 4.7 KiB |
117
cinnamon/common-assets/misc/add-workspace-hover.svg
Normal file
@@ -0,0 +1,117 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="35"
|
||||
height="200"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="add-workspace-hover.svg">
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="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>
|
||||
|
After Width: | Height: | Size: 4.0 KiB |
117
cinnamon/common-assets/misc/add-workspace.svg
Normal file
@@ -0,0 +1,117 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="35"
|
||||
height="200"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="add-workspace.svg">
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="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>
|
||||
|
After Width: | Height: | Size: 4.0 KiB |
131
cinnamon/common-assets/misc/bg.svg
Normal file
@@ -0,0 +1,131 @@
|
||||
<?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>
|
||||
|
After Width: | Height: | Size: 4.9 KiB |
161
cinnamon/common-assets/misc/calendar-arrow-left-hover.svg
Normal file
@@ -0,0 +1,161 @@
|
||||
<?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>
|
||||
|
After Width: | Height: | Size: 5.5 KiB |
152
cinnamon/common-assets/misc/calendar-arrow-left.svg
Normal file
@@ -0,0 +1,152 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
sodipodi:docname="calendar-arrow-left.svg"
|
||||
height="16"
|
||||
id="svg7384"
|
||||
inkscape:version="0.91 r13725"
|
||||
version="1.1"
|
||||
width="16">
|
||||
<metadata
|
||||
id="metadata90">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>Gnome Symbolic Icon Theme</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:bbox-paths="true"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
inkscape:current-layer="layer12"
|
||||
inkscape:cx="13.983735"
|
||||
inkscape:cy="8.0207106"
|
||||
gridtolerance="10"
|
||||
inkscape:guide-bbox="true"
|
||||
guidetolerance="10"
|
||||
id="namedview88"
|
||||
inkscape:object-nodes="false"
|
||||
inkscape:object-paths="false"
|
||||
objecttolerance="10"
|
||||
pagecolor="#ffffff"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
showborder="true"
|
||||
showgrid="true"
|
||||
showguides="true"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:snap-bbox-midpoints="false"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:snap-grids="true"
|
||||
inkscape:snap-nodes="true"
|
||||
inkscape:snap-others="false"
|
||||
inkscape:snap-to-guides="true"
|
||||
inkscape:window-height="720"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="25"
|
||||
inkscape:zoom="22.627417"
|
||||
inkscape:snap-bbox-edge-midpoints="true">
|
||||
<inkscape:grid
|
||||
empspacing="2"
|
||||
enabled="true"
|
||||
id="grid4866"
|
||||
originx="141px"
|
||||
originy="530px"
|
||||
snapvisiblegridlinesonly="true"
|
||||
spacingx="1px"
|
||||
spacingy="1px"
|
||||
type="xygrid"
|
||||
visible="true" />
|
||||
<inkscape:grid
|
||||
color="#000000"
|
||||
empcolor="#000000"
|
||||
empopacity="0"
|
||||
empspacing="4"
|
||||
enabled="true"
|
||||
id="grid5968"
|
||||
opacity="0.1254902"
|
||||
originx="141px"
|
||||
originy="530px"
|
||||
snapvisiblegridlinesonly="true"
|
||||
spacingx="0.5px"
|
||||
spacingy="0.5px"
|
||||
type="xygrid"
|
||||
visible="true" />
|
||||
</sodipodi:namedview>
|
||||
<title
|
||||
id="title9167">Gnome Symbolic Icon Theme</title>
|
||||
<defs
|
||||
id="defs7386" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer9"
|
||||
inkscape:label="status"
|
||||
style="display:inline"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer10"
|
||||
inkscape:label="devices"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer11"
|
||||
inkscape:label="apps"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer13"
|
||||
inkscape:label="places"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer14"
|
||||
inkscape:label="mimetypes"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer15"
|
||||
inkscape:label="emblems"
|
||||
style="display:inline"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="g71291"
|
||||
inkscape:label="emotes"
|
||||
style="display:inline"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="g4953"
|
||||
inkscape:label="categories"
|
||||
style="display:inline"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer12"
|
||||
inkscape:label="actions"
|
||||
style="display:inline"
|
||||
transform="translate(-100.0002,-747)">
|
||||
<path
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#a1a1a1;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
|
||||
d="m 109.82336,751.00006 a 0.67182557,0.66502524 0 0 0 -0.10367,0.009 0.67182557,0.66502524 0 0 0 -0.39887,0.18702 l -3.35878,3.32479 -0.46184,0.47795 0.46184,0.47792 3.35878,3.32481 a 0.68281953,0.67590797 0 0 0 0.698,0.16363 c 0.0374,0.0143 0.0779,0.0233 0.1207,0.0233 0.18608,0 0.33589,-0.14829 0.33589,-0.33248 0,-0.0423 -0.009,-0.0823 -0.0236,-0.11948 a 0.68281953,0.67590797 0 0 0 -0.16531,-0.69094 l -2.876,-2.84689 2.87597,-2.84686 a 0.67182557,0.66502524 0 0 0 0.17056,-0.72082 c 0.008,-0.0292 0.0185,-0.058 0.0185,-0.0896 0,-0.18421 -0.14978,-0.33249 -0.33587,-0.33249 -0.0395,0 -0.0765,0.01 -0.11152,0.022 A 0.67182557,0.66502524 0 0 0 109.82334,751 Z"
|
||||
id="path6040"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.3 KiB |
161
cinnamon/common-assets/misc/calendar-arrow-right-hover.svg
Normal file
@@ -0,0 +1,161 @@
|
||||
<?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>
|
||||
|
After Width: | Height: | Size: 5.5 KiB |
152
cinnamon/common-assets/misc/calendar-arrow-right.svg
Normal file
@@ -0,0 +1,152 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
sodipodi:docname="calendar-arrow-right.svg"
|
||||
height="16"
|
||||
id="svg7384"
|
||||
inkscape:version="0.91 r13725"
|
||||
version="1.1"
|
||||
width="16">
|
||||
<metadata
|
||||
id="metadata90">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>Gnome Symbolic Icon Theme</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:bbox-paths="true"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
inkscape:current-layer="layer12"
|
||||
inkscape:cx="13.983735"
|
||||
inkscape:cy="8.0207106"
|
||||
gridtolerance="10"
|
||||
inkscape:guide-bbox="true"
|
||||
guidetolerance="10"
|
||||
id="namedview88"
|
||||
inkscape:object-nodes="false"
|
||||
inkscape:object-paths="false"
|
||||
objecttolerance="10"
|
||||
pagecolor="#ffffff"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
showborder="true"
|
||||
showgrid="true"
|
||||
showguides="true"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:snap-bbox-midpoints="false"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:snap-grids="true"
|
||||
inkscape:snap-nodes="true"
|
||||
inkscape:snap-others="false"
|
||||
inkscape:snap-to-guides="true"
|
||||
inkscape:window-height="720"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="25"
|
||||
inkscape:zoom="22.627417"
|
||||
inkscape:snap-bbox-edge-midpoints="true">
|
||||
<inkscape:grid
|
||||
empspacing="2"
|
||||
enabled="true"
|
||||
id="grid4866"
|
||||
originx="141px"
|
||||
originy="530px"
|
||||
snapvisiblegridlinesonly="true"
|
||||
spacingx="1px"
|
||||
spacingy="1px"
|
||||
type="xygrid"
|
||||
visible="true" />
|
||||
<inkscape:grid
|
||||
color="#000000"
|
||||
empcolor="#000000"
|
||||
empopacity="0"
|
||||
empspacing="4"
|
||||
enabled="true"
|
||||
id="grid5968"
|
||||
opacity="0.1254902"
|
||||
originx="141px"
|
||||
originy="530px"
|
||||
snapvisiblegridlinesonly="true"
|
||||
spacingx="0.5px"
|
||||
spacingy="0.5px"
|
||||
type="xygrid"
|
||||
visible="true" />
|
||||
</sodipodi:namedview>
|
||||
<title
|
||||
id="title9167">Gnome Symbolic Icon Theme</title>
|
||||
<defs
|
||||
id="defs7386" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer9"
|
||||
inkscape:label="status"
|
||||
style="display:inline"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer10"
|
||||
inkscape:label="devices"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer11"
|
||||
inkscape:label="apps"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer13"
|
||||
inkscape:label="places"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer14"
|
||||
inkscape:label="mimetypes"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer15"
|
||||
inkscape:label="emblems"
|
||||
style="display:inline"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="g71291"
|
||||
inkscape:label="emotes"
|
||||
style="display:inline"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="g4953"
|
||||
inkscape:label="categories"
|
||||
style="display:inline"
|
||||
transform="translate(-100.0002,-747)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer12"
|
||||
inkscape:label="actions"
|
||||
style="display:inline"
|
||||
transform="translate(-100.0002,-747)">
|
||||
<path
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#a1a1a1;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
|
||||
d="m 106.17699,751.00006 a 0.67182557,0.66502524 0 0 1 0.10367,0.009 0.67182557,0.66502524 0 0 1 0.39887,0.18702 l 3.35878,3.32479 0.46184,0.47795 -0.46184,0.47792 -3.35878,3.32481 a 0.68281953,0.67590797 0 0 1 -0.698,0.16363 c -0.0374,0.0143 -0.0779,0.0233 -0.1207,0.0233 -0.18608,0 -0.33589,-0.14829 -0.33589,-0.33248 0,-0.0423 0.009,-0.0823 0.0236,-0.11948 a 0.68281953,0.67590797 0 0 1 0.16531,-0.69094 l 2.876,-2.84689 -2.87597,-2.84686 a 0.67182557,0.66502524 0 0 1 -0.17056,-0.72082 c -0.008,-0.0292 -0.0185,-0.058 -0.0185,-0.0896 0,-0.18421 0.14978,-0.33249 0.33587,-0.33249 0.0395,0 0.0765,0.01 0.11152,0.022 A 0.67182557,0.66502524 0 0 1 106.17701,751 Z"
|
||||
id="path6040"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.3 KiB |
100
cinnamon/common-assets/misc/close-active.svg
Normal file
@@ -0,0 +1,100 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.0"
|
||||
id="Foreground"
|
||||
x="0px"
|
||||
y="0px"
|
||||
width="26"
|
||||
height="26"
|
||||
viewBox="0 0 18.909091 18.909091"
|
||||
enable-background="new 0 0 16 16"
|
||||
xml:space="preserve"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="close-active.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"><metadata
|
||||
id="metadata2399"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs2397" /><sodipodi:namedview
|
||||
inkscape:window-height="720"
|
||||
inkscape:window-width="1364"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
guidetolerance="10.0"
|
||||
gridtolerance="10.0"
|
||||
objecttolerance="10.0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#3e3e3e"
|
||||
id="base"
|
||||
showgrid="false"
|
||||
inkscape:zoom="11.313708"
|
||||
inkscape:cx="6.9788731"
|
||||
inkscape:cy="7.4229136"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="23"
|
||||
inkscape:current-layer="Foreground"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
borderlayer="true"
|
||||
inkscape:showpageshadow="false"
|
||||
inkscape:window-maximized="0"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:bbox-paths="true"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:snap-bbox-edge-midpoints="true"><inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid11246"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="-3.6363603"
|
||||
originy="-2.9090857" /></sodipodi:namedview><g
|
||||
id="g3175-4"
|
||||
transform="translate(1.8442616,0.64207471)"
|
||||
style="opacity:0.8"><g
|
||||
id="g3172-6" /></g><circle
|
||||
style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:#f70505;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path3808-4"
|
||||
cx="9.4545488"
|
||||
cy="10.181814"
|
||||
r="8" /><circle
|
||||
style="opacity:1;fill:#d8354a;fill-opacity:1;stroke:#f70505;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path3808"
|
||||
cx="9.4545488"
|
||||
cy="9.454545"
|
||||
r="8" /><g
|
||||
inkscape:label="window-close"
|
||||
id="g27275-6-6-6"
|
||||
style="display:inline;fill:#000000;fill-opacity:1"
|
||||
transform="matrix(0.72727272,0,0,0.72727272,4.1762041,2.78384)"><g
|
||||
transform="translate(-41,-760)"
|
||||
id="g27277-1-1-2"
|
||||
style="display:inline;fill:#000000;fill-opacity:1" /></g><g
|
||||
inkscape:label="window-close"
|
||||
id="g27275-6-6"
|
||||
style="display:inline;fill:#ffffff;fill-opacity:1"
|
||||
transform="matrix(0.72727273,0,0,0.72727273,4.2045495,3.5383247)"><g
|
||||
transform="translate(-41,-760)"
|
||||
id="g27277-1-1"
|
||||
style="display:inline;fill:#ffffff;fill-opacity:1"><path
|
||||
d="m 44.226475,764.17222 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 l 2.28125,2.28125 2.3125,-2.28125 c 0.265625,-0.2305 0.446672,-0.3055 0.6875,-0.3125 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 c 0.188188,0.18817 0.281242,0.45345 0.28125,0.71875 l 0,1 -1,0 c -0.265301,-1e-5 -0.530586,-0.0931 -0.71875,-0.28125 l -2.28125,-2.28125 -2.28125,2.28125 c -0.188164,0.18819 -0.45346,0.28125 -0.71875,0.28125 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 -2.28125,-2.28125 c -0.210742,-0.19463 -0.30316,-0.46925 -0.28125,-0.75 l 0,-1 z"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path27279-0-5"
|
||||
style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new"
|
||||
sodipodi:nodetypes="ccsccccccccccccccccccccccc" /></g></g></svg>
|
||||
|
After Width: | Height: | Size: 4.9 KiB |
100
cinnamon/common-assets/misc/close-hover.svg
Normal file
@@ -0,0 +1,100 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.0"
|
||||
id="Foreground"
|
||||
x="0px"
|
||||
y="0px"
|
||||
width="26"
|
||||
height="26"
|
||||
viewBox="0 0 18.909091 18.909091"
|
||||
enable-background="new 0 0 16 16"
|
||||
xml:space="preserve"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="close-hover.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"><metadata
|
||||
id="metadata2399"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs2397" /><sodipodi:namedview
|
||||
inkscape:window-height="720"
|
||||
inkscape:window-width="1364"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
guidetolerance="10.0"
|
||||
gridtolerance="10.0"
|
||||
objecttolerance="10.0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#3e3e3e"
|
||||
id="base"
|
||||
showgrid="false"
|
||||
inkscape:zoom="11.313708"
|
||||
inkscape:cx="6.9788731"
|
||||
inkscape:cy="7.4229136"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="23"
|
||||
inkscape:current-layer="Foreground"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
borderlayer="true"
|
||||
inkscape:showpageshadow="false"
|
||||
inkscape:window-maximized="0"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:bbox-paths="true"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:snap-bbox-edge-midpoints="true"><inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid11246"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="-3.6363603"
|
||||
originy="-2.9090857" /></sodipodi:namedview><g
|
||||
id="g3175-4"
|
||||
transform="translate(1.8442616,0.64207471)"
|
||||
style="opacity:0.8"><g
|
||||
id="g3172-6" /></g><circle
|
||||
style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:#f70505;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path3808-4"
|
||||
cx="9.4545488"
|
||||
cy="10.181814"
|
||||
r="8" /><circle
|
||||
style="opacity:1;fill:#ff7a80;fill-opacity:1;stroke:#f70505;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path3808"
|
||||
cx="9.4545488"
|
||||
cy="9.454545"
|
||||
r="8" /><g
|
||||
inkscape:label="window-close"
|
||||
id="g27275-6-6-6"
|
||||
style="display:inline;fill:#000000;fill-opacity:1"
|
||||
transform="matrix(0.72727272,0,0,0.72727272,4.1762041,2.78384)"><g
|
||||
transform="translate(-41,-760)"
|
||||
id="g27277-1-1-2"
|
||||
style="display:inline;fill:#000000;fill-opacity:1" /></g><g
|
||||
inkscape:label="window-close"
|
||||
id="g27275-6-6"
|
||||
style="display:inline;fill:#ffffff;fill-opacity:1"
|
||||
transform="matrix(0.72727273,0,0,0.72727273,4.2045495,3.5383247)"><g
|
||||
transform="translate(-41,-760)"
|
||||
id="g27277-1-1"
|
||||
style="display:inline;fill:#ffffff;fill-opacity:1"><path
|
||||
d="m 44.226475,764.17222 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 l 2.28125,2.28125 2.3125,-2.28125 c 0.265625,-0.2305 0.446672,-0.3055 0.6875,-0.3125 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 c 0.188188,0.18817 0.281242,0.45345 0.28125,0.71875 l 0,1 -1,0 c -0.265301,-1e-5 -0.530586,-0.0931 -0.71875,-0.28125 l -2.28125,-2.28125 -2.28125,2.28125 c -0.188164,0.18819 -0.45346,0.28125 -0.71875,0.28125 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 -2.28125,-2.28125 c -0.210742,-0.19463 -0.30316,-0.46925 -0.28125,-0.75 l 0,-1 z"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path27279-0-5"
|
||||
style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new"
|
||||
sodipodi:nodetypes="ccsccccccccccccccccccccccc" /></g></g></svg>
|
||||
|
After Width: | Height: | Size: 4.9 KiB |
100
cinnamon/common-assets/misc/close.svg
Normal file
@@ -0,0 +1,100 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.0"
|
||||
id="Foreground"
|
||||
x="0px"
|
||||
y="0px"
|
||||
width="26"
|
||||
height="26"
|
||||
viewBox="0 0 18.909091 18.909091"
|
||||
enable-background="new 0 0 16 16"
|
||||
xml:space="preserve"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="close.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"><metadata
|
||||
id="metadata2399"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs2397" /><sodipodi:namedview
|
||||
inkscape:window-height="720"
|
||||
inkscape:window-width="1364"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
guidetolerance="10.0"
|
||||
gridtolerance="10.0"
|
||||
objecttolerance="10.0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#3e3e3e"
|
||||
id="base"
|
||||
showgrid="false"
|
||||
inkscape:zoom="11.313708"
|
||||
inkscape:cx="6.9788731"
|
||||
inkscape:cy="7.4229136"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="23"
|
||||
inkscape:current-layer="Foreground"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
borderlayer="true"
|
||||
inkscape:showpageshadow="false"
|
||||
inkscape:window-maximized="0"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:bbox-paths="true"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:snap-bbox-edge-midpoints="true"><inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid11246"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="-3.6363603"
|
||||
originy="-2.9090857" /></sodipodi:namedview><g
|
||||
id="g3175-4"
|
||||
transform="translate(1.8442616,0.64207471)"
|
||||
style="opacity:0.8"><g
|
||||
id="g3172-6" /></g><circle
|
||||
style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:#f70505;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path3808-4"
|
||||
cx="9.4545488"
|
||||
cy="10.181814"
|
||||
r="8" /><circle
|
||||
style="opacity:1;fill:#f75a61;fill-opacity:1;stroke:#f70505;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path3808"
|
||||
cx="9.4545488"
|
||||
cy="9.454545"
|
||||
r="8" /><g
|
||||
inkscape:label="window-close"
|
||||
id="g27275-6-6-6"
|
||||
style="display:inline;fill:#000000;fill-opacity:1"
|
||||
transform="matrix(0.72727272,0,0,0.72727272,4.1762041,2.78384)"><g
|
||||
transform="translate(-41,-760)"
|
||||
id="g27277-1-1-2"
|
||||
style="display:inline;fill:#000000;fill-opacity:1" /></g><g
|
||||
inkscape:label="window-close"
|
||||
id="g27275-6-6"
|
||||
style="display:inline;fill:#ffffff;fill-opacity:1"
|
||||
transform="matrix(0.72727273,0,0,0.72727273,4.2045495,3.5383247)"><g
|
||||
transform="translate(-41,-760)"
|
||||
id="g27277-1-1"
|
||||
style="display:inline;fill:#ffffff;fill-opacity:1"><path
|
||||
d="m 44.226475,764.17222 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 l 2.28125,2.28125 2.3125,-2.28125 c 0.265625,-0.2305 0.446672,-0.3055 0.6875,-0.3125 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 c 0.188188,0.18817 0.281242,0.45345 0.28125,0.71875 l 0,1 -1,0 c -0.265301,-1e-5 -0.530586,-0.0931 -0.71875,-0.28125 l -2.28125,-2.28125 -2.28125,2.28125 c -0.188164,0.18819 -0.45346,0.28125 -0.71875,0.28125 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 -2.28125,-2.28125 c -0.210742,-0.19463 -0.30316,-0.46925 -0.28125,-0.75 l 0,-1 z"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path27279-0-5"
|
||||
style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new"
|
||||
sodipodi:nodetypes="ccsccccccccccccccccccccccc" /></g></g></svg>
|
||||
|
After Width: | Height: | Size: 4.8 KiB |
87
cinnamon/common-assets/misc/corner-ripple.svg
Normal file
@@ -0,0 +1,87 @@
|
||||
<?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>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
162
cinnamon/common-assets/misc/desklet-header.svg
Normal file
@@ -0,0 +1,162 @@
|
||||
<?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>
|
||||
|
After Width: | Height: | Size: 6.1 KiB |
156
cinnamon/common-assets/misc/desklet.svg
Normal file
@@ -0,0 +1,156 @@
|
||||
<?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>
|
||||
|
After Width: | Height: | Size: 5.8 KiB |
131
cinnamon/common-assets/misc/osd.svg
Normal file
@@ -0,0 +1,131 @@
|
||||
<?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>
|
||||
|
After Width: | Height: | Size: 4.9 KiB |
BIN
cinnamon/common-assets/misc/overview-hover.png
Normal file
|
After Width: | Height: | Size: 838 B |
BIN
cinnamon/common-assets/misc/overview.png
Normal file
|
After Width: | Height: | Size: 680 B |
97
cinnamon/common-assets/misc/trash-icon.svg
Normal file
|
After Width: | Height: | Size: 8.9 KiB |
167
cinnamon/common-assets/panel/activities-active.svg
Normal file
@@ -0,0 +1,167 @@
|
||||
<?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>
|
||||
|
After Width: | Height: | Size: 4.9 KiB |
158
cinnamon/common-assets/panel/activities.svg
Normal file
@@ -0,0 +1,158 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
inkscape:export-ydpi="90.000000"
|
||||
inkscape:export-xdpi="90.000000"
|
||||
width="24"
|
||||
height="24"
|
||||
id="svg11300"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="activities.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
version="1.0"
|
||||
style="display:inline;enable-background:new">
|
||||
<sodipodi:namedview
|
||||
stroke="#ef2929"
|
||||
fill="#f57900"
|
||||
id="base"
|
||||
pagecolor="#bebebe"
|
||||
bordercolor="#525252"
|
||||
borderopacity="1"
|
||||
inkscape:pageopacity="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="22.627417"
|
||||
inkscape:cx="11.305916"
|
||||
inkscape:cy="11.635941"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:showpageshadow="true"
|
||||
inkscape:window-width="1600"
|
||||
inkscape:window-height="848"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="25"
|
||||
width="400px"
|
||||
height="300px"
|
||||
inkscape:snap-nodes="true"
|
||||
inkscape:snap-bbox="true"
|
||||
gridtolerance="10000"
|
||||
inkscape:object-nodes="true"
|
||||
inkscape:snap-grids="true"
|
||||
showguides="false"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:bbox-paths="false"
|
||||
inkscape:snap-bbox-edge-midpoints="false"
|
||||
inkscape:snap-bbox-midpoints="false"
|
||||
objecttolerance="10000"
|
||||
guidetolerance="10000"
|
||||
borderlayer="true"
|
||||
showborder="true"
|
||||
guidecolor="#ff0b00"
|
||||
guideopacity="1"
|
||||
guidehicolor="#001aff"
|
||||
guidehiopacity="0.49803922">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3123"
|
||||
empspacing="4"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true" />
|
||||
<sodipodi:guide
|
||||
position="12,12"
|
||||
orientation="1,0"
|
||||
id="guide4135" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs3" />
|
||||
<metadata
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title />
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:source />
|
||||
<cc:license
|
||||
rdf:resource="" />
|
||||
<dc:title />
|
||||
<dc:subject>
|
||||
<rdf:Bag />
|
||||
</dc:subject>
|
||||
<dc:date />
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title />
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title />
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:identifier />
|
||||
<dc:relation />
|
||||
<dc:language />
|
||||
<dc:coverage />
|
||||
<dc:description />
|
||||
<dc:contributor>
|
||||
<cc:Agent>
|
||||
<dc:title />
|
||||
</cc:Agent>
|
||||
</dc:contributor>
|
||||
</cc:Work>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
style="display:inline"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Base"
|
||||
id="layer1"
|
||||
transform="translate(0,-276)">
|
||||
<rect
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect4138"
|
||||
width="2"
|
||||
height="2"
|
||||
x="5"
|
||||
y="287" />
|
||||
<rect
|
||||
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;enable-background:new"
|
||||
id="rect4138-6"
|
||||
width="2"
|
||||
height="2"
|
||||
x="11"
|
||||
y="287" />
|
||||
<rect
|
||||
style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;enable-background:new"
|
||||
id="rect4138-9"
|
||||
width="2"
|
||||
height="2"
|
||||
x="17"
|
||||
y="287" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.6 KiB |
83
cinnamon/common-assets/panel/panel-bottom.svg
Normal file
@@ -0,0 +1,83 @@
|
||||
<?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>
|
||||
|
After Width: | Height: | Size: 2.5 KiB |
83
cinnamon/common-assets/panel/panel-left.svg
Normal file
@@ -0,0 +1,83 @@
|
||||
<?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>
|
||||
|
After Width: | Height: | Size: 2.5 KiB |
83
cinnamon/common-assets/panel/panel-right.svg
Normal file
@@ -0,0 +1,83 @@
|
||||
<?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>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
79
cinnamon/common-assets/panel/panel-top.svg
Normal file
@@ -0,0 +1,79 @@
|
||||
<?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>
|
||||
|
After Width: | Height: | Size: 2.4 KiB |
151
cinnamon/common-assets/panel/window-list-active-bottom.svg
Normal file
@@ -0,0 +1,151 @@
|
||||
<?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>
|
||||
|
After Width: | Height: | Size: 4.1 KiB |
152
cinnamon/common-assets/panel/window-list-active-left.svg
Normal file
@@ -0,0 +1,152 @@
|
||||
<?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>
|
||||
|
After Width: | Height: | Size: 4.1 KiB |
152
cinnamon/common-assets/panel/window-list-active-right.svg
Normal file
@@ -0,0 +1,152 @@
|
||||
<?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>
|
||||
|
After Width: | Height: | Size: 4.1 KiB |
151
cinnamon/common-assets/panel/window-list-active-top.svg
Normal file
@@ -0,0 +1,151 @@
|
||||
<?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>
|
||||
|
After Width: | Height: | Size: 4.1 KiB |
207
cinnamon/common-assets/switch/switch-off-selected.svg
Normal file
@@ -0,0 +1,207 @@
|
||||
<?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>
|
||||
|
After Width: | Height: | Size: 7.1 KiB |
243
cinnamon/common-assets/switch/switch-on-selected.svg
Normal file
@@ -0,0 +1,243 @@
|
||||
<?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>
|
||||
|
After Width: | Height: | Size: 7.1 KiB |
203
cinnamon/dark-assets/checkbox/checkbox-checked-focused.svg
Normal file
@@ -0,0 +1,203 @@
|
||||
<?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>
|
||||
|
After Width: | Height: | Size: 6.4 KiB |
203
cinnamon/dark-assets/checkbox/checkbox-checked.svg
Normal file
@@ -0,0 +1,203 @@
|
||||
<?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>
|
||||
|
After Width: | Height: | Size: 6.4 KiB |
149
cinnamon/dark-assets/checkbox/checkbox-unchecked-focused.svg
Normal file
@@ -0,0 +1,149 @@
|
||||
<?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>
|
||||
|
After Width: | Height: | Size: 4.6 KiB |
140
cinnamon/dark-assets/checkbox/checkbox-unchecked.svg
Normal file
@@ -0,0 +1,140 @@
|
||||
<?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>
|
||||
|
After Width: | Height: | Size: 4.4 KiB |
131
cinnamon/dark-assets/menu/menu.svg
Normal file
@@ -0,0 +1,131 @@
|
||||
<?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>
|
||||
|
After Width: | Height: | Size: 4.8 KiB |
116
cinnamon/dark-assets/menu/submenu.svg
Normal file
@@ -0,0 +1,116 @@
|
||||
<?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>
|
||||
|
After Width: | Height: | Size: 3.7 KiB |
105
cinnamon/dark-assets/misc/button-box.svg
Normal file
@@ -0,0 +1,105 @@
|
||||
<?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>
|
||||
|
After Width: | Height: | Size: 3.4 KiB |
96
cinnamon/dark-assets/misc/message.svg
Normal file
@@ -0,0 +1,96 @@
|
||||
<?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>
|
||||
|
After Width: | Height: | Size: 3.1 KiB |
147
cinnamon/dark-assets/misc/modal.svg
Normal file
@@ -0,0 +1,147 @@
|
||||
<?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>
|
||||
|
After Width: | Height: | Size: 5.5 KiB |
207
cinnamon/dark-assets/switch/switch-off.svg
Normal file
@@ -0,0 +1,207 @@
|
||||
<?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>
|
||||
|
After Width: | Height: | Size: 7.1 KiB |
243
cinnamon/dark-assets/switch/switch-on.svg
Normal file
@@ -0,0 +1,243 @@
|
||||
<?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>
|
||||
|
After Width: | Height: | Size: 7.1 KiB |
BIN
cinnamon/thumbnail.png
Normal file
|
After Width: | Height: | Size: 152 KiB |
@@ -1,20 +1,23 @@
|
||||
$base_color:#1E282C;
|
||||
$bg_color: transparentize( #222e39, 0.07);
|
||||
$gray: lighten(#222e39, 15%);
|
||||
$bg_color:#222e39; //252b2f
|
||||
$main_dark: darken($bg_color, 5%);
|
||||
$gray: lighten($bg_color, 7%);
|
||||
$fg_color: #98abb2;
|
||||
$dracula: #222e39;
|
||||
$topbar_color: #98abb2;
|
||||
$topbar_color: lighten($fg_color, 40%);
|
||||
|
||||
$lime: #84ff39;
|
||||
$red: #ff007a;
|
||||
$purple: #c74ded;
|
||||
$cyan: #00e8c6;
|
||||
$yellow: #FED766;
|
||||
$orange: #F79F79;
|
||||
$g1: #00e8b7;
|
||||
$g2: #00e8b7;
|
||||
|
||||
$selected_fg_color: #f7f7f7;
|
||||
$selected_bg_color:#00e8b7;
|
||||
$selected_bg_color: #00e8b7;
|
||||
$selected_borders_color: darken($selected_bg_color, 10%);
|
||||
$borders_color: transparentize($gray, 0.7);
|
||||
$borders_color: darken(#1d2021, 3%);
|
||||
$borders_edge: transparentize(white, 0.9);
|
||||
$link_color: #13b1d5;
|
||||
$link_visited_color: transparentize($link_color,0.5);
|
||||
@@ -22,6 +25,36 @@ $top_hilight: $borders_edge;
|
||||
$top_highlight: transparentize(white, 0.9);
|
||||
$bottom_highlight: transparentize(black, 0.9);
|
||||
|
||||
$warning_color: darken($orange,10%);
|
||||
$error_color: darken( $red,5%);
|
||||
$success_color: darken($cyan,10%);
|
||||
$destructive_color: darken( #c72240,10%);
|
||||
|
||||
$osd_fg_color: $fg_color;
|
||||
$osd_bg_color: transparentize($bg_color, 0.05);
|
||||
$osd_borders_color: transparentize(black, 0.3);
|
||||
$osd_outer_borders_color: transparentize(white, 0.9);
|
||||
|
||||
$tooltip_borders_color: $osd_outer_borders_color;
|
||||
|
||||
//insensitive state derived colors
|
||||
$insensitive_fg_color: mix($fg_color, $bg_color, 50%);
|
||||
$insensitive_bg_color: mix($bg_color, $base_color, 60%);
|
||||
$insensitive_borders_color: $borders_color;
|
||||
|
||||
//colors for the backdrop state, derived from the main colors.
|
||||
$backdrop_base_color: lighten($base_color,1%);
|
||||
$backdrop_bg_color: $bg_color;
|
||||
$backdrop_fg_color: transparentize($fg_color, 0.2);
|
||||
$backdrop_insensitive_color: lighten($backdrop_bg_color, 15%);
|
||||
$backdrop_borders_color: mix($borders_color, $bg_color, 90%);
|
||||
$backdrop_dark_fill: mix($backdrop_borders_color,$backdrop_bg_color, 35%);
|
||||
|
||||
$link_visited_color: transparentize($link_color,0.5);
|
||||
$top_hilight: $borders_edge;
|
||||
$top_highlight: transparentize(white, 0.9);
|
||||
$bottom_highlight: transparentize(black, 0.9);
|
||||
|
||||
$warning_color: darken(#ffb86c,10%);
|
||||
$error_color: darken( $red,5%);
|
||||
$success_color: darken($cyan,10%);
|
||||
|
||||
@@ -3,16 +3,13 @@ $corner-radius: 2px;
|
||||
|
||||
/* GLOBALS */
|
||||
$font-size: 10;
|
||||
$font-family: "SFNS Display",Ubuntu, Cantarell, Sans-Serif;
|
||||
$_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(darken($dracula,10%),0.35);
|
||||
$topbar_bg_color: transparentize($dracula,0.05);
|
||||
|
||||
stage {
|
||||
font-family: $font-family;
|
||||
font-weight: 400;
|
||||
@include fontsize($font-size);
|
||||
color: $fg_color;
|
||||
}
|
||||
@@ -22,7 +19,7 @@ stage {
|
||||
/* Buttons */
|
||||
.button {
|
||||
@include button(normal);
|
||||
border-radius: 2px;
|
||||
border-radius: 4px;
|
||||
border-width: 0;
|
||||
padding: 4px 32px;
|
||||
&:focus { @include button(focus); }
|
||||
@@ -35,11 +32,12 @@ stage {
|
||||
|
||||
.modal-dialog-linked-button {
|
||||
padding: 10px;
|
||||
border: none;
|
||||
border: 1px solid $borders_color;
|
||||
color: $fg_color;
|
||||
background-color: transparent;
|
||||
background: $main_dark;
|
||||
text-shadow: none;
|
||||
icon-shadow: none;
|
||||
box-shadow: none;
|
||||
&:insensitive { @include button(insensitive); }
|
||||
&:active {
|
||||
@include button(active);
|
||||
@@ -52,7 +50,6 @@ stage {
|
||||
}
|
||||
&:hover {
|
||||
@include button(hover);
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
&:first-child { border-radius: 0px 0px 0px 2px; }
|
||||
@@ -114,15 +111,26 @@ StScrollBar {
|
||||
|
||||
.slider {
|
||||
height: 1em;
|
||||
color: $selected_fg_color;
|
||||
color: darken($selected_fg_color, 25%);
|
||||
border-color: black;
|
||||
-slider-height: 0.3em;
|
||||
-slider-height: 0.1em;
|
||||
-slider-background-color: $gray; //background of the trough
|
||||
-slider-border-color: black; //trough border color
|
||||
-slider-active-background-color: $selected_bg_color; //active trough fill
|
||||
-slider-active-background-color: $cyan; //active trough fill
|
||||
-slider-active-border-color: $lime; //active trough border
|
||||
-slider-border-width: 0;
|
||||
-slider-handle-radius: 6px;
|
||||
|
||||
-barlevel-height: 0.1em;
|
||||
-barlevel-background-color: $gray;
|
||||
-barlevel-border-color: black;
|
||||
-barlevel-active-background-color: $cyan;
|
||||
-barlevel-active-border-color: $lime;
|
||||
-barlevel-border-width: 0;
|
||||
-barlevel-handle-radius: 6px;
|
||||
-barlevel-overdrive-color: $cyan;
|
||||
-barlevel-overdrive-border-color: transparent;
|
||||
-barlevel-overdrive-separator-width: 0px;
|
||||
}
|
||||
|
||||
/* Check Boxes */
|
||||
@@ -134,7 +142,7 @@ StScrollBar {
|
||||
height: 22px;
|
||||
background-image: url("assets/checkbox-off.svg");
|
||||
}
|
||||
&:focus StBin { background-image: url("assets/checkbox-off-focused.svg"); }
|
||||
&:focus, &:hover StBin { background-image: url("assets/checkbox-off-focused.svg"); }
|
||||
&:checked StBin { background-image: url("assets/checkbox.svg"); }
|
||||
&:focus:checked StBin { background-image: url("assets/checkbox-focused.svg"); }
|
||||
}
|
||||
@@ -144,6 +152,9 @@ 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 {
|
||||
@@ -227,10 +238,11 @@ StScrollBar {
|
||||
spacing: 42px;
|
||||
border: none;
|
||||
& .modal-dialog-linked-button:last-child {
|
||||
color: $error_color;
|
||||
&:focus{
|
||||
color: $error_color;
|
||||
border: 1px solid transparentize($error_color, 0.7);
|
||||
@include gradient();
|
||||
color: #fff;
|
||||
&:hover, &:focus {
|
||||
background: darken($error_color, 3%);
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -502,20 +514,25 @@ StScrollBar {
|
||||
.popup-menu {
|
||||
min-width: 15em;
|
||||
background-color: transparent;
|
||||
color: $fg_color;
|
||||
.popup-menu-arrow { } //defined globally in the TOP BAR
|
||||
.popup-sub-menu {
|
||||
background-color: transparentize(darken($bg_color,20%), 0.8);
|
||||
|
||||
background-color: transparentize(darken($main_dark,57%), 0.8);
|
||||
box-shadow: $depth6;
|
||||
}
|
||||
|
||||
.popup-menu-content { padding: 1em 0em; }
|
||||
.popup-menu-content { padding: 15px 0; }
|
||||
.popup-menu-item {
|
||||
spacing: 12px;
|
||||
spacing: 5px;
|
||||
padding: 5px;
|
||||
|
||||
&:ltr { padding-right: 1.75em; padding-left: 0; }
|
||||
&:rtl { padding-right: 0; padding-left: 1.75em; }
|
||||
|
||||
&:ltr { padding: .4em 1.75em .4em 0em; }
|
||||
&:rtl { padding: .4em 0em .4em 1.75em; }
|
||||
&:checked {
|
||||
background-color: transparentize($selected_bg_color,0.1);
|
||||
@include gradient();
|
||||
// background-color: transparentize($selected_bg_color,0.1);
|
||||
color: $selected_fg_color;
|
||||
box-shadow: inset 0 1px 0px lighten($borders_color,5%);
|
||||
font-weight: bold;
|
||||
@@ -549,7 +566,7 @@ StScrollBar {
|
||||
}
|
||||
.popup-menu-boxpointer,
|
||||
.candidate-popup-boxpointer {
|
||||
-arrow-border-radius: 3px;
|
||||
-arrow-border-radius: 7px;
|
||||
-arrow-background-color: $bg_color;
|
||||
-arrow-border-width: 1px;
|
||||
-arrow-border-color: $borders_color;
|
||||
@@ -559,6 +576,8 @@ StScrollBar {
|
||||
}
|
||||
|
||||
.popup-separator-menu-item {
|
||||
background: transparent;
|
||||
&-separator {
|
||||
//-margin-horizontal: 24px;
|
||||
height: 1px; //not really the whole box
|
||||
margin: 6px 64px;
|
||||
@@ -567,6 +586,11 @@ StScrollBar {
|
||||
border-bottom-width: 1px;
|
||||
border-bottom-style: solid;
|
||||
}
|
||||
.popup-sub-menu & &-separator { //submenu separators
|
||||
margin: 0 64px 0 32px;
|
||||
background: transparent;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// Background menu
|
||||
@@ -591,8 +615,14 @@ StScrollBar {
|
||||
.level {
|
||||
height: 0.4em;
|
||||
border-radius: 0.3em;
|
||||
background-color: transparentize($gray,0.5);
|
||||
color: $osd_fg_color;
|
||||
border: 1px solid $borders_color;
|
||||
|
||||
-barlevel-height: 0.4em;
|
||||
-barlevel-background-color: transparentize(darken($main_dark,15%),0.5);
|
||||
-barlevel-active-background-color: $selected_bg_color;
|
||||
-barlevel-overdrive-color: $red;
|
||||
-barlevel-overdrive-separator-width: 0.2em;
|
||||
}
|
||||
.level-bar {
|
||||
background-color: $selected_bg_color;
|
||||
@@ -692,7 +722,7 @@ StScrollBar {
|
||||
height: 50px;
|
||||
background-color: $selected_bg_color;
|
||||
color: $selected_fg_color;
|
||||
//background-image: url("resource:///org/gnome/shell/theme/assets/ws-switch-arrow-up.png");
|
||||
border: none;
|
||||
background-size: 32px;
|
||||
border-radius: 8px;
|
||||
}
|
||||
@@ -797,23 +827,23 @@ StScrollBar {
|
||||
&:hover {
|
||||
background: lighten($topbar_bg_color, 10%);
|
||||
color: lighten($topbar_color, 10%);
|
||||
text-shadow: 0px 0px 8px rgba(0, 0, 0, 1);
|
||||
|
||||
.system-status-icon,
|
||||
.app-menu-icon > StIcon,
|
||||
.popup-menu-arrow {
|
||||
icon-shadow: 0px 0px 8px rgba(0, 0, 0, 1);
|
||||
}
|
||||
transition-duration: 200ms;
|
||||
}
|
||||
|
||||
&:active, &:overview, &:focus, &:checked {
|
||||
// Trick due to St limitations. It needs a background to draw
|
||||
// a box-shadow
|
||||
background: lighten($topbar_bg_color, 10%);
|
||||
box-shadow: inset 0 -2px 0px lighten($selected_bg_color,5%);
|
||||
color: lighten($topbar_color,10%);
|
||||
|
||||
& > .system-status-icon { icon-shadow: black 0 2px 2px; }
|
||||
box-shadow: none;
|
||||
@include gradient();
|
||||
color: $selected_fg_color;
|
||||
text-shadow: 0px 0px 2px rgba(92, 92, 92, 0.9);
|
||||
transition-duration: 200ms;
|
||||
.system-status-icon,
|
||||
.app-menu-icon > StIcon,
|
||||
.popup-menu-arrow {
|
||||
icon-shadow: 0px 0px 2px rgba(0, 0, 0, 0.9);
|
||||
}
|
||||
& > .system-status-icon { icon-shadow: red 0 2px 2px; }
|
||||
}
|
||||
|
||||
.system-status-icon { icon-size: 1.09em; padding: 0 5px; }
|
||||
@@ -823,6 +853,16 @@ 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,
|
||||
@@ -838,7 +878,7 @@ StScrollBar {
|
||||
.screencast-indicator { color: $warning_color; }
|
||||
|
||||
&.solid {
|
||||
background-color: darken($dracula,1%);
|
||||
background-color: $dracula;
|
||||
/* transition from transparent to solid */
|
||||
transition-duration: 300ms;
|
||||
|
||||
@@ -862,6 +902,11 @@ StScrollBar {
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
.calendar, .world-clocks-button, .weather-button, .events-button {
|
||||
background: transparent;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.calendar,
|
||||
.datemenu-today-button,
|
||||
.datemenu-displays-box,
|
||||
@@ -874,17 +919,21 @@ StScrollBar {
|
||||
.datemenu-displays-box { spacing: 1em; }
|
||||
|
||||
.datemenu-calendar-column {
|
||||
border: 0 solid $borders_color;
|
||||
border: 0 solid transparent;
|
||||
&:ltr { border-left-width: 1px; }
|
||||
&:rtl { border-right-width: 1px; }
|
||||
background: darken($bg_color, 0.7%);
|
||||
//@include gradient();
|
||||
}
|
||||
|
||||
.datemenu-today-button,
|
||||
.world-clocks-button,
|
||||
.weather-button,
|
||||
.events-section-title,
|
||||
.message-list-section-title {
|
||||
.message-list-section-title,
|
||||
.events-button {
|
||||
border-radius: 4px;
|
||||
color: $fg_color;
|
||||
padding: .4em;
|
||||
}
|
||||
|
||||
@@ -900,7 +949,8 @@ StScrollBar {
|
||||
.world-clocks-button,
|
||||
.weather-button,
|
||||
.events-section-title,
|
||||
.message-list-section-title {
|
||||
.message-list-section-title,
|
||||
.events-button {
|
||||
&:hover,&:focus { background-color: lighten($bg_color,5%); }
|
||||
&:active {
|
||||
color: lighten($selected_fg_color,5%);
|
||||
@@ -918,11 +968,16 @@ StScrollBar {
|
||||
.world-clocks-header,
|
||||
.weather-header,
|
||||
.events-section-title,
|
||||
.message-list-section-title {
|
||||
color: lighten($fg_color,2%);
|
||||
.message-list-section-title,
|
||||
.events-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;
|
||||
}
|
||||
@@ -956,6 +1011,12 @@ StScrollBar {
|
||||
&: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-day-base {
|
||||
font-size: 80%;
|
||||
text-align: center;
|
||||
@@ -963,14 +1024,16 @@ StScrollBar {
|
||||
padding: 0.1em;
|
||||
margin: 2px;
|
||||
border-radius: 1.4em;
|
||||
color: $fg_color;
|
||||
&:hover,&:focus { background-color: lighten($bg_color,5%); }
|
||||
&:active,&:selected {
|
||||
color: lighten($selected_fg_color,5%);
|
||||
color: $selected_fg_color;
|
||||
background-color: $selected_bg_color;
|
||||
border-color: transparent; //avoid jumparound due to today
|
||||
@include gradient();
|
||||
border-color: black; //avoid jumparound due to today
|
||||
}
|
||||
&.calendar-day-heading { //day of week heading
|
||||
color: darken($fg_color,4%);
|
||||
color: darken($fg_color, 10%);
|
||||
margin-top: 1em;
|
||||
font-size: 70%;
|
||||
}
|
||||
@@ -986,12 +1049,29 @@ StScrollBar {
|
||||
.calendar-nonwork-day {
|
||||
color: $insensitive_fg_color;
|
||||
}
|
||||
// Today
|
||||
.calendar-today {
|
||||
font-weight: bold;
|
||||
//color: lighten($fg_color,10%);
|
||||
//background-color: darken($bg_color,5%);
|
||||
border: 1px solid transparentize($borders_color,0.5);
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.calendar-day-with-events {
|
||||
color: lighten($fg_color,10%);
|
||||
font-weight: bold;
|
||||
@@ -1015,20 +1095,14 @@ StScrollBar {
|
||||
/* Message list */
|
||||
.message-list {
|
||||
width: 31.5em;
|
||||
.message-title{
|
||||
color: darken($fg_color,5%);
|
||||
|
||||
}
|
||||
.message-content{
|
||||
|
||||
.message-title, .message-content, .message-body {
|
||||
color: darken($fg_color, 5%);
|
||||
}
|
||||
}
|
||||
|
||||
.message-list-clear-button.button {
|
||||
background-color: transparent;
|
||||
border: 1px solid $borders_color;
|
||||
box-shadow: none;
|
||||
&:hover,&:focus { background-color: lighten($bg_color,5%); }
|
||||
@include button(normal);
|
||||
&:hover,&:focus { @include button(hover); }
|
||||
margin: 1.5em 1.5em 0;
|
||||
}
|
||||
|
||||
@@ -1058,11 +1132,14 @@ StScrollBar {
|
||||
|
||||
.message {
|
||||
&:hover,&:focus {
|
||||
background-color: lighten($bg_color,2%);
|
||||
box-shadow: 3px 0px 0px 0px $selected_bg_color inset;
|
||||
background-color: darken($bg_color, 1%);
|
||||
//@include gradient();
|
||||
box-shadow: 2px 0px 0px 0px $g2 inset;
|
||||
}
|
||||
border-radius: 1px;
|
||||
background: transparent;
|
||||
border: 1px solid darken($bg_color, 5%);
|
||||
border-radius: 3px;
|
||||
background: darken($bg_color, 1%);
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.message-icon-bin {
|
||||
@@ -1126,7 +1203,54 @@ 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:
|
||||
|
||||
@@ -1156,16 +1280,20 @@ StScrollBar {
|
||||
color: $fg_color;
|
||||
|
||||
border-radius: 32px; /* wish we could do 50% */
|
||||
border: 1px solid transparent;
|
||||
background: transparent;
|
||||
border: 1px solid $borders_color;
|
||||
background: darken($bg_color, 3%);
|
||||
padding: 13px;
|
||||
|
||||
&:hover, &:focus {
|
||||
//border: 1px solid $selected_bg_color;
|
||||
border: 1px solid $selected_bg_color;
|
||||
color: $selected_bg_color;
|
||||
background: transparent;
|
||||
}
|
||||
&:active { background-color: darken($selected_bg_color, 10%); color: $selected_fg_color;}
|
||||
&:active {
|
||||
background-color: darken($selected_bg_color, 10%);
|
||||
color: $selected_fg_color;
|
||||
border: 1px solid darken($selected_bg_color, 10%);
|
||||
}
|
||||
|
||||
& > StIcon { icon-size: 16px; }
|
||||
}
|
||||
@@ -1189,8 +1317,12 @@ 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;
|
||||
}
|
||||
@@ -1221,7 +1353,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; }
|
||||
.nm-dialog-scroll-view { border: 2px solid $borders_color; background: transparent;}
|
||||
.nm-dialog-header { font-weight: bold; }
|
||||
|
||||
.nm-dialog-item {
|
||||
@@ -1269,7 +1401,7 @@ StScrollBar {
|
||||
}
|
||||
.window-caption {
|
||||
spacing: 20px;
|
||||
color: $fg_color;
|
||||
color: $topbar_color;
|
||||
background-color: transparentize($osd_bg_color,.3);
|
||||
border-radius: 2px;
|
||||
padding: 4px 8px;
|
||||
@@ -1278,8 +1410,8 @@ StScrollBar {
|
||||
//search entry
|
||||
.search-entry {
|
||||
width: 320px;
|
||||
padding: 7px 9px;
|
||||
border-radius: 2px;
|
||||
padding: 9px;
|
||||
border-radius: 100px;
|
||||
border: none;
|
||||
color: $fg_color;
|
||||
background-color: transparentize($bg_color, 0.4);
|
||||
@@ -1312,7 +1444,14 @@ StScrollBar {
|
||||
}
|
||||
|
||||
.search-section { spacing: 16px; } // This should be equal to #searchResultsContent spacing
|
||||
.search-section-content { spacing: 32px; } // This is the space between the provider icon and the results container
|
||||
.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-statustext { // "no results"
|
||||
@extend %status_text;
|
||||
}
|
||||
@@ -1335,7 +1474,7 @@ StScrollBar {
|
||||
color: $topbar_color;
|
||||
background-color: $topbar_bg_color;
|
||||
padding: 6px 0;
|
||||
border: 1px solid rgba(128, 128, 128, 0.2);
|
||||
border: 1px solid $borders_color;
|
||||
border-left: 0px;
|
||||
border-radius: 0px 5px 5px 0px;
|
||||
|
||||
@@ -1364,8 +1503,9 @@ StScrollBar {
|
||||
border-radius: 7px;
|
||||
padding: 4px 12px;
|
||||
color: $topbar_color;
|
||||
background-color: transparentize($topbar_bg_color,0.01);
|
||||
background-color: $topbar_bg_color;
|
||||
text-align: center;
|
||||
border: 1px solid $borders_color;
|
||||
-x-offset: 8px;
|
||||
}
|
||||
|
||||
@@ -1392,7 +1532,13 @@ StScrollBar {
|
||||
}
|
||||
.app-view-control { //favorties | all toggle button
|
||||
padding: 4px 32px;
|
||||
&:checked { @include button(active); }
|
||||
&:checked {
|
||||
@include gradient();
|
||||
color: #000;
|
||||
}
|
||||
&:hover {
|
||||
border: none;
|
||||
}
|
||||
&:first-child {
|
||||
border-right-width: 0;
|
||||
border-radius: 3px 0 0 3px;
|
||||
@@ -1440,9 +1586,9 @@ StScrollBar {
|
||||
|
||||
.app-well-app-running-dot { //running apps indicator
|
||||
width: 4px; height: 4px;
|
||||
background-color: rgb(0, 255, 221);
|
||||
background-color: $selected_bg_color;
|
||||
border-radius: 10px !important;
|
||||
box-shadow: 0px 0px 5px 4px transparentize(rgb(0, 255, 221),0.2);
|
||||
box-shadow: 0px 0px 5px 4px transparentize($selected_bg_color,0.2);
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
@@ -1502,8 +1648,7 @@ StScrollBar {
|
||||
background-image: none;
|
||||
background-color: rgba(255, 255, 255, 0.7);
|
||||
}
|
||||
&:checked .page-indicator-icon,
|
||||
&:checked:active {
|
||||
&:checked .page-indicator-icon{
|
||||
background-image: none;
|
||||
background-color: #FFFFFF;
|
||||
transition-duration: 0s;
|
||||
@@ -1570,6 +1715,7 @@ 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; }
|
||||
@@ -1580,8 +1726,10 @@ StScrollBar {
|
||||
spacing: 1px;
|
||||
}
|
||||
.notification-button {
|
||||
padding: 4px 4px 5px;
|
||||
padding: 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;}
|
||||
@@ -1692,14 +1840,12 @@ StScrollBar {
|
||||
|
||||
.keyboard-key {
|
||||
@include button(normal);
|
||||
background: $base_color;
|
||||
background-color: $base_color;
|
||||
min-height: 2em;
|
||||
min-width: 2em;
|
||||
font-size: 14pt;
|
||||
font-weight: bold;
|
||||
border-radius: 5px;
|
||||
border: 1px solid $borders-color;
|
||||
color: white;
|
||||
&:focus { @include button(focus); }
|
||||
&:hover,&:checked { @include button(hover); }
|
||||
&:active { @include button(active);}
|
||||
|
||||
@@ -4,17 +4,11 @@
|
||||
|
||||
// drawing of depth/shadows
|
||||
|
||||
$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);
|
||||
$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);
|
||||
$depth6: 0 2px 4px 2px transparentize(black, 0.8);
|
||||
|
||||
// generic drawing of more complex things
|
||||
@@ -56,7 +50,7 @@
|
||||
//
|
||||
|
||||
@if $t==normal {
|
||||
background-color: transparentize($gray, 0.5);
|
||||
background-color: $gray;
|
||||
border-color: $borders_color;
|
||||
|
||||
@include _shadows($depth);
|
||||
@@ -149,11 +143,12 @@
|
||||
//
|
||||
|
||||
color: $fg_color;
|
||||
background-color: darken($bg_color,5%);
|
||||
box-shadow: $depth4;
|
||||
border: none;
|
||||
background-color: $main_dark;
|
||||
box-shadow: none;
|
||||
border: 1px solid $borders_color;
|
||||
text-shadow: 0 1px black;
|
||||
icon-shadow: 0 1px black;
|
||||
border: 1px solid $borders_color;
|
||||
}
|
||||
@if $t==focus {
|
||||
//
|
||||
@@ -162,11 +157,11 @@
|
||||
$_bg: if($c!=$osd_bg_color, transparentize($c, 0.5),
|
||||
$osd_bg_color);
|
||||
|
||||
color: $osd_fg_color;
|
||||
color: $selected_bg_color;
|
||||
text-shadow: 0 1px black;
|
||||
icon-shadow: 0 1px black;
|
||||
box-shadow: $depth5;
|
||||
border: 1px solid transparentize($selected_bg_color, 0.7);
|
||||
box-shadow: none;
|
||||
border: 1px solid $borders_color;
|
||||
}
|
||||
|
||||
@else if $t==hover {
|
||||
@@ -174,12 +169,11 @@
|
||||
// active osd button
|
||||
//
|
||||
$_bg: if($c!=$osd_bg_color, transparentize($c, 0.3),
|
||||
lighten($osd_bg_color,10%));
|
||||
lighten($main_dark, 2%));
|
||||
|
||||
color: $selected_bg_color;
|
||||
background-color: $_bg;
|
||||
box-shadow: $depth5;
|
||||
border: none;
|
||||
border: 1px solid $borders_color;
|
||||
text-shadow: 0 1px black;
|
||||
icon-shadow: 0 1px black;
|
||||
|
||||
@@ -195,8 +189,7 @@
|
||||
// This should be none, but it's creating some issues with borders, so to
|
||||
// workaround it for now, use inset wich goes through a different code path.
|
||||
// see https://bugzilla.gnome.org/show_bug.cgi?id=752934
|
||||
box-shadow: $depth5;
|
||||
border: none;
|
||||
border: 1px solid $borders_color;
|
||||
text-shadow: none;
|
||||
icon-shadow: none;
|
||||
}
|
||||
@@ -228,3 +221,9 @@
|
||||
icon-shadow: none;
|
||||
}
|
||||
}
|
||||
|
||||
@mixin gradient($c1: $g1, $c2: $g2, $dir: horizontal) {
|
||||
background-gradient-start: $c1;
|
||||
background-gradient-end: $c2;
|
||||
background-gradient-direction: $dir;
|
||||
}
|
||||
1
gnome-shell/_extensions.scss
Normal file
@@ -0,0 +1 @@
|
||||
@import "extensions/_openweather"
|
||||
@@ -19,7 +19,7 @@
|
||||
enable-background="new 0 0 16 16"
|
||||
xml:space="preserve"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.91 r13725"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||
sodipodi:docname="close-window.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"><metadata
|
||||
id="metadata2399"><rdf:RDF><cc:Work
|
||||
@@ -39,7 +39,7 @@
|
||||
inkscape:vp_z="16 : 8 : 1"
|
||||
inkscape:persp3d-origin="8 : 5.3333333 : 1"
|
||||
id="perspective2401" /></defs><sodipodi:namedview
|
||||
inkscape:window-height="704"
|
||||
inkscape:window-height="713"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
@@ -51,11 +51,11 @@
|
||||
pagecolor="#000000"
|
||||
id="base"
|
||||
showgrid="true"
|
||||
inkscape:zoom="32.000001"
|
||||
inkscape:cx="12.529333"
|
||||
inkscape:cy="16.069558"
|
||||
inkscape:zoom="8.898926"
|
||||
inkscape:cx="-4.1520939"
|
||||
inkscape:cy="19.955159"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-y="25"
|
||||
inkscape:current-layer="Foreground"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
@@ -72,11 +72,15 @@
|
||||
clip-rule="evenodd"
|
||||
d="m 0.7272726,11.636364 c 0,-6.0245464 4.8845457,-10.90909163 10.9090924,-10.90909163 6.024543,0 10.909089,4.88454523 10.909089,10.90909163 0,6.024546 -4.884546,10.909091 -10.909089,10.909091 -6.0245467,0 -10.9090924,-4.884545 -10.9090924,-10.909093 z"
|
||||
id="path2394-32"
|
||||
style="color:#000000;fill:#ff5f50;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.45454550000000005;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
style="color:#000000;fill:#00e8b7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.4545455;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
sodipodi:nodetypes="csssc"
|
||||
inkscape:connector-curvature="0" /><g
|
||||
id="g3172-6"
|
||||
transform="translate(4.7533483,2.8238929)" /><path
|
||||
style="color:#000000;clip-rule:evenodd;display:inline;overflow:visible;visibility:visible;fill:#1a1e21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.30909085;marker:none;enable-background:accumulate"
|
||||
d="m 11.636363,1.8181816 c -5.4220897,0 -9.8181798,4.3960904 -9.8181798,9.8181824 0,5.422093 4.3960901,9.818181 9.8181798,9.818181 5.422089,0 9.818182,-4.396091 9.818182,-9.818181 0,-5.422092 -4.396093,-9.8181824 -9.818182,-9.8181824 z"
|
||||
id="path2394-32-3"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 8.9519832,7.2814498 2.6448998,2.6676769 2.68113,-2.6676769 c 1.118427,-0.9273761 2.760725,0.5779314 1.666643,1.6810017 l -2.644896,2.6676785 2.608666,2.631133 c 1.305091,1.315814 -0.493499,2.86379 -1.666647,1.681003 L 11.59688,13.274588 8.9519805,15.942266 C 7.9249237,16.97776 6.2096464,15.345788 7.285332,14.261263 L 9.9302312,11.63013 7.285332,8.9624515 C 6.1503592,7.8181541 7.8408705,6.1612084 8.9519832,7.2814498 z"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path27279-0-5"
|
||||
|
||||
|
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 4.7 KiB |
13
gnome-shell/extensions/_openweather.scss
Normal file
@@ -0,0 +1,13 @@
|
||||
.openweather-current-summarybox,
|
||||
.openweather-forecast-icon,
|
||||
.openweather-current-databox-captions,
|
||||
.openweather-current-databox-values,
|
||||
.openweather-current-icon,
|
||||
.openweather-forecast-summary,
|
||||
.openweather-forecast-temperature{
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.openweather-current-databox-captions, .openweather-forecast-day {
|
||||
color: $selected_bg_color;
|
||||
}
|
||||
@@ -1,5 +1,6 @@
|
||||
$subtheme: 'main';
|
||||
|
||||
@import "_colors"; //use gtk colors
|
||||
@import "_drawing";
|
||||
@import "_common";
|
||||
@import "colors"; //use gtk colors
|
||||
@import "drawing";
|
||||
@import "common";
|
||||
@import "extensions"
|
||||
@@ -1,6 +1,8 @@
|
||||
style "theme-panel" = "dark" {
|
||||
xthickness = 1
|
||||
ythickness = 1
|
||||
bg[NORMAL] = @panel_bg_color
|
||||
fg[NORMAL] = @panel_fg_color
|
||||
}
|
||||
|
||||
style "xfdesktop-icon-view" {
|
||||
|
||||
|
Before Width: | Height: | Size: 195 KiB After Width: | Height: | Size: 192 KiB |
|
Before Width: | Height: | Size: 476 B After Width: | Height: | Size: 40 B |
1
gtk-2.0/assets/checkbox-checked-active.png
Symbolic link
@@ -0,0 +1 @@
|
||||
../../assets/checkbox-checked-active.png
|
||||
|
Before Width: | Height: | Size: 476 B After Width: | Height: | Size: 40 B |
|
Before Width: | Height: | Size: 470 B After Width: | Height: | Size: 39 B |
1
gtk-2.0/assets/checkbox-checked-hover.png
Symbolic link
@@ -0,0 +1 @@
|
||||
../../assets/checkbox-checked-hover.png
|
||||
|
Before Width: | Height: | Size: 470 B After Width: | Height: | Size: 39 B |
|
Before Width: | Height: | Size: 482 B After Width: | Height: | Size: 45 B |
1
gtk-2.0/assets/checkbox-checked-insensitive.png
Symbolic link
@@ -0,0 +1 @@
|
||||
../../assets/checkbox-checked-insensitive.png
|
||||
|
Before Width: | Height: | Size: 482 B After Width: | Height: | Size: 45 B |
|
Before Width: | Height: | Size: 470 B After Width: | Height: | Size: 33 B |
1
gtk-2.0/assets/checkbox-checked.png
Symbolic link
@@ -0,0 +1 @@
|
||||
../../assets/checkbox-checked.png
|
||||
|
Before Width: | Height: | Size: 470 B After Width: | Height: | Size: 33 B |
|
Before Width: | Height: | Size: 307 B After Width: | Height: | Size: 38 B |
1
gtk-2.0/assets/checkbox-mixed-active.png
Symbolic link
@@ -0,0 +1 @@
|
||||
../../assets/checkbox-mixed-active.png
|
||||
|
Before Width: | Height: | Size: 307 B After Width: | Height: | Size: 38 B |
|
Before Width: | Height: | Size: 307 B After Width: | Height: | Size: 37 B |
1
gtk-2.0/assets/checkbox-mixed-hover.png
Symbolic link
@@ -0,0 +1 @@
|
||||
../../assets/checkbox-mixed-hover.png
|
||||
|
Before Width: | Height: | Size: 307 B After Width: | Height: | Size: 37 B |
|
Before Width: | Height: | Size: 297 B After Width: | Height: | Size: 43 B |
1
gtk-2.0/assets/checkbox-mixed-insensitive.png
Symbolic link
@@ -0,0 +1 @@
|
||||
../../assets/checkbox-mixed-insensitive.png
|
||||
|
Before Width: | Height: | Size: 297 B After Width: | Height: | Size: 43 B |
|
Before Width: | Height: | Size: 307 B After Width: | Height: | Size: 31 B |
1
gtk-2.0/assets/checkbox-mixed.png
Symbolic link
@@ -0,0 +1 @@
|
||||
../../assets/checkbox-mixed.png
|
||||
|
Before Width: | Height: | Size: 307 B After Width: | Height: | Size: 31 B |
|
Before Width: | Height: | Size: 322 B After Width: | Height: | Size: 42 B |
1
gtk-2.0/assets/checkbox-unchecked-active.png
Symbolic link
@@ -0,0 +1 @@
|
||||
../../assets/checkbox-unchecked-active.png
|
||||
|
Before Width: | Height: | Size: 322 B After Width: | Height: | Size: 42 B |
|
Before Width: | Height: | Size: 352 B After Width: | Height: | Size: 41 B |
1
gtk-2.0/assets/checkbox-unchecked-hover.png
Symbolic link
@@ -0,0 +1 @@
|
||||
../../assets/checkbox-unchecked-hover.png
|
||||
|
Before Width: | Height: | Size: 352 B After Width: | Height: | Size: 41 B |
|
Before Width: | Height: | Size: 314 B After Width: | Height: | Size: 47 B |
1
gtk-2.0/assets/checkbox-unchecked-insensitive.png
Symbolic link
@@ -0,0 +1 @@
|
||||
../../assets/checkbox-unchecked-insensitive.png
|
||||
|
Before Width: | Height: | Size: 314 B After Width: | Height: | Size: 47 B |
|
Before Width: | Height: | Size: 305 B After Width: | Height: | Size: 35 B |
1
gtk-2.0/assets/checkbox-unchecked.png
Symbolic link
@@ -0,0 +1 @@
|
||||
../../assets/checkbox-unchecked.png
|
||||
|
Before Width: | Height: | Size: 305 B After Width: | Height: | Size: 35 B |
|
Before Width: | Height: | Size: 315 B After Width: | Height: | Size: 324 B |
|
Before Width: | Height: | Size: 316 B After Width: | Height: | Size: 322 B |
|
Before Width: | Height: | Size: 750 B After Width: | Height: | Size: 37 B |
1
gtk-2.0/assets/radio-checked-active.png
Symbolic link
@@ -0,0 +1 @@
|
||||
../../assets/radio-checked-active.png
|
||||
|
Before Width: | Height: | Size: 750 B After Width: | Height: | Size: 37 B |
|
Before Width: | Height: | Size: 750 B After Width: | Height: | Size: 36 B |
1
gtk-2.0/assets/radio-checked-hover.png
Symbolic link
@@ -0,0 +1 @@
|
||||
../../assets/radio-checked-hover.png
|
||||
|
Before Width: | Height: | Size: 750 B After Width: | Height: | Size: 36 B |
|
Before Width: | Height: | Size: 490 B After Width: | Height: | Size: 42 B |
1
gtk-2.0/assets/radio-checked-insensitive.png
Symbolic link
@@ -0,0 +1 @@
|
||||
../../assets/radio-checked-insensitive.png
|
||||
|
Before Width: | Height: | Size: 490 B After Width: | Height: | Size: 42 B |
|
Before Width: | Height: | Size: 750 B After Width: | Height: | Size: 30 B |
1
gtk-2.0/assets/radio-checked.png
Symbolic link
@@ -0,0 +1 @@
|
||||
../../assets/radio-checked.png
|
||||
|
Before Width: | Height: | Size: 750 B After Width: | Height: | Size: 30 B |
|
Before Width: | Height: | Size: 467 B After Width: | Height: | Size: 35 B |
1
gtk-2.0/assets/radio-mixed-active.png
Symbolic link
@@ -0,0 +1 @@
|
||||
../../assets/radio-mixed-active.png
|
||||
|
Before Width: | Height: | Size: 467 B After Width: | Height: | Size: 35 B |