Add cinnamon theme
|
@ -121,6 +121,12 @@ install() {
|
|||
cp -ur ${SRC_DIR}/xfwm4/assets${color}/*.png ${THEME_DIR}/xfwm4
|
||||
cp -ur ${SRC_DIR}/xfwm4/themerc${color} ${THEME_DIR}/xfwm4/themerc
|
||||
|
||||
mkdir -p ${THEME_DIR}/cinnamon
|
||||
cp -ur ${SRC_DIR}/cinnamon/cinnamon${color}.css ${THEME_DIR}/cinnamon/cinnamon.css
|
||||
cp -ur ${SRC_DIR}/cinnamon/common-assets ${THEME_DIR}/cinnamon/assets
|
||||
cp -ur ${SRC_DIR}/cinnamon/assets${color}/*.svg ${THEME_DIR}/cinnamon/assets
|
||||
cp -ur ${SRC_DIR}/cinnamon/thumbnail${color}.png ${THEME_DIR}/cinnamon/thumbnail.png
|
||||
|
||||
mkdir -p ${THEME_DIR}/plank
|
||||
cp -ur ${SRC_DIR}/plank/${name}${color}/*.theme ${THEME_DIR}/plank
|
||||
}
|
||||
|
|
|
@ -44,3 +44,8 @@ for color in "${_COLOR_VARIANTS[@]}"; do
|
|||
echo "== Generating the gnome-shell${color}${trans}.css..."
|
||||
done
|
||||
done
|
||||
|
||||
for color in "${_COLOR_VARIANTS[@]}"; do
|
||||
sassc $SASSC_OPT src/cinnamon/cinnamon${color}.{scss,css}
|
||||
echo "==> Generating the cinnamon${color}.css..."
|
||||
done
|
||||
|
|
|
@ -0,0 +1,159 @@
|
|||
// When color definition differs for dark and light variant,
|
||||
// it gets @if ed depending on $variant
|
||||
|
||||
// Base colors
|
||||
$base_color: if($variant =='light', #ffffff, #242424);
|
||||
$text_color: if($variant == 'light', #363636, #dadada);
|
||||
$bg_color: if($variant =='light', #f5f5f5, #333333);
|
||||
$fg_color: if($variant =='light', #242424, #dedede);
|
||||
$alt_fg_color: if($variant=='light', #383838, #3d3d3d);
|
||||
|
||||
$selected_fg_color: #ffffff;
|
||||
$selected_bg_color: if($variant == 'light', #0046DB, #498dff);
|
||||
|
||||
$selected_borders_color: darken($selected_bg_color, 20%);
|
||||
$borders_color: if($variant =='light', rgba(black, 0.15), rgba(white, 0.12));
|
||||
$borders_bottom_color: if($variant =='light', rgba(black, 0.27), rgba(white, 0.12));
|
||||
$dark_borders_color: if($variant =='light', rgba(black, 0.15), rgba(black, 0.15));
|
||||
$solid_borders_color: if($variant == 'light', darken($bg_color, 15%), lighten($bg_color, 8%));
|
||||
$dark_solid_borders_color: if($variant == 'light', darken($bg_color, 15%), darken($bg_color, 5%));
|
||||
$highlight: if($variant =='light', rgba(white, 0.65), rgba(white, 0.15));
|
||||
|
||||
// Link colors
|
||||
$link_color: #3484e2;
|
||||
$link_visited_color: if($variant == 'light', lighten($text_color, 10%), darken($text_color, 15%));
|
||||
|
||||
// Theme colors
|
||||
$selection_mode_bg: #6887cd;
|
||||
$selection_mode_fg: $selected_fg_color;
|
||||
$warning_color: #F27835;
|
||||
$error_color: #FC4138;
|
||||
$warning_fg_color: white;
|
||||
$error_fg_color: white;
|
||||
$success_color: #71c837;
|
||||
$destructive_color: #f8464c;
|
||||
$suggested_color: #3484e2;
|
||||
$destructive_fg_color: white;
|
||||
$suggested_fg_color: white;
|
||||
|
||||
$progress_color: $selected_bg_color;
|
||||
$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%));
|
||||
|
||||
// Headerbar colors
|
||||
$header_bg: if($variant == 'light', #e5e5e5, #373737);
|
||||
$header_highlight: if($variant == 'dark', #434343, #f5f5f5);
|
||||
$header_top: if($variant == 'dark', #434343, #e9e9e9);
|
||||
$header_middle: if($variant == 'dark', #3e3e3e, #e2e2e2);
|
||||
$header_bottom: if($variant == 'dark', #383838, #d2d2d2);
|
||||
|
||||
$header_bg_backdrop: if($variant == 'light', #F6F6F6, #313131);
|
||||
$header_border: if($variant=='light', #a1a1a1, #101010);
|
||||
|
||||
$header_fg: if($variant=='light', #575757, #FDFDFD);
|
||||
|
||||
// Sidebar colors
|
||||
$dark_sidebar_bg: white;
|
||||
@if $transparency=='true' and $variant=='light' { $dark_sidebar_bg: transparentize(#f6f6f6, 0.06); }
|
||||
@if $transparency=='false' and $variant=='light' { $dark_sidebar_bg: #f6f6f6; }
|
||||
@if $transparency=='true' and $variant=='dark' { $dark_sidebar_bg: transparentize(#3B3B3B, 0.06); }
|
||||
@if $transparency=='false' and $variant=='dark' { $dark_sidebar_bg: #3B3B3B; }
|
||||
|
||||
$dark_sidebar_fg: $text_color;
|
||||
$dark_sidebar_border: if($variant=='light', darken(opacify($dark_sidebar_bg, 1), 5%), lighten(opacify($dark_sidebar_bg, 1), 5%));
|
||||
$sidebar_theme_color: if($variant=='light', #C7C7C7, rgba(#C7C7C7, 0.25));
|
||||
|
||||
//OSD colors
|
||||
$osd_fg_color: $text_color;
|
||||
$osd_bg_color: rgba($base_color, 0.95);
|
||||
|
||||
$osd_button_bg: rgba(lighten($osd_bg_color, 22%), 0.96);
|
||||
$osd_button_border: $dark_borders_color;
|
||||
|
||||
$osd_entry_bg: rgba(lighten($osd_bg_color, 22%), 0.96);
|
||||
$osd_entry_border: $dark_borders_color;
|
||||
|
||||
$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: $borders_color;
|
||||
|
||||
// Panel colors
|
||||
$panel_bg: if($variant == 'light', #FEFEFE, #2a2a2a);
|
||||
$panel_fg: $text_color;
|
||||
$panel_top_color: if($variant == 'dark', #333333, #f5f5f5);
|
||||
$panel_bottom_color: if($variant == 'dark', #2a2a2a, #e2e2e2);
|
||||
$panel_border_color: if($variant =='light', rgba(black, 0.2), rgba(black, 0.72));
|
||||
|
||||
// Entry colors
|
||||
$entry_bg: if($variant=='light', $base_color, lighten($base_color, 0%));
|
||||
$entry_border: $borders_color;
|
||||
$entry_bottom_border: $borders_bottom_color;
|
||||
$entry_highlight: rgba($selection_mode_bg, 0.75);
|
||||
|
||||
$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 colors
|
||||
$button_bg: if($variant == 'light', white, #656565);
|
||||
$button_active_top: if($variant == 'light', #7ba3f7, #3d6be3);
|
||||
$button_active_bottom: if($variant == 'light', #3d6ffc, #3861ca);
|
||||
$button_active_hover_top: if($variant == 'light', #82a8f7, #3b65e3);
|
||||
$button_active_hover_bottom: if($variant == 'light', #4675f7, #365cca);
|
||||
|
||||
$button_border: $borders_color;
|
||||
$button_bottom_border: $entry_bottom_border;
|
||||
$button_active_border: #487afa;
|
||||
$button_active_top_border: #6290f7;
|
||||
$button_active_bottom_border: #3767fc;
|
||||
|
||||
$header_button_bg: if($darker == 'true' or $variant == 'dark', lighten($header_bg, 15%), white);
|
||||
$header_button_hover_bg: if($darker == 'true' or $variant == 'dark', lighten($header_bg, 25%), #fafafa);
|
||||
$header_button_active_bg: if($darker == 'true' or $variant == 'dark', lighten($header_bg, 35%), #888888);
|
||||
$header_button_checked_bg: if($darker == 'true' or $variant == 'dark', lighten($header_bg, 45%), #686868);
|
||||
$header_button_border: $borders_color;
|
||||
|
||||
// Button borders and highlights colors
|
||||
$button_highlight: if($variant == 'light', white, rgba(white, 0.1));
|
||||
|
||||
$button_borders: if($variant == 'light', $button_border, $dark_borders_color);
|
||||
$button_borders_top: if($variant == 'light', $button_border, $dark_borders_color);
|
||||
$button_borders_bottom: if($variant == 'light', $button_bottom_border, $dark_borders_color);
|
||||
|
||||
$button_borders_hover: if($variant == 'light', $button_border, $dark_borders_color);
|
||||
$button_borders_hover_top: if($variant == 'light', $button_border, $dark_borders_color);
|
||||
$button_borders_hover_bottom: if($variant == 'light', $button_bottom_border, $dark_borders_color);
|
||||
|
||||
$button_borders_active: if($variant == 'light', $button_active_border, $dark_borders_color);
|
||||
$button_borders_active_top: if($variant == 'light', $button_active_top_border, $dark_borders_color);
|
||||
$button_borders_active_bottom: if($variant == 'light', $button_active_bottom_border, $dark_borders_color);
|
||||
|
||||
$header_button_highlight: if($variant == 'light', white, #767676);
|
||||
$header_button_hover_highlight: if($variant == 'light', white, #868686);
|
||||
$header_button_checked_highlight: if($variant == 'light', $borders_color, #cecece);
|
||||
|
||||
//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;
|
||||
|
||||
// Titlebar
|
||||
$titlebar_gradient_a: $header_highlight;
|
||||
$titlebar_gradient_b: $header_middle;
|
|
@ -0,0 +1,548 @@
|
|||
// Shadows
|
||||
$shadow_0: 0 1px 2px 0 rgba(0, 0, 0, 0.1), 0 2px 2px 0 rgba(0, 0, 0, 0.05); // Slider hover shadow
|
||||
$shadow_1: 0 1px 1px 0 rgba(0, 0, 0, 0.12), 0 1px 2px 0 rgba(0, 0, 0, 0.06); // Header-button shadow
|
||||
$shadow_2: 0 1px 1px 0 rgba(16, 16, 16, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.05); // Slider normal shadow
|
||||
$shadow_3: 0 1px 1px 0 rgba(0, 0, 0, 0.03); // Normal button shadow
|
||||
$shadow_4: 0 2px 3px 0 rgba(0, 0, 0, 0.2), 0 3px 5px 0 rgba(0, 0, 0, 0.15); // Switch-slider hover shadow
|
||||
$shadow_5: 0 1px 2px 0 rgba(0, 0, 0, 0.15), 0 2px 3px 0 rgba(0, 0, 0, 0.1); // Switch-slider normal shadow
|
||||
$text_shadow: 0 -1px rgba(#ffffff, 0.04), -1px 0 rgba(0, 0, 0, 0.05), 1px 0 rgba(0, 0, 0, 0.05),
|
||||
0 1px rgba(0, 0, 0, 0.3), 0 2px rgba(0, 0, 0, 0.05); // text and icon shadow
|
||||
|
||||
// Transitions
|
||||
$ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
||||
$transition_1: all 0.2s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0, 0, 0.2, 1);
|
||||
$transition_2: all 0.1s cubic-bezier(0, 0, 0.2, 1);
|
||||
$shadow_transition: box-shadow 0.2s cubic-bezier(0, 0, 0.2, 1);
|
||||
$button_transition: all 100ms $ease-out-quad;
|
||||
$backdrop_transition: 200ms ease-out;
|
||||
|
||||
// Images
|
||||
$button_active_image: linear-gradient(0deg, $button_active_bottom 0%, $button_active_top 100%);
|
||||
$button_active_hover_image: linear-gradient(0deg, $button_active_hover_bottom 0%, $button_active_hover_top 100%);
|
||||
|
||||
$headerbar_bg_image: linear-gradient(0deg, $header_bottom 0%, $header_middle 50%, $header_top 100%);
|
||||
$headerbar_top_image: linear-gradient(0deg, $header_middle 0%, $header_top 100%);
|
||||
$header_button_image: if($variant=='light', linear-gradient( 0deg, #f1f1f1 0%, #fdfdfd 95%, #fefefe 100%),
|
||||
linear-gradient( 0deg, #636363 0%, #696969 100%));
|
||||
$header_button_hover_image: if($variant=='light', linear-gradient( 0deg, #f8f8f8 0%, #ffffff 100%),
|
||||
linear-gradient( 0deg, #707070 0%, #767676 100%));
|
||||
$header_button_checked_image: if($variant=='light', linear-gradient( 0deg, #656565 0%, #707070 100%),
|
||||
linear-gradient( 0deg, #c1c1c1 0%, #c6c6c6 100%));
|
||||
|
||||
$menubar_bg_image: linear-gradient(0deg, $header_bottom 0%, $header_middle 100%);
|
||||
|
||||
// Animations
|
||||
$switch_animation: switch_ripple_effect 0.3s cubic-bezier(0, 0, 0.2, 1);
|
||||
|
||||
@keyframes switch_ripple_effect {
|
||||
from {
|
||||
background-image: radial-gradient(circle farthest-corner at center,
|
||||
$success_color 0%,
|
||||
transparent 0%);
|
||||
}
|
||||
|
||||
to {
|
||||
background-image: radial-gradient(circle farthest-corner at center,
|
||||
$success_color 100%,
|
||||
transparent 0%);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes header_ripple_effect {
|
||||
from {
|
||||
background-image: radial-gradient(circle farthest-corner at center,
|
||||
$header_bg 0%,
|
||||
transparent 0%);
|
||||
}
|
||||
|
||||
to {
|
||||
background-image: radial-gradient(circle farthest-corner at center,
|
||||
$header_bg 100%,
|
||||
transparent 0%);
|
||||
}
|
||||
}
|
||||
|
||||
// Drawing mixins
|
||||
|
||||
// Solid color image
|
||||
@function _solid($c) {
|
||||
@return linear-gradient(to bottom, $c, $c);
|
||||
}
|
||||
|
||||
// Entries
|
||||
|
||||
@mixin entry($t) {
|
||||
//
|
||||
// Entries drawing function
|
||||
//
|
||||
// $t: entry type
|
||||
//
|
||||
|
||||
@if $t==normal {
|
||||
//
|
||||
// normal entry
|
||||
//
|
||||
color: $text_color;
|
||||
border-color: $entry_border;
|
||||
border-bottom-color: $entry_bottom_border;
|
||||
background-color: $entry_bg;
|
||||
@if $variant == 'light' { box-shadow: $shadow_3; }
|
||||
}
|
||||
|
||||
@if $t==focus {
|
||||
//
|
||||
// focused entry
|
||||
//
|
||||
color: $text_color;
|
||||
border-color: $selection_mode_bg;
|
||||
background-color: $entry_bg;
|
||||
@if $variant == 'dark' { box-shadow: 0 0 0 2px $entry_highlight; }
|
||||
@if $variant == 'light' { box-shadow: 0 1px 1px 0 transparent, // set the same size transparent shadow for entry transition
|
||||
0 0 0 2px $entry_highlight; }
|
||||
}
|
||||
|
||||
@if $t==insensitive {
|
||||
//
|
||||
// insensitive entry
|
||||
//
|
||||
color: $insensitive_fg_color;
|
||||
border-color: $entry_border;
|
||||
background-color: transparentize($entry_bg, 0.45);
|
||||
}
|
||||
|
||||
@if $t==header-normal {
|
||||
//
|
||||
// normal header-bar entry
|
||||
//
|
||||
color: $header_fg;
|
||||
border-bottom-color: $entry_border;
|
||||
background-color: $header_button_bg;
|
||||
background-image: $header_button_image;
|
||||
box-shadow: none;
|
||||
|
||||
@if $variant == 'dark' {
|
||||
border: none;
|
||||
box-shadow: inset 0 1px $header_button_highlight,
|
||||
0 0 0 2px transparent,
|
||||
inset 0 0 0 1px transparent;
|
||||
}
|
||||
|
||||
image, image:hover { color: inherit; }
|
||||
}
|
||||
|
||||
@if $t==header-focus {
|
||||
//
|
||||
// focused header-bar entry
|
||||
//
|
||||
border-color: $selection_mode_bg;
|
||||
background-image: none;
|
||||
|
||||
@if $variant == 'light' { box-shadow: 0 0 0 2px $entry_highlight; }
|
||||
|
||||
@if $variant == 'dark' {
|
||||
border: none;
|
||||
box-shadow: inset 0 1px transparent,
|
||||
0 0 0 2px $entry_highlight,
|
||||
inset 0 0 0 1px $selection_mode_bg;
|
||||
}
|
||||
}
|
||||
|
||||
@if $t==header-insensitive {
|
||||
//
|
||||
// insensitive header-bar entry
|
||||
//
|
||||
color: transparentize($header_fg, 0.45);
|
||||
background-color: transparentize($header_entry_bg, 0.15);
|
||||
|
||||
@if $variant == 'dark' {
|
||||
box-shadow: inset 0 1px $header_button_highlight;
|
||||
}
|
||||
}
|
||||
|
||||
@else if $t==osd {
|
||||
//
|
||||
// normal osd entry
|
||||
//
|
||||
color: $osd_fg_color;
|
||||
border-color: $osd_entry_border;
|
||||
background-color: $osd_entry_bg;
|
||||
|
||||
image, image:hover { color: inherit; }
|
||||
}
|
||||
|
||||
@else if $t==osd-focus {
|
||||
//
|
||||
// active osd entry
|
||||
//
|
||||
color: $selected_fg_color;
|
||||
border-color: darken($selection_mode_bg, 5%);
|
||||
background-color: $selected_bg_color;
|
||||
}
|
||||
|
||||
@else if $t==osd-insensitive {
|
||||
//
|
||||
// insensitive osd entry
|
||||
//
|
||||
color: $osd_fg_color;
|
||||
background-color: transparentize($osd_entry_bg, 0.15);
|
||||
}
|
||||
}
|
||||
|
||||
// Buttons
|
||||
|
||||
@mixin button($t, $actionb_bg:red, $actionb_fg: green) {
|
||||
//
|
||||
// Button drawing function
|
||||
//
|
||||
// $t: button type,
|
||||
// $actionb_bg, $actionb_fg: used for destructive and suggested action buttons
|
||||
|
||||
@if $t==normal {
|
||||
//
|
||||
// normal button
|
||||
//
|
||||
color: $fg_color;
|
||||
border-color: $button_borders;
|
||||
border-top-color: $button_borders_top;
|
||||
border-bottom-color: $button_borders_bottom;
|
||||
background-color: $button_bg;
|
||||
@if $variant=='light' { box-shadow: $shadow_3; }
|
||||
@if $variant=='dark' {
|
||||
box-shadow: inset 0 1px $button_highlight, $shadow_3;
|
||||
// background-clip: border-box;
|
||||
}
|
||||
}
|
||||
|
||||
@else if $t==hover {
|
||||
//
|
||||
// hovered button
|
||||
//
|
||||
color: if($variant == 'light', darken($fg_color, 10%), lighten($fg_color, 10%));
|
||||
border-color: $button_borders_hover;
|
||||
border-top-color: $button_borders_hover_top;
|
||||
border-bottom-color: $button_borders_hover_bottom;
|
||||
background-color: if($variant=='light', darken($button_bg, 3%), lighten($button_bg, 3%));
|
||||
@if $variant=='light' { box-shadow: none; }
|
||||
@if $variant=='dark' {
|
||||
box-shadow: inset 0 1px rgba($button_highlight, 0.12), $shadow_3;
|
||||
// background-clip: border-box;
|
||||
}
|
||||
}
|
||||
|
||||
@else if $t==active {
|
||||
//
|
||||
// pushed button
|
||||
//
|
||||
color: $selected_fg_color;
|
||||
background-color: $selected_bg_color;
|
||||
border-color: $button_borders_active;
|
||||
border-top-color: $button_borders_active_top;
|
||||
border-bottom-color: $button_borders_active_bottom;
|
||||
background-image: $button_active_image;
|
||||
@if $variant=='light' { box-shadow: none; }
|
||||
}
|
||||
|
||||
@else if $t==insensitive {
|
||||
//
|
||||
// insensitive button
|
||||
//
|
||||
label, & { color: $insensitive_fg_color; }
|
||||
|
||||
border-color: if($variant == 'light', $button_border, $dark_borders_color);
|
||||
background-color: rgba($button_bg, 0.55);
|
||||
@if $variant=='light' { box-shadow: $shadow_3; }
|
||||
}
|
||||
|
||||
@else if $t==insensitive-active {
|
||||
//
|
||||
// insensitive pushed button
|
||||
//
|
||||
label, & { color: transparentize($selected_fg_color, 0.45); }
|
||||
|
||||
border-color: if($variant == 'light', transparentize($selected_bg_color, 0.25), $dark_borders_color);
|
||||
background-color: transparentize($selected_bg_color, 0.45);
|
||||
@if $variant=='light' { box-shadow: none; }
|
||||
|
||||
opacity: 0.6;
|
||||
}
|
||||
|
||||
@if $t==flat-normal {
|
||||
//
|
||||
// normal button
|
||||
//
|
||||
border: none;
|
||||
background-color: transparent;
|
||||
box-shadow: none;
|
||||
background-clip: if($variant=='light', border-box, padding-box);
|
||||
}
|
||||
|
||||
@else if $t==flat-hover {
|
||||
//
|
||||
// hovered button
|
||||
//
|
||||
color: darken($fg_color, 10%);
|
||||
background-color: if($variant=='light', rgba(black, 0.15), rgba(white, 0.15));
|
||||
background-image: none;
|
||||
// border-color: if($variant=='light', rgba(black, 0.15), rgba(white, 0.15));
|
||||
}
|
||||
|
||||
@else if $t==flat-active {
|
||||
//
|
||||
// pushed button
|
||||
//
|
||||
background-image: none;
|
||||
color: $selected_fg_color;
|
||||
background-color: if($variant=='light', rgba(black, 0.5), rgba(white, 0.25));
|
||||
// text-shadow: if($variant=='light', $text_shadow, none);
|
||||
// -gtk-icon-shadow: if($variant=='light', $text_shadow, none);
|
||||
}
|
||||
|
||||
@else if $t==flat-checked {
|
||||
//
|
||||
// pushed button
|
||||
//
|
||||
background-image: none;
|
||||
color: $selected_fg_color;
|
||||
background-color: if($variant=='light', rgba(black, 0.65), rgba(white, 0.35));
|
||||
// text-shadow: if($variant=='light', $text_shadow, none);
|
||||
// -gtk-icon-shadow: if($variant=='light', $text_shadow, none);
|
||||
}
|
||||
|
||||
@else if $t==flat-insensitive {
|
||||
//
|
||||
// insensitive button
|
||||
//
|
||||
label, & { color: $insensitive_fg_color; }
|
||||
|
||||
background-color: transparent;
|
||||
// border: none;
|
||||
}
|
||||
|
||||
@else if $t==flat-insensitive-active {
|
||||
//
|
||||
// insensitive pushed button
|
||||
//
|
||||
label, & { color: transparentize($selected_fg_color, 0.2); }
|
||||
|
||||
background-color: lighten($fg_color, 20%);
|
||||
// border-color: lighten($fg_color, 20%);
|
||||
opacity: 0.6;
|
||||
}
|
||||
|
||||
@if $t==header-normal {
|
||||
//
|
||||
// normal header-bar button
|
||||
//
|
||||
border-color: $borders_color;
|
||||
color: $header_fg;
|
||||
background-color: $header_button_bg;
|
||||
background-image: $header_button_image;
|
||||
|
||||
@if $variant == 'dark' {
|
||||
border: none;
|
||||
box-shadow: inset 0 1px $header_button_highlight;
|
||||
}
|
||||
}
|
||||
|
||||
@else if $t==header-hover {
|
||||
//
|
||||
// hovered header-bar button
|
||||
//
|
||||
border-color: $borders_color;
|
||||
color: darken($header_fg, 2%);
|
||||
background-color: $header_button_hover_bg;
|
||||
background-image: $header_button_hover_image;
|
||||
@if $variant == 'dark' { box-shadow: inset 0 1px $header_button_hover_highlight; }
|
||||
}
|
||||
|
||||
@else if $t==header-active {
|
||||
//
|
||||
// pushed header-bar button
|
||||
//
|
||||
color: $selected_fg_color;
|
||||
background-color: $header_button_active_bg;
|
||||
background-image: none;
|
||||
border-color: $borders_color;
|
||||
// text-shadow: if($variant=='light', $text_shadow, none);
|
||||
// -gtk-icon-shadow: if($variant=='light', $text_shadow, none);
|
||||
// box-shadow: none;
|
||||
}
|
||||
|
||||
@else if $t==header-checked {
|
||||
//
|
||||
// pushed header-bar button
|
||||
//
|
||||
color: if($variant=='light', $selected_fg_color, $alt_fg_color);
|
||||
background-color: $header_button_checked_bg;
|
||||
background-image: $header_button_checked_image;
|
||||
border-color: $borders_color;
|
||||
// text-shadow: if($variant=='light', $text_shadow, none);
|
||||
// -gtk-icon-shadow: if($variant=='light', $text_shadow, none);
|
||||
@if $variant == 'dark' { box-shadow: inset 0 1px $header_button_checked_highlight; }
|
||||
}
|
||||
|
||||
@else if $t==header-insensitive {
|
||||
//
|
||||
// insensitive header-bar button
|
||||
//
|
||||
label, & { color: transparentize($header_fg, 0.65); }
|
||||
background-color: $header_button_bg;
|
||||
|
||||
@if $variant == 'dark' { box-shadow: inset 0 1px $header_button_highlight; }
|
||||
}
|
||||
|
||||
@else if $t==header-insensitive-active {
|
||||
//
|
||||
// header-bar insensitive pushed button
|
||||
//
|
||||
color: transparentize($selected_fg_color, 0.45);
|
||||
background-color: transparentize($header_button_active_bg, 0.45);
|
||||
}
|
||||
|
||||
@else if $t==osd {
|
||||
//
|
||||
// normal osd button
|
||||
//
|
||||
color: $osd_fg_color;
|
||||
border-color: $osd_button_border;
|
||||
background-color: $osd_button_bg;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
@else if $t==osd-hover {
|
||||
//
|
||||
// active osd button
|
||||
//
|
||||
color: $osd_fg_color;
|
||||
border-color: $osd_button_border;
|
||||
background-color: opacify(lighten($osd_button_bg, 7%), 0.1);
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
@else if $t==osd-active {
|
||||
//
|
||||
// active osd button
|
||||
//
|
||||
color: $selected_fg_color;
|
||||
border-color: $osd_button_border;
|
||||
background-color: $selected_bg_color;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
@else if $t==osd-insensitive {
|
||||
//
|
||||
// insensitive osd button
|
||||
//
|
||||
color: $osd_insensitive_fg_color;
|
||||
border-color: $osd_button_border;
|
||||
background-color: transparentize($osd_button_bg, 0.15);
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
@else if $t==suggested_destructive {
|
||||
//
|
||||
// suggested or destructive action buttons
|
||||
//
|
||||
@if $variant == 'light' { background-clip: border-box; }
|
||||
|
||||
color: $actionb_fg;
|
||||
background-color: $actionb_bg;
|
||||
border-color: if($variant == 'light', darken($actionb_bg, 6%), $dark_borders_color);
|
||||
background-image: none;
|
||||
// box-shadow: none;
|
||||
}
|
||||
|
||||
@else if $t==undecorated {
|
||||
//
|
||||
// reset
|
||||
//
|
||||
border-color: transparent;
|
||||
background-color: transparent;
|
||||
background-image: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
// Overshoot
|
||||
//
|
||||
@mixin overshoot($p, $c:$selected_bg_color) {
|
||||
// $p: position
|
||||
// $c: base color
|
||||
//
|
||||
// possible $p values:
|
||||
// top, bottom, right, left
|
||||
//
|
||||
|
||||
$_big_gradient_length: 60%;
|
||||
|
||||
$_position: center top;
|
||||
$_big_gradient_size: 100% $_big_gradient_length;
|
||||
|
||||
@if $p==bottom {
|
||||
$_position: center bottom;
|
||||
}
|
||||
|
||||
@else if $p==right {
|
||||
$_position: right center;
|
||||
$_big_gradient_size: $_big_gradient_length 100%;
|
||||
}
|
||||
|
||||
@else if $p==left {
|
||||
$_position: left center;
|
||||
$_big_gradient_size: $_big_gradient_length 100%;
|
||||
}
|
||||
|
||||
background-image: -gtk-gradient(radial,
|
||||
$_position, 0,
|
||||
$_position, 0.6,
|
||||
from(transparentize($c, 0.8)),
|
||||
to(transparentize($c, 1)));
|
||||
|
||||
background-size: $_big_gradient_size;
|
||||
background-repeat: no-repeat;
|
||||
background-position: $_position;
|
||||
|
||||
background-color: transparent; // reset some properties to be sure to not inherit them somehow
|
||||
border: none; //
|
||||
box-shadow: none; //
|
||||
}
|
||||
|
||||
//
|
||||
// Undershoot
|
||||
//
|
||||
@mixin undershoot($p) {
|
||||
// $p: position
|
||||
//
|
||||
// possible $p values:
|
||||
// top, bottom, right, left
|
||||
//
|
||||
|
||||
$_undershoot_color_dark: transparentize(black, 0.8);
|
||||
$_undershoot_color_light: transparentize(white, 0.8);
|
||||
|
||||
$_gradient_dir: left;
|
||||
$_dash_bg_size: 10px 1px;
|
||||
$_gradient_repeat: repeat-x;
|
||||
$_bg_pos: center $p;
|
||||
|
||||
background-color: transparent; // shouldn't be needed, but better to be sure;
|
||||
|
||||
@if ($p == left) or ($p == right) {
|
||||
$_gradient_dir: top;
|
||||
$_dash_bg_size: 1px 10px;
|
||||
$_gradient_repeat: repeat-y;
|
||||
$_bg_pos: $p center;
|
||||
}
|
||||
|
||||
background-image: linear-gradient(to $_gradient_dir, // this is the dashed line
|
||||
$_undershoot_color_light 50%,
|
||||
$_undershoot_color_dark 50%);
|
||||
|
||||
padding-#{$p}: 1px;
|
||||
background-size: $_dash_bg_size;
|
||||
background-repeat: $_gradient_repeat;
|
||||
background-origin: content-box;
|
||||
background-position: $_bg_pos;
|
||||
border: none;
|
||||
}
|
|
@ -0,0 +1,56 @@
|
|||
<?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="16"
|
||||
height="16"
|
||||
viewBox="0 0 16 16"
|
||||
version="1.1"
|
||||
id="svg4"
|
||||
sodipodi:docname="calendar-arrow-left.svg"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs8" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="704"
|
||||
id="namedview6"
|
||||
showgrid="false"
|
||||
inkscape:zoom="29.5"
|
||||
inkscape:cx="13.680381"
|
||||
inkscape:cy="6.1418434"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4" />
|
||||
<path
|
||||
d="M10 3v10L5 8z"
|
||||
fill="#000000"
|
||||
opacity="0.54"
|
||||
id="path2"
|
||||
style="fill:#e6e6e6" />
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
|
@ -0,0 +1,56 @@
|
|||
<?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="16"
|
||||
height="16"
|
||||
viewBox="0 0 16 16"
|
||||
version="1.1"
|
||||
id="svg4"
|
||||
sodipodi:docname="calendar-arrow-right.svg"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs8" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="704"
|
||||
id="namedview6"
|
||||
showgrid="false"
|
||||
inkscape:zoom="14.75"
|
||||
inkscape:cx="8"
|
||||
inkscape:cy="8"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4" />
|
||||
<path
|
||||
d="M6 3v10l5-5z"
|
||||
fill="#000000"
|
||||
opacity="0.54"
|
||||
id="path2"
|
||||
style="fill:#e6e6e6" />
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
|
@ -0,0 +1,156 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 24 24"
|
||||
version="1.1"
|
||||
id="svg4"
|
||||
sodipodi:docname="checkbox-off.svg"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs8">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#unchecked_highlight"
|
||||
id="linearGradient1667"
|
||||
x1="18"
|
||||
y1="38.362179"
|
||||
x2="32"
|
||||
y2="38.362179"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
id="unchecked_highlight"
|
||||
osb:paint="solid">
|
||||
<stop
|
||||
style="stop-color:#5f5f5f;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop1645" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#dark_unchecked_bg"
|
||||
id="linearGradient1625"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.92857146,0,3.2401539)"
|
||||
x1="24"
|
||||
y1="45.362179"
|
||||
x2="24"
|
||||
y2="31.362181" />
|
||||
<linearGradient
|
||||
id="dark_unchecked_bg"
|
||||
osb:paint="gradient">
|
||||
<stop
|
||||
id="stop1615"
|
||||
offset="0"
|
||||
style="stop-color:#6a6a6a;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop1617"
|
||||
offset="1"
|
||||
style="stop-color:#545454;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="704"
|
||||
id="namedview6"
|
||||
showgrid="false"
|
||||
inkscape:zoom="9.8333333"
|
||||
inkscape:cx="12"
|
||||
inkscape:cy="12"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4" />
|
||||
<g
|
||||
transform="translate(-13,3.6378183)"
|
||||
style="display:inline;opacity:1"
|
||||
id="checkbox-unchecked-dark"
|
||||
inkscape:label="#g22047">
|
||||
<g
|
||||
inkscape:label="#g21853"
|
||||
id="sdsd-0-1">
|
||||
<g
|
||||
id="scdsdcd-0-4"
|
||||
inkscape:label="#g14325"
|
||||
transform="translate(0,-30)">
|
||||
<g
|
||||
style="display:inline"
|
||||
id="g15812-6-6-1-4-4"
|
||||
transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)">
|
||||
<g
|
||||
transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)"
|
||||
id="g5489-2-9-6-8-8-9-7"
|
||||
style="display:inline">
|
||||
<g
|
||||
id="g5428-8-1-4-0-0-65-8" />
|
||||
</g>
|
||||
</g>
|
||||
<rect
|
||||
y="30.362183"
|
||||
x="17"
|
||||
height="16"
|
||||
width="16"
|
||||
id="rect13523-4-0"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
|
||||
<g
|
||||
id="g5400-2-47">
|
||||
<rect
|
||||
rx="2.4615386"
|
||||
y="30.362181"
|
||||
x="17"
|
||||
height="16"
|
||||
width="16"
|
||||
id="rect1920"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.12000002;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.2307694;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.461539" />
|
||||
<rect
|
||||
ry="2.1538463"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient1667);fill-opacity:1;stroke:none;stroke-width:1.07692313;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
id="rect5147-9-1-5-7-6-3-70"
|
||||
width="14"
|
||||
height="13.999997"
|
||||
x="18"
|
||||
y="31.362181"
|
||||
rx="2.1538463" />
|
||||
<rect
|
||||
rx="2.1538463"
|
||||
y="32.362179"
|
||||
x="18"
|
||||
height="12.999998"
|
||||
width="14"
|
||||
id="rect1621"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient1625);fill-opacity:1;stroke:none;stroke-width:1.03774917;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.0000002" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.2 KiB |
|
@ -0,0 +1,231 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 24 24"
|
||||
version="1.1"
|
||||
id="svg4"
|
||||
sodipodi:docname="checkbox.svg"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs8">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#hightlight"
|
||||
id="linearGradient1632"
|
||||
x1="18.000006"
|
||||
y1="38.36219"
|
||||
x2="31.999994"
|
||||
y2="38.36219"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
id="hightlight"
|
||||
osb:paint="solid">
|
||||
<stop
|
||||
style="stop-color:#5887fc;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop1628" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#dark_checked_bg"
|
||||
id="linearGradient1590"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.99167598,0,0.37759569)"
|
||||
x1="24"
|
||||
y1="45.362179"
|
||||
x2="24"
|
||||
y2="32.253059" />
|
||||
<linearGradient
|
||||
id="dark_checked_bg"
|
||||
osb:paint="gradient">
|
||||
<stop
|
||||
style="stop-color:#3458c0;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop1580" />
|
||||
<stop
|
||||
style="stop-color:#3d67e3;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop1582" />
|
||||
</linearGradient>
|
||||
<filter
|
||||
style="color-interpolation-filters:sRGB"
|
||||
inkscape:label="Drop Shadow"
|
||||
id="filter1536">
|
||||
<feFlood
|
||||
flood-opacity="0.352941"
|
||||
flood-color="rgb(0,0,0)"
|
||||
result="flood"
|
||||
id="feFlood1526" />
|
||||
<feComposite
|
||||
in="flood"
|
||||
in2="SourceGraphic"
|
||||
operator="in"
|
||||
result="composite1"
|
||||
id="feComposite1528" />
|
||||
<feGaussianBlur
|
||||
in="composite1"
|
||||
stdDeviation="0"
|
||||
result="blur"
|
||||
id="feGaussianBlur1530" />
|
||||
<feOffset
|
||||
dx="0"
|
||||
dy="0.5"
|
||||
result="offset"
|
||||
id="feOffset1532" />
|
||||
<feComposite
|
||||
in="SourceGraphic"
|
||||
in2="offset"
|
||||
operator="over"
|
||||
result="composite2"
|
||||
id="feComposite1534" />
|
||||
</filter>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="704"
|
||||
id="namedview6"
|
||||
showgrid="false"
|
||||
inkscape:zoom="9.8333333"
|
||||
inkscape:cx="12"
|
||||
inkscape:cy="12"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4" />
|
||||
<g
|
||||
transform="translate(-32,3.6378183)"
|
||||
style="display:inline;opacity:1"
|
||||
id="checkbox-checked-dark"
|
||||
inkscape:label="#g10758">
|
||||
<g
|
||||
inkscape:label="#g22047"
|
||||
id="checkbox-unchecked-5-59"
|
||||
style="display:inline"
|
||||
transform="translate(19)">
|
||||
<g
|
||||
id="sdsd-7-54"
|
||||
inkscape:label="#g21853">
|
||||
<g
|
||||
transform="translate(0,-30)"
|
||||
inkscape:label="#g14325"
|
||||
id="scdsdcd-5-8">
|
||||
<g
|
||||
transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)"
|
||||
id="g15812-6-6-1-5-4"
|
||||
style="display:inline">
|
||||
<g
|
||||
style="display:inline"
|
||||
id="g5489-2-9-6-8-8-53-5"
|
||||
transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)">
|
||||
<g
|
||||
id="g5428-8-1-4-0-0-4-2" />
|
||||
</g>
|
||||
</g>
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
|
||||
id="rect13523-7-11"
|
||||
width="16"
|
||||
height="16"
|
||||
x="17"
|
||||
y="30.362183" />
|
||||
<g
|
||||
id="g5400-6-68">
|
||||
<rect
|
||||
ry="2.2857065"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.12000002;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.14285803;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:fill markers stroke;enable-background:accumulate"
|
||||
id="rect1924"
|
||||
width="16"
|
||||
height="16.000002"
|
||||
x="17"
|
||||
y="30.362181"
|
||||
rx="2.2857096" />
|
||||
<rect
|
||||
rx="1.9999943"
|
||||
y="31.362196"
|
||||
x="18.000006"
|
||||
height="13.99999"
|
||||
width="13.999989"
|
||||
id="rect5147-9-1-5-7-6-7-4"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient1632);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:fill markers stroke;enable-background:accumulate"
|
||||
ry="1.9999917" />
|
||||
<rect
|
||||
ry="1.8571372"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient1590);fill-opacity:1;stroke:none;stroke-width:0.96399999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:fill markers stroke;enable-background:accumulate"
|
||||
id="rect1578"
|
||||
width="13.999989"
|
||||
height="13.000006"
|
||||
x="18.000006"
|
||||
y="32.362179"
|
||||
rx="1.9999943" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:label="Ebene 1"
|
||||
id="checkbox-checked-dark-7-37"
|
||||
transform="translate(36,-1036)"
|
||||
style="display:inline">
|
||||
<g
|
||||
id="g3981-6-4-97"
|
||||
transform="rotate(45,-3.2604448,1033.6624)"
|
||||
style="opacity:0.85;fill:#1a1a1a;fill-opacity:1" />
|
||||
<g
|
||||
id="g4049-2-5"
|
||||
transform="rotate(45,7.4999938,1026.3622)">
|
||||
<g
|
||||
id="g4056-7-6"
|
||||
transform="translate(12.374375,11.531233)">
|
||||
<g
|
||||
id="g3981-0-8"
|
||||
transform="translate(-3,-4.9999826)"
|
||||
style="fill:#3b3c3e;fill-opacity:1">
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter1536)"
|
||||
d="m 154.15625,15.880859 c -0.25562,0 -0.51116,0.0971 -0.70703,0.292969 l -3.53516,3.535156 -1.47851,-1.476562 c -0.35638,-0.356375 -0.95788,-0.329234 -1.34961,0.0625 -0.39174,0.391734 -0.42083,0.995188 -0.0645,1.351562 l 2.18555,2.183594 0.0644,0.06445 c 0.35638,0.356375 0.95788,0.327281 1.34961,-0.06445 l 4.24219,-4.242187 c 0.39174,-0.391738 0.39174,-1.022326 0,-1.414063 -0.19587,-0.195868 -0.45141,-0.292969 -0.70703,-0.292969 z"
|
||||
transform="rotate(-45,1304.0439,694.22022)"
|
||||
id="rect3977-39-90"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<rect
|
||||
style="fill:#eeeeee;fill-opacity:0;stroke:none"
|
||||
id="rect4047-81-5"
|
||||
width="3"
|
||||
height="1"
|
||||
x="5"
|
||||
y="-8"
|
||||
transform="translate(0,1036.3622)" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 8.0 KiB |
|
@ -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:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 24 24"
|
||||
version="1.1"
|
||||
id="svg4"
|
||||
sodipodi:docname="radiobutton-off.svg"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs8">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#unchecked_highlight"
|
||||
id="linearGradient1661"
|
||||
x1="51.610744"
|
||||
y1="141.02211"
|
||||
x2="80.99575"
|
||||
y2="141.02211"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
id="unchecked_highlight"
|
||||
osb:paint="solid">
|
||||
<stop
|
||||
style="stop-color:#5f5f5f;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop1645" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#dark_unchecked_bg"
|
||||
id="linearGradient1684"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="66.303246"
|
||||
y1="155.48166"
|
||||
x2="66.303246"
|
||||
y2="126.56255"
|
||||
gradientTransform="matrix(1,0,0,0.92857182,0,11.105773)" />
|
||||
<linearGradient
|
||||
id="dark_unchecked_bg"
|
||||
osb:paint="gradient">
|
||||
<stop
|
||||
id="stop1615"
|
||||
offset="0"
|
||||
style="stop-color:#6a6a6a;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop1617"
|
||||
offset="1"
|
||||
style="stop-color:#545454;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="704"
|
||||
id="namedview6"
|
||||
showgrid="false"
|
||||
inkscape:zoom="9.8333333"
|
||||
inkscape:cx="12"
|
||||
inkscape:cy="12"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4" />
|
||||
<g
|
||||
transform="translate(-92.995736,3.6378118)"
|
||||
style="display:inline;opacity:1"
|
||||
id="radio-unchecked-dark"
|
||||
inkscape:label="#g10975">
|
||||
<g
|
||||
id="g10964-4-5">
|
||||
<g
|
||||
style="display:inline"
|
||||
id="radio-unchecked2-6-5"
|
||||
transform="matrix(0.93617253,0,0,0.93566004,-96.78315,-244.76084)"
|
||||
inkscape:label="#g15805">
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
|
||||
id="rect14348-4-3-9"
|
||||
width="17.090866"
|
||||
height="17.100227"
|
||||
x="206.99057"
|
||||
y="261.97873" />
|
||||
<g
|
||||
id="g7025-3-9">
|
||||
<g
|
||||
style="display:inline"
|
||||
id="g5489-2-9-3-8-0"
|
||||
transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||
<g
|
||||
id="g5428-8-1-7-83-7">
|
||||
<rect
|
||||
rx="16.791431"
|
||||
y="124.49689"
|
||||
x="49.511818"
|
||||
height="33.050419"
|
||||
width="33.582863"
|
||||
id="rect1938"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.12000002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.56274343;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
ry="16.313646" />
|
||||
<rect
|
||||
ry="14.27444"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient1661);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.24240041;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-7-7-61"
|
||||
width="29.385006"
|
||||
height="28.919117"
|
||||
x="51.610744"
|
||||
y="126.56255"
|
||||
rx="14.692502" />
|
||||
<rect
|
||||
rx="14.692502"
|
||||
y="128.62819"
|
||||
x="51.610744"
|
||||
height="26.853477"
|
||||
width="29.385006"
|
||||
id="rect1670"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient1684);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.16083145;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
ry="13.426739" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.4 KiB |
|
@ -0,0 +1,216 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 24 24"
|
||||
version="1.1"
|
||||
id="svg4"
|
||||
sodipodi:docname="radiobutton.svg"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs8">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#hightlight"
|
||||
id="linearGradient1650"
|
||||
x1="51.610752"
|
||||
y1="141.02211"
|
||||
x2="80.995743"
|
||||
y2="141.02211"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
id="hightlight"
|
||||
osb:paint="solid">
|
||||
<stop
|
||||
style="stop-color:#5887fc;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop1628" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#dark_checked_bg"
|
||||
id="linearGradient1586"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="51.610752"
|
||||
y1="141.02211"
|
||||
x2="80.995743"
|
||||
y2="141.02211"
|
||||
gradientTransform="matrix(1,0,0,0.92857215,0,11.105721)" />
|
||||
<linearGradient
|
||||
id="dark_checked_bg"
|
||||
osb:paint="gradient">
|
||||
<stop
|
||||
style="stop-color:#3458c0;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop1580" />
|
||||
<stop
|
||||
style="stop-color:#3d67e3;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop1582" />
|
||||
</linearGradient>
|
||||
<filter
|
||||
style="color-interpolation-filters:sRGB"
|
||||
inkscape:label="Drop Shadow"
|
||||
id="filter1488">
|
||||
<feFlood
|
||||
flood-opacity="0.352941"
|
||||
flood-color="rgb(0,0,0)"
|
||||
result="flood"
|
||||
id="feFlood1478" />
|
||||
<feComposite
|
||||
in="flood"
|
||||
in2="SourceGraphic"
|
||||
operator="in"
|
||||
result="composite1"
|
||||
id="feComposite1480" />
|
||||
<feGaussianBlur
|
||||
in="composite1"
|
||||
stdDeviation="0"
|
||||
result="blur"
|
||||
id="feGaussianBlur1482" />
|
||||
<feOffset
|
||||
dx="0"
|
||||
dy="0.5"
|
||||
result="offset"
|
||||
id="feOffset1484" />
|
||||
<feComposite
|
||||
in="SourceGraphic"
|
||||
in2="offset"
|
||||
operator="over"
|
||||
result="composite2"
|
||||
id="feComposite1486" />
|
||||
</filter>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="704"
|
||||
id="namedview6"
|
||||
showgrid="true"
|
||||
inkscape:zoom="9.8333333"
|
||||
inkscape:cx="5.9491525"
|
||||
inkscape:cy="12"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid877" />
|
||||
</sodipodi:namedview>
|
||||
<g
|
||||
transform="translate(-112,3.6378183)"
|
||||
style="display:inline;opacity:1"
|
||||
id="radio-checked-dark"
|
||||
inkscape:label="#g11094">
|
||||
<g
|
||||
transform="translate(19.004264,-4.6992607e-6)"
|
||||
inkscape:label="#g10975"
|
||||
id="radio-unchecked-2-1"
|
||||
style="display:inline">
|
||||
<g
|
||||
id="g10964-6-63">
|
||||
<g
|
||||
inkscape:label="#g15805"
|
||||
transform="matrix(0.93617253,0,0,0.93566004,-96.78315,-244.76084)"
|
||||
id="radio-unchecked2-0-8"
|
||||
style="display:inline">
|
||||
<g
|
||||
style="display:inline;opacity:0.06000001;fill:#000000;fill-opacity:1"
|
||||
id="g7025-09-0-5"
|
||||
transform="translate(0,1.0687628)">
|
||||
<g
|
||||
transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)"
|
||||
id="g5489-2-9-3-2-6-2"
|
||||
style="display:inline;fill:#000000;fill-opacity:1">
|
||||
<g
|
||||
id="g5428-8-1-7-5-4-7"
|
||||
style="fill:#000000;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<rect
|
||||
y="261.97873"
|
||||
x="206.99057"
|
||||
height="17.100227"
|
||||
width="17.090866"
|
||||
id="rect14348-4-8-5"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
|
||||
<g
|
||||
id="g7025-09-09">
|
||||
<g
|
||||
transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)"
|
||||
id="g5489-2-9-3-2-28"
|
||||
style="display:inline">
|
||||
<g
|
||||
id="g5428-8-1-7-5-64">
|
||||
<rect
|
||||
ry="16.525213"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.12000002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
id="rect1934"
|
||||
width="33.582863"
|
||||
height="33.050426"
|
||||
x="49.511818"
|
||||
y="124.49688"
|
||||
rx="16.791431" />
|
||||
<rect
|
||||
rx="14.692495"
|
||||
y="126.56255"
|
||||
x="51.610752"
|
||||
height="28.919107"
|
||||
width="29.384991"
|
||||
id="rect5147-9-1-7-2-0"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient1650);fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
ry="14.459554" />
|
||||
<rect
|
||||
ry="13.426739"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient1586);fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
id="rect1574"
|
||||
width="29.384991"
|
||||
height="26.853477"
|
||||
x="51.610752"
|
||||
y="128.62819"
|
||||
rx="14.692495" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<rect
|
||||
rx="1.9988754"
|
||||
y="6.3621826"
|
||||
x="122"
|
||||
height="4"
|
||||
width="4"
|
||||
id="use15101-5-7-55"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.08838987;marker:none;filter:url(#filter1488);enable-background:accumulate"
|
||||
ry="2" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 7.3 KiB |
|
@ -0,0 +1,106 @@
|
|||
<?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="400"
|
||||
height="120"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="trash-icon.svg">
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.8101934"
|
||||
inkscape:cx="194.72263"
|
||||
inkscape:cy="105.03137"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="704"
|
||||
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:bbox-nodes="true"
|
||||
inkscape:snap-bbox-edge-midpoints="true"
|
||||
inkscape:document-rotation="0">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid2985"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="200,105"
|
||||
id="guide3920"
|
||||
inkscape:locked="false" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Attribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Ebene 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-932.36218)">
|
||||
<path
|
||||
id="rect4142"
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.13725491;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;paint-order:stroke fill markers"
|
||||
d="m 12,942.36218 376,0 c 1.108,0 2,0.892 2,2 l 0,108.00002 -380,0 0,-108.00002 c 0,-1.108 0.892,-2 2,-2 z"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="sssccss" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ececec;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
class="ColorScheme-Text"
|
||||
d="m 200,964.36214 c -4.41828,0 -8,3.58172 -8,8 h -16 v 4 H 193.07812 200 206.91408 224 v -4 h -16 c 0,-4.41828 -3.58172,-8 -8,-8 z m 0,4 c 2.20914,1e-5 3.99999,1.79086 4,4 h -8 c 1e-5,-2.20914 1.79086,-3.99999 4,-4 z m -20,12 v 2 2 6 21.99996 c 0,4.4321 3.56792,8.0001 8,8.0001 h 24 c 4.43208,0 8,-3.568 8,-8.0001 v -23.99996 -4 -2 -2 h -2 -26 -4 -6 z m 4,4 h 4 4 24 v 27.99996 c 0,2.2161 -1.78392,4.0001 -4,4.0001 h -24 c -2.21608,0 -4,-1.784 -4,-4.0001 z"
|
||||
id="path3222"
|
||||
sodipodi:nodetypes="scccccccccsccccccccsssscccccccccccccssssc" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.3 KiB |
|
@ -0,0 +1,3 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<path d="M10 3v10L5 8z" fill="#000000" opacity="0.54"/>
|
||||
</svg>
|
After Width: | Height: | Size: 149 B |
|
@ -0,0 +1,3 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<path d="M6 3v10l5-5z" fill="#000000" opacity="0.54"/>
|
||||
</svg>
|
After Width: | Height: | Size: 148 B |
|
@ -0,0 +1,147 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 24 24"
|
||||
version="1.1"
|
||||
id="svg4"
|
||||
sodipodi:docname="checkbox-off.svg"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs8">
|
||||
<linearGradient
|
||||
id="unchecked_highlight"
|
||||
osb:paint="solid">
|
||||
<stop
|
||||
style="stop-color:#5f5f5f;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop1645" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#dark_unchecked_bg"
|
||||
id="linearGradient1625"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.92857146,0,3.2401539)"
|
||||
x1="24"
|
||||
y1="45.362179"
|
||||
x2="24"
|
||||
y2="31.362181" />
|
||||
<linearGradient
|
||||
id="dark_unchecked_bg"
|
||||
osb:paint="gradient">
|
||||
<stop
|
||||
id="stop1615"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop1617"
|
||||
offset="1"
|
||||
style="stop-color:#f9f9f9;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="704"
|
||||
id="namedview6"
|
||||
showgrid="false"
|
||||
inkscape:zoom="6.9532167"
|
||||
inkscape:cx="-21.933286"
|
||||
inkscape:cy="-1.6719714"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4" />
|
||||
<g
|
||||
transform="translate(-13,3.6378183)"
|
||||
style="display:inline;opacity:1"
|
||||
id="checkbox-unchecked-dark"
|
||||
inkscape:label="#g22047">
|
||||
<g
|
||||
inkscape:label="#g21853"
|
||||
id="sdsd-0-1">
|
||||
<g
|
||||
id="scdsdcd-0-4"
|
||||
inkscape:label="#g14325"
|
||||
transform="translate(0,-30)">
|
||||
<g
|
||||
style="display:inline"
|
||||
id="g15812-6-6-1-4-4"
|
||||
transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)">
|
||||
<g
|
||||
transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)"
|
||||
id="g5489-2-9-6-8-8-9-7"
|
||||
style="display:inline">
|
||||
<g
|
||||
id="g5428-8-1-4-0-0-65-8" />
|
||||
</g>
|
||||
</g>
|
||||
<rect
|
||||
y="30.362183"
|
||||
x="17"
|
||||
height="16"
|
||||
width="16"
|
||||
id="rect13523-4-0"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
|
||||
<g
|
||||
id="g5400-2-47">
|
||||
<rect
|
||||
rx="2.4615386"
|
||||
y="30.362181"
|
||||
x="17"
|
||||
height="16"
|
||||
width="16"
|
||||
id="rect1920"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.12000002;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.2307694;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.461539" />
|
||||
<rect
|
||||
ry="2.1538463"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.07692313;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
id="rect5147-9-1-5-7-6-3-70"
|
||||
width="14"
|
||||
height="13.999997"
|
||||
x="18"
|
||||
y="31.362181"
|
||||
rx="2.1538463" />
|
||||
<rect
|
||||
rx="2.1538463"
|
||||
y="32.362179"
|
||||
x="18"
|
||||
height="12.999998"
|
||||
width="14"
|
||||
id="rect1621"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient1625);fill-opacity:1;stroke:none;stroke-width:1.03774917;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.0000002" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.0 KiB |
|
@ -0,0 +1,231 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 24 24"
|
||||
version="1.1"
|
||||
id="svg4"
|
||||
sodipodi:docname="checkbox.svg"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs8">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#hightlight"
|
||||
id="linearGradient1632"
|
||||
x1="18.000006"
|
||||
y1="38.36219"
|
||||
x2="31.999994"
|
||||
y2="38.36219"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
id="hightlight"
|
||||
osb:paint="solid">
|
||||
<stop
|
||||
style="stop-color:#5887fc;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop1628" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#dark_checked_bg"
|
||||
id="linearGradient1590"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.99167598,0,0.37759569)"
|
||||
x1="24"
|
||||
y1="45.362179"
|
||||
x2="24"
|
||||
y2="32.253059" />
|
||||
<linearGradient
|
||||
id="dark_checked_bg"
|
||||
osb:paint="gradient">
|
||||
<stop
|
||||
style="stop-color:#3458c0;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop1580" />
|
||||
<stop
|
||||
style="stop-color:#3d67e3;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop1582" />
|
||||
</linearGradient>
|
||||
<filter
|
||||
style="color-interpolation-filters:sRGB"
|
||||
inkscape:label="Drop Shadow"
|
||||
id="filter1536">
|
||||
<feFlood
|
||||
flood-opacity="0.352941"
|
||||
flood-color="rgb(0,0,0)"
|
||||
result="flood"
|
||||
id="feFlood1526" />
|
||||
<feComposite
|
||||
in="flood"
|
||||
in2="SourceGraphic"
|
||||
operator="in"
|
||||
result="composite1"
|
||||
id="feComposite1528" />
|
||||
<feGaussianBlur
|
||||
in="composite1"
|
||||
stdDeviation="0"
|
||||
result="blur"
|
||||
id="feGaussianBlur1530" />
|
||||
<feOffset
|
||||
dx="0"
|
||||
dy="0.5"
|
||||
result="offset"
|
||||
id="feOffset1532" />
|
||||
<feComposite
|
||||
in="SourceGraphic"
|
||||
in2="offset"
|
||||
operator="over"
|
||||
result="composite2"
|
||||
id="feComposite1534" />
|
||||
</filter>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="704"
|
||||
id="namedview6"
|
||||
showgrid="false"
|
||||
inkscape:zoom="9.8333333"
|
||||
inkscape:cx="12"
|
||||
inkscape:cy="12"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4" />
|
||||
<g
|
||||
transform="translate(-32,3.6378183)"
|
||||
style="display:inline;opacity:1"
|
||||
id="checkbox-checked-dark"
|
||||
inkscape:label="#g10758">
|
||||
<g
|
||||
inkscape:label="#g22047"
|
||||
id="checkbox-unchecked-5-59"
|
||||
style="display:inline"
|
||||
transform="translate(19)">
|
||||
<g
|
||||
id="sdsd-7-54"
|
||||
inkscape:label="#g21853">
|
||||
<g
|
||||
transform="translate(0,-30)"
|
||||
inkscape:label="#g14325"
|
||||
id="scdsdcd-5-8">
|
||||
<g
|
||||
transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)"
|
||||
id="g15812-6-6-1-5-4"
|
||||
style="display:inline">
|
||||
<g
|
||||
style="display:inline"
|
||||
id="g5489-2-9-6-8-8-53-5"
|
||||
transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)">
|
||||
<g
|
||||
id="g5428-8-1-4-0-0-4-2" />
|
||||
</g>
|
||||
</g>
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
|
||||
id="rect13523-7-11"
|
||||
width="16"
|
||||
height="16"
|
||||
x="17"
|
||||
y="30.362183" />
|
||||
<g
|
||||
id="g5400-6-68">
|
||||
<rect
|
||||
ry="2.2857065"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.12000002;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.14285803;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:fill markers stroke;enable-background:accumulate"
|
||||
id="rect1924"
|
||||
width="16"
|
||||
height="16.000002"
|
||||
x="17"
|
||||
y="30.362181"
|
||||
rx="2.2857096" />
|
||||
<rect
|
||||
rx="1.9999943"
|
||||
y="31.362196"
|
||||
x="18.000006"
|
||||
height="13.99999"
|
||||
width="13.999989"
|
||||
id="rect5147-9-1-5-7-6-7-4"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient1632);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:fill markers stroke;enable-background:accumulate"
|
||||
ry="1.9999917" />
|
||||
<rect
|
||||
ry="1.8571372"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient1590);fill-opacity:1;stroke:none;stroke-width:0.96399999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:fill markers stroke;enable-background:accumulate"
|
||||
id="rect1578"
|
||||
width="13.999989"
|
||||
height="13.000006"
|
||||
x="18.000006"
|
||||
y="32.362179"
|
||||
rx="1.9999943" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:label="Ebene 1"
|
||||
id="checkbox-checked-dark-7-37"
|
||||
transform="translate(36,-1036)"
|
||||
style="display:inline">
|
||||
<g
|
||||
id="g3981-6-4-97"
|
||||
transform="rotate(45,-3.2604448,1033.6624)"
|
||||
style="opacity:0.85;fill:#1a1a1a;fill-opacity:1" />
|
||||
<g
|
||||
id="g4049-2-5"
|
||||
transform="rotate(45,7.4999938,1026.3622)">
|
||||
<g
|
||||
id="g4056-7-6"
|
||||
transform="translate(12.374375,11.531233)">
|
||||
<g
|
||||
id="g3981-0-8"
|
||||
transform="translate(-3,-4.9999826)"
|
||||
style="fill:#3b3c3e;fill-opacity:1">
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter1536)"
|
||||
d="m 154.15625,15.880859 c -0.25562,0 -0.51116,0.0971 -0.70703,0.292969 l -3.53516,3.535156 -1.47851,-1.476562 c -0.35638,-0.356375 -0.95788,-0.329234 -1.34961,0.0625 -0.39174,0.391734 -0.42083,0.995188 -0.0645,1.351562 l 2.18555,2.183594 0.0644,0.06445 c 0.35638,0.356375 0.95788,0.327281 1.34961,-0.06445 l 4.24219,-4.242187 c 0.39174,-0.391738 0.39174,-1.022326 0,-1.414063 -0.19587,-0.195868 -0.45141,-0.292969 -0.70703,-0.292969 z"
|
||||
transform="rotate(-45,1304.0439,694.22022)"
|
||||
id="rect3977-39-90"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<rect
|
||||
style="fill:#eeeeee;fill-opacity:0;stroke:none"
|
||||
id="rect4047-81-5"
|
||||
width="3"
|
||||
height="1"
|
||||
x="5"
|
||||
y="-8"
|
||||
transform="translate(0,1036.3622)" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 8.0 KiB |
|
@ -0,0 +1,143 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 24 24"
|
||||
version="1.1"
|
||||
id="svg4"
|
||||
sodipodi:docname="radiobutton-off.svg"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs8">
|
||||
<linearGradient
|
||||
id="unchecked_highlight"
|
||||
osb:paint="solid">
|
||||
<stop
|
||||
style="stop-color:#5f5f5f;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop1645" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#dark_unchecked_bg"
|
||||
id="linearGradient1684"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="66.303246"
|
||||
y1="155.48166"
|
||||
x2="66.303246"
|
||||
y2="126.56255"
|
||||
gradientTransform="matrix(1,0,0,0.92857182,0,11.105773)" />
|
||||
<linearGradient
|
||||
id="dark_unchecked_bg"
|
||||
osb:paint="gradient">
|
||||
<stop
|
||||
id="stop1615"
|
||||
offset="0"
|
||||
style="stop-color:#ffffff;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop1617"
|
||||
offset="1"
|
||||
style="stop-color:#f9f9f9;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="704"
|
||||
id="namedview6"
|
||||
showgrid="false"
|
||||
inkscape:zoom="19.666667"
|
||||
inkscape:cx="9.3903991"
|
||||
inkscape:cy="11.391797"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4" />
|
||||
<g
|
||||
transform="translate(-92.995736,3.6378118)"
|
||||
style="display:inline;opacity:1"
|
||||
id="radio-unchecked-dark"
|
||||
inkscape:label="#g10975">
|
||||
<g
|
||||
id="g10964-4-5">
|
||||
<g
|
||||
style="display:inline"
|
||||
id="radio-unchecked2-6-5"
|
||||
transform="matrix(0.93617253,0,0,0.93566004,-96.78315,-244.76084)"
|
||||
inkscape:label="#g15805">
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
|
||||
id="rect14348-4-3-9"
|
||||
width="17.090866"
|
||||
height="17.100227"
|
||||
x="206.99057"
|
||||
y="261.97873" />
|
||||
<g
|
||||
id="g7025-3-9">
|
||||
<g
|
||||
style="display:inline"
|
||||
id="g5489-2-9-3-8-0"
|
||||
transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)">
|
||||
<g
|
||||
id="g5428-8-1-7-83-7">
|
||||
<rect
|
||||
rx="16.791431"
|
||||
y="124.49689"
|
||||
x="49.511818"
|
||||
height="33.050419"
|
||||
width="33.582863"
|
||||
id="rect1938"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.12000002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.56274343;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
ry="16.313646" />
|
||||
<rect
|
||||
ry="14.27444"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.24240041;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-7-7-61"
|
||||
width="29.385006"
|
||||
height="28.919117"
|
||||
x="51.610744"
|
||||
y="126.56255"
|
||||
rx="14.692502" />
|
||||
<rect
|
||||
rx="14.692502"
|
||||
y="128.62819"
|
||||
x="51.610744"
|
||||
height="26.853477"
|
||||
width="29.385006"
|
||||
id="rect1670"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient1684);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.16083145;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
ry="13.426739" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.1 KiB |
|
@ -0,0 +1,216 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 24 24"
|
||||
version="1.1"
|
||||
id="svg4"
|
||||
sodipodi:docname="radiobutton.svg"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs8">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#hightlight"
|
||||
id="linearGradient1650"
|
||||
x1="51.610752"
|
||||
y1="141.02211"
|
||||
x2="80.995743"
|
||||
y2="141.02211"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
id="hightlight"
|
||||
osb:paint="solid">
|
||||
<stop
|
||||
style="stop-color:#5887fc;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop1628" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#dark_checked_bg"
|
||||
id="linearGradient1586"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="51.610752"
|
||||
y1="141.02211"
|
||||
x2="80.995743"
|
||||
y2="141.02211"
|
||||
gradientTransform="matrix(1,0,0,0.92857215,0,11.105721)" />
|
||||
<linearGradient
|
||||
id="dark_checked_bg"
|
||||
osb:paint="gradient">
|
||||
<stop
|
||||
style="stop-color:#3458c0;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop1580" />
|
||||
<stop
|
||||
style="stop-color:#3d67e3;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop1582" />
|
||||
</linearGradient>
|
||||
<filter
|
||||
style="color-interpolation-filters:sRGB"
|
||||
inkscape:label="Drop Shadow"
|
||||
id="filter1488">
|
||||
<feFlood
|
||||
flood-opacity="0.352941"
|
||||
flood-color="rgb(0,0,0)"
|
||||
result="flood"
|
||||
id="feFlood1478" />
|
||||
<feComposite
|
||||
in="flood"
|
||||
in2="SourceGraphic"
|
||||
operator="in"
|
||||
result="composite1"
|
||||
id="feComposite1480" />
|
||||
<feGaussianBlur
|
||||
in="composite1"
|
||||
stdDeviation="0"
|
||||
result="blur"
|
||||
id="feGaussianBlur1482" />
|
||||
<feOffset
|
||||
dx="0"
|
||||
dy="0.5"
|
||||
result="offset"
|
||||
id="feOffset1484" />
|
||||
<feComposite
|
||||
in="SourceGraphic"
|
||||
in2="offset"
|
||||
operator="over"
|
||||
result="composite2"
|
||||
id="feComposite1486" />
|
||||
</filter>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="704"
|
||||
id="namedview6"
|
||||
showgrid="true"
|
||||
inkscape:zoom="9.8333333"
|
||||
inkscape:cx="5.9491525"
|
||||
inkscape:cy="12"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid877" />
|
||||
</sodipodi:namedview>
|
||||
<g
|
||||
transform="translate(-112,3.6378183)"
|
||||
style="display:inline;opacity:1"
|
||||
id="radio-checked-dark"
|
||||
inkscape:label="#g11094">
|
||||
<g
|
||||
transform="translate(19.004264,-4.6992607e-6)"
|
||||
inkscape:label="#g10975"
|
||||
id="radio-unchecked-2-1"
|
||||
style="display:inline">
|
||||
<g
|
||||
id="g10964-6-63">
|
||||
<g
|
||||
inkscape:label="#g15805"
|
||||
transform="matrix(0.93617253,0,0,0.93566004,-96.78315,-244.76084)"
|
||||
id="radio-unchecked2-0-8"
|
||||
style="display:inline">
|
||||
<g
|
||||
style="display:inline;opacity:0.06000001;fill:#000000;fill-opacity:1"
|
||||
id="g7025-09-0-5"
|
||||
transform="translate(0,1.0687628)">
|
||||
<g
|
||||
transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)"
|
||||
id="g5489-2-9-3-2-6-2"
|
||||
style="display:inline;fill:#000000;fill-opacity:1">
|
||||
<g
|
||||
id="g5428-8-1-7-5-4-7"
|
||||
style="fill:#000000;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<rect
|
||||
y="261.97873"
|
||||
x="206.99057"
|
||||
height="17.100227"
|
||||
width="17.090866"
|
||||
id="rect14348-4-8-5"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
|
||||
<g
|
||||
id="g7025-09-09">
|
||||
<g
|
||||
transform="matrix(0.5089163,0,0,0.51739823,181.7932,197.56426)"
|
||||
id="g5489-2-9-3-2-28"
|
||||
style="display:inline">
|
||||
<g
|
||||
id="g5428-8-1-7-5-64">
|
||||
<rect
|
||||
ry="16.525213"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.12000002;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
id="rect1934"
|
||||
width="33.582863"
|
||||
height="33.050426"
|
||||
x="49.511818"
|
||||
y="124.49688"
|
||||
rx="16.791431" />
|
||||
<rect
|
||||
rx="14.692495"
|
||||
y="126.56255"
|
||||
x="51.610752"
|
||||
height="28.919107"
|
||||
width="29.384991"
|
||||
id="rect5147-9-1-7-2-0"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient1650);fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
ry="14.459554" />
|
||||
<rect
|
||||
ry="13.426739"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient1586);fill-opacity:1;fill-rule:nonzero;stroke:#999999;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
id="rect1574"
|
||||
width="29.384991"
|
||||
height="26.853477"
|
||||
x="51.610752"
|
||||
y="128.62819"
|
||||
rx="14.692495" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<rect
|
||||
rx="1.9988754"
|
||||
y="6.3621826"
|
||||
x="122"
|
||||
height="4"
|
||||
width="4"
|
||||
id="use15101-5-7-55"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.08838987;marker:none;filter:url(#filter1488);enable-background:accumulate"
|
||||
ry="2" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 7.3 KiB |
|
@ -0,0 +1,106 @@
|
|||
<?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="400"
|
||||
height="120"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="trash-icon.svg">
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.8101934"
|
||||
inkscape:cx="117.23941"
|
||||
inkscape:cy="83.499451"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="704"
|
||||
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:bbox-nodes="true"
|
||||
inkscape:snap-bbox-edge-midpoints="true"
|
||||
inkscape:document-rotation="0">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid2985"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="200,105"
|
||||
id="guide3920"
|
||||
inkscape:locked="false" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Attribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Ebene 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-932.36218)">
|
||||
<path
|
||||
id="rect4142"
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#fbfbfb;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.13725491;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;paint-order:stroke fill markers"
|
||||
d="m 12,942.36218 376,0 c 1.108,0 2,0.892 2,2 l 0,108.00002 -380,0 0,-108.00002 c 0,-1.108 0.892,-2 2,-2 z"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="sssccss" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#565656;fill-opacity:1;stroke:none;stroke-width:1"
|
||||
class="ColorScheme-Text"
|
||||
d="m 200,964.36214 c -4.41828,0 -8,3.58172 -8,8 h -16 v 4 H 193.07812 200 206.91408 224 v -4 h -16 c 0,-4.41828 -3.58172,-8 -8,-8 z m 0,4 c 2.20914,1e-5 3.99999,1.79086 4,4 h -8 c 1e-5,-2.20914 1.79086,-3.99999 4,-4 z m -20,12 v 2 2 6 21.99996 c 0,4.4321 3.56792,8.0001 8,8.0001 h 24 c 4.43208,0 8,-3.568 8,-8.0001 v -23.99996 -4 -2 -2 h -2 -26 -4 -6 z m 4,4 h 4 4 24 v 27.99996 c 0,2.2161 -1.78392,4.0001 -4,4.0001 h -24 c -2.21608,0 -4,-1.784 -4,-4.0001 z"
|
||||
id="path3222"
|
||||
sodipodi:nodetypes="scccccccccsccccccccsssscccccccccccccssssc" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.3 KiB |
|
@ -0,0 +1,5 @@
|
|||
$variant: 'dark';
|
||||
|
||||
@import 'sass/colors';
|
||||
@import 'sass/drawing';
|
||||
@import 'sass/common';
|
|
@ -0,0 +1,5 @@
|
|||
$variant: 'light';
|
||||
|
||||
@import 'sass/colors';
|
||||
@import 'sass/drawing';
|
||||
@import 'sass/common';
|
|
@ -0,0 +1,130 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="35"
|
||||
height="200"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="add-workspace-active.svg">
|
||||
<defs
|
||||
id="defs4">
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
id="filter4154"
|
||||
x="-0.13200003"
|
||||
width="1.2640001"
|
||||
y="-0.020842104"
|
||||
height="1.0416842">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="1.6500004"
|
||||
id="feGaussianBlur4156" />
|
||||
</filter>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="8"
|
||||
inkscape:cx="-19.280981"
|
||||
inkscape:cy="24.179781"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:window-width="1280"
|
||||
inkscape:window-height="734"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="false"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:bbox-paths="true"
|
||||
inkscape:snap-bbox-edge-midpoints="true"
|
||||
inkscape:bbox-nodes="true">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3040"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="20,100"
|
||||
id="guide3893" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="18,190"
|
||||
id="guide3895" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Attribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Ebene 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-852.36218)">
|
||||
<path
|
||||
id="rect4694-5"
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.9;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:0.43999999;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;filter:url(#filter4154)"
|
||||
d="m 7.2000008,858.36215 27.9999992,0 0,190.00005 -27.9999992,0 c -1.108,0 -2,-0.892 -2,-2 l 0,-186.00005 c 0,-1.108 0.892,-2 2,-2 z"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="sccssss" />
|
||||
<path
|
||||
id="rect4694"
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4285F4;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 7,857.36218 28,0 0,190.00002 -28,0 c -1.108,0 -2,-0.892 -2,-2 L 5,859.36218 c 0,-1.108 0.892,-2 2,-2 z"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="sccssss" />
|
||||
<g
|
||||
transform="translate(0,-0.9999969)"
|
||||
id="g3917-7"
|
||||
style="fill:#eceff1;fill-opacity:1;opacity:0.5;stroke:none;stroke-opacity:1" />
|
||||
<path
|
||||
id="rect4804"
|
||||
transform="translate(0,852.36218)"
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#eceff1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 18,94 c -0.554,0 -1,0.446 -1,1 l 0,4 -4,0 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 4,0 0,4 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 l 0,-4 4,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 l -4,0 0,-4 c 0,-0.554 -0.446,-1 -1,-1 z m 8,6 a 8,8 0 0 1 -8,8 8,8 0 0 1 -8,-8 8,8 0 0 1 8,-8 8,8 0 0 1 8,8 z" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.9 KiB |
|
@ -0,0 +1,112 @@
|
|||
<?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.92.4 (5da689c313, 2019-01-14)"
|
||||
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="4"
|
||||
inkscape:cx="-81.038405"
|
||||
inkscape:cy="108.58132"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="709"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="false"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:bbox-paths="true"
|
||||
inkscape:snap-bbox-edge-midpoints="true"
|
||||
inkscape:bbox-nodes="true">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3040"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true" />
|
||||
<sodipodi:guide
|
||||
orientation="0,1"
|
||||
position="20,100"
|
||||
id="guide3893"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="18,190"
|
||||
id="guide3895"
|
||||
inkscape:locked="false" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Attribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Ebene 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-852.36218)">
|
||||
<path
|
||||
id="rect4694"
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.5;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 7,857.36218 28,0 0,190.00002 -28,0 c -1.108,0 -2,-0.892 -2,-2 L 5,859.36218 c 0,-1.108 0.892,-2 2,-2 z"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="sccssss" />
|
||||
<g
|
||||
transform="translate(0,-0.9999969)"
|
||||
id="g3917-7"
|
||||
style="fill:#eceff1;fill-opacity:1;opacity:0.5;stroke:none;stroke-opacity:1" />
|
||||
<path
|
||||
id="rect4804"
|
||||
transform="translate(0,852.36218)"
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 18,94 c -0.554,0 -1,0.446 -1,1 l 0,4 -4,0 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 4,0 0,4 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 l 0,-4 4,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 l -4,0 0,-4 c 0,-0.554 -0.446,-1 -1,-1 z m 8,6 a 8,8 0 0 1 -8,8 8,8 0 0 1 -8,-8 8,8 0 0 1 8,-8 8,8 0 0 1 8,8 z" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.8 KiB |
|
@ -0,0 +1,113 @@
|
|||
<?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.92.4 (5da689c313, 2019-01-14)"
|
||||
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="4"
|
||||
inkscape:cx="-28.526103"
|
||||
inkscape:cy="75.41215"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="709"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="false"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:bbox-paths="true"
|
||||
inkscape:snap-bbox-edge-midpoints="true"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape: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"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
orientation="1,0"
|
||||
position="18,190"
|
||||
id="guide3895"
|
||||
inkscape:locked="false" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Attribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Ebene 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-852.36218)">
|
||||
<path
|
||||
id="rect4694"
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.35;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 7,857.36218 28,0 0,190.00002 -28,0 c -1.108,0 -2,-0.892 -2,-2 L 5,859.36218 c 0,-1.108 0.892,-2 2,-2 z"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="sccssss" />
|
||||
<g
|
||||
transform="translate(0,-0.9999969)"
|
||||
id="g3917-7"
|
||||
style="fill:#eceff1;fill-opacity:1;opacity:0.5;stroke:none;stroke-opacity:1" />
|
||||
<path
|
||||
id="rect4804"
|
||||
transform="translate(0,852.36218)"
|
||||
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.87;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
d="m 18,94 c -0.554,0 -1,0.446 -1,1 l 0,4 -4,0 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 4,0 0,4 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 l 0,-4 4,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 l -4,0 0,-4 c 0,-0.554 -0.446,-1 -1,-1 z m 8,6 a 8,8 0 0 1 -8,8 8,8 0 0 1 -8,-8 8,8 0 0 1 8,-8 8,8 0 0 1 8,8 z" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.8 KiB |
|
@ -0,0 +1,100 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.0"
|
||||
id="Foreground"
|
||||
x="0px"
|
||||
y="0px"
|
||||
width="26"
|
||||
height="26"
|
||||
viewBox="0 0 18.909091 18.909091"
|
||||
enable-background="new 0 0 16 16"
|
||||
xml:space="preserve"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="close-active.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"><metadata
|
||||
id="metadata2399"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs2397" /><sodipodi:namedview
|
||||
inkscape:window-height="720"
|
||||
inkscape:window-width="1364"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
guidetolerance="10.0"
|
||||
gridtolerance="10.0"
|
||||
objecttolerance="10.0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#3e3e3e"
|
||||
id="base"
|
||||
showgrid="false"
|
||||
inkscape:zoom="11.313708"
|
||||
inkscape:cx="6.9788731"
|
||||
inkscape:cy="7.4229136"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="23"
|
||||
inkscape:current-layer="Foreground"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
borderlayer="true"
|
||||
inkscape:showpageshadow="false"
|
||||
inkscape:window-maximized="0"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:bbox-paths="true"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:snap-bbox-edge-midpoints="true"><inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid11246"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="-3.6363603"
|
||||
originy="-2.9090857" /></sodipodi:namedview><g
|
||||
id="g3175-4"
|
||||
transform="translate(1.8442616,0.64207471)"
|
||||
style="opacity:0.8"><g
|
||||
id="g3172-6" /></g><circle
|
||||
style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:#f70505;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path3808-4"
|
||||
cx="9.4545488"
|
||||
cy="10.181814"
|
||||
r="8" /><circle
|
||||
style="opacity:1;fill:#d8354a;fill-opacity:1;stroke:#f70505;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path3808"
|
||||
cx="9.4545488"
|
||||
cy="9.454545"
|
||||
r="8" /><g
|
||||
inkscape:label="window-close"
|
||||
id="g27275-6-6-6"
|
||||
style="display:inline;fill:#000000;fill-opacity:1"
|
||||
transform="matrix(0.72727272,0,0,0.72727272,4.1762041,2.78384)"><g
|
||||
transform="translate(-41,-760)"
|
||||
id="g27277-1-1-2"
|
||||
style="display:inline;fill:#000000;fill-opacity:1" /></g><g
|
||||
inkscape:label="window-close"
|
||||
id="g27275-6-6"
|
||||
style="display:inline;fill:#ffffff;fill-opacity:1"
|
||||
transform="matrix(0.72727273,0,0,0.72727273,4.2045495,3.5383247)"><g
|
||||
transform="translate(-41,-760)"
|
||||
id="g27277-1-1"
|
||||
style="display:inline;fill:#ffffff;fill-opacity:1"><path
|
||||
d="m 44.226475,764.17222 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 l 2.28125,2.28125 2.3125,-2.28125 c 0.265625,-0.2305 0.446672,-0.3055 0.6875,-0.3125 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 c 0.188188,0.18817 0.281242,0.45345 0.28125,0.71875 l 0,1 -1,0 c -0.265301,-1e-5 -0.530586,-0.0931 -0.71875,-0.28125 l -2.28125,-2.28125 -2.28125,2.28125 c -0.188164,0.18819 -0.45346,0.28125 -0.71875,0.28125 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 -2.28125,-2.28125 c -0.210742,-0.19463 -0.30316,-0.46925 -0.28125,-0.75 l 0,-1 z"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path27279-0-5"
|
||||
style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new"
|
||||
sodipodi:nodetypes="ccsccccccccccccccccccccccc" /></g></g></svg>
|
After Width: | Height: | Size: 4.9 KiB |
|
@ -0,0 +1,100 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.0"
|
||||
id="Foreground"
|
||||
x="0px"
|
||||
y="0px"
|
||||
width="26"
|
||||
height="26"
|
||||
viewBox="0 0 18.909091 18.909091"
|
||||
enable-background="new 0 0 16 16"
|
||||
xml:space="preserve"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="close-hover.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"><metadata
|
||||
id="metadata2399"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs2397" /><sodipodi:namedview
|
||||
inkscape:window-height="720"
|
||||
inkscape:window-width="1364"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
guidetolerance="10.0"
|
||||
gridtolerance="10.0"
|
||||
objecttolerance="10.0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#3e3e3e"
|
||||
id="base"
|
||||
showgrid="false"
|
||||
inkscape:zoom="11.313708"
|
||||
inkscape:cx="6.9788731"
|
||||
inkscape:cy="7.4229136"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="23"
|
||||
inkscape:current-layer="Foreground"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
borderlayer="true"
|
||||
inkscape:showpageshadow="false"
|
||||
inkscape:window-maximized="0"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:bbox-paths="true"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:snap-bbox-edge-midpoints="true"><inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid11246"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="-3.6363603"
|
||||
originy="-2.9090857" /></sodipodi:namedview><g
|
||||
id="g3175-4"
|
||||
transform="translate(1.8442616,0.64207471)"
|
||||
style="opacity:0.8"><g
|
||||
id="g3172-6" /></g><circle
|
||||
style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:#f70505;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path3808-4"
|
||||
cx="9.4545488"
|
||||
cy="10.181814"
|
||||
r="8" /><circle
|
||||
style="opacity:1;fill:#ff7a80;fill-opacity:1;stroke:#f70505;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path3808"
|
||||
cx="9.4545488"
|
||||
cy="9.454545"
|
||||
r="8" /><g
|
||||
inkscape:label="window-close"
|
||||
id="g27275-6-6-6"
|
||||
style="display:inline;fill:#000000;fill-opacity:1"
|
||||
transform="matrix(0.72727272,0,0,0.72727272,4.1762041,2.78384)"><g
|
||||
transform="translate(-41,-760)"
|
||||
id="g27277-1-1-2"
|
||||
style="display:inline;fill:#000000;fill-opacity:1" /></g><g
|
||||
inkscape:label="window-close"
|
||||
id="g27275-6-6"
|
||||
style="display:inline;fill:#ffffff;fill-opacity:1"
|
||||
transform="matrix(0.72727273,0,0,0.72727273,4.2045495,3.5383247)"><g
|
||||
transform="translate(-41,-760)"
|
||||
id="g27277-1-1"
|
||||
style="display:inline;fill:#ffffff;fill-opacity:1"><path
|
||||
d="m 44.226475,764.17222 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 l 2.28125,2.28125 2.3125,-2.28125 c 0.265625,-0.2305 0.446672,-0.3055 0.6875,-0.3125 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 c 0.188188,0.18817 0.281242,0.45345 0.28125,0.71875 l 0,1 -1,0 c -0.265301,-1e-5 -0.530586,-0.0931 -0.71875,-0.28125 l -2.28125,-2.28125 -2.28125,2.28125 c -0.188164,0.18819 -0.45346,0.28125 -0.71875,0.28125 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 -2.28125,-2.28125 c -0.210742,-0.19463 -0.30316,-0.46925 -0.28125,-0.75 l 0,-1 z"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path27279-0-5"
|
||||
style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new"
|
||||
sodipodi:nodetypes="ccsccccccccccccccccccccccc" /></g></g></svg>
|
After Width: | Height: | Size: 4.9 KiB |
|
@ -0,0 +1,100 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.0"
|
||||
id="Foreground"
|
||||
x="0px"
|
||||
y="0px"
|
||||
width="26"
|
||||
height="26"
|
||||
viewBox="0 0 18.909091 18.909091"
|
||||
enable-background="new 0 0 16 16"
|
||||
xml:space="preserve"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="close.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"><metadata
|
||||
id="metadata2399"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs2397" /><sodipodi:namedview
|
||||
inkscape:window-height="720"
|
||||
inkscape:window-width="1364"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
guidetolerance="10.0"
|
||||
gridtolerance="10.0"
|
||||
objecttolerance="10.0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#3e3e3e"
|
||||
id="base"
|
||||
showgrid="false"
|
||||
inkscape:zoom="11.313708"
|
||||
inkscape:cx="6.9788731"
|
||||
inkscape:cy="7.4229136"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="23"
|
||||
inkscape:current-layer="Foreground"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
borderlayer="true"
|
||||
inkscape:showpageshadow="false"
|
||||
inkscape:window-maximized="0"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:bbox-paths="true"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:snap-bbox-edge-midpoints="true"><inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid11246"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true"
|
||||
originx="-3.6363603"
|
||||
originy="-2.9090857" /></sodipodi:namedview><g
|
||||
id="g3175-4"
|
||||
transform="translate(1.8442616,0.64207471)"
|
||||
style="opacity:0.8"><g
|
||||
id="g3172-6" /></g><circle
|
||||
style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:#f70505;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path3808-4"
|
||||
cx="9.4545488"
|
||||
cy="10.181814"
|
||||
r="8" /><circle
|
||||
style="opacity:1;fill:#f75a61;fill-opacity:1;stroke:#f70505;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="path3808"
|
||||
cx="9.4545488"
|
||||
cy="9.454545"
|
||||
r="8" /><g
|
||||
inkscape:label="window-close"
|
||||
id="g27275-6-6-6"
|
||||
style="display:inline;fill:#000000;fill-opacity:1"
|
||||
transform="matrix(0.72727272,0,0,0.72727272,4.1762041,2.78384)"><g
|
||||
transform="translate(-41,-760)"
|
||||
id="g27277-1-1-2"
|
||||
style="display:inline;fill:#000000;fill-opacity:1" /></g><g
|
||||
inkscape:label="window-close"
|
||||
id="g27275-6-6"
|
||||
style="display:inline;fill:#ffffff;fill-opacity:1"
|
||||
transform="matrix(0.72727273,0,0,0.72727273,4.2045495,3.5383247)"><g
|
||||
transform="translate(-41,-760)"
|
||||
id="g27277-1-1"
|
||||
style="display:inline;fill:#ffffff;fill-opacity:1"><path
|
||||
d="m 44.226475,764.17222 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 l 2.28125,2.28125 2.3125,-2.28125 c 0.265625,-0.2305 0.446672,-0.3055 0.6875,-0.3125 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 c 0.188188,0.18817 0.281242,0.45345 0.28125,0.71875 l 0,1 -1,0 c -0.265301,-1e-5 -0.530586,-0.0931 -0.71875,-0.28125 l -2.28125,-2.28125 -2.28125,2.28125 c -0.188164,0.18819 -0.45346,0.28125 -0.71875,0.28125 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 -2.28125,-2.28125 c -0.210742,-0.19463 -0.30316,-0.46925 -0.28125,-0.75 l 0,-1 z"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path27279-0-5"
|
||||
style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new"
|
||||
sodipodi:nodetypes="ccsccccccccccccccccccccccc" /></g></g></svg>
|
After Width: | Height: | Size: 4.8 KiB |
|
@ -0,0 +1,89 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="104"
|
||||
height="104"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="corner-ripple.svg">
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.875"
|
||||
inkscape:cx="-12.731584"
|
||||
inkscape:cy="51.861491"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="709"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:document-rotation="0">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid2985"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Attribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-948.3622)">
|
||||
<circle
|
||||
style="opacity:0.5;fill:#6887cd;fill-opacity:1;stroke:none"
|
||||
id="corner-ripple"
|
||||
inkscape:label="#path2987"
|
||||
cx="52"
|
||||
cy="1000.3622"
|
||||
r="48" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.7 KiB |
|
@ -0,0 +1,88 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="50"
|
||||
height="20"
|
||||
viewBox="0 0 50 20"
|
||||
version="1.1"
|
||||
id="svg6"
|
||||
sodipodi:docname="toggle-off.svg"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
|
||||
<metadata
|
||||
id="metadata12">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs10" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="704"
|
||||
id="namedview8"
|
||||
showgrid="false"
|
||||
inkscape:zoom="4.775"
|
||||
inkscape:cx="19.157491"
|
||||
inkscape:cy="18.778767"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg6" />
|
||||
<circle
|
||||
cx="10"
|
||||
cy="10"
|
||||
r="6"
|
||||
id="circle4"
|
||||
style="fill:#ffffff" />
|
||||
<g
|
||||
style="display:inline"
|
||||
transform="translate(0.02128202,-1032.3623)"
|
||||
id="toggle-off"
|
||||
inkscape:label="Layer 1">
|
||||
<g
|
||||
transform="translate(-5.1851991,-0.59123127)"
|
||||
id="g4562">
|
||||
<g
|
||||
id="g4556"
|
||||
transform="matrix(1.0109881,0,0,0.96970664,-0.43462179,32.056001)">
|
||||
<path
|
||||
id="rect4140"
|
||||
d="m 15.787004,1034.4777 h 29 c 4.432,0 8,3.568 8,8 0,4.432 -3.568,8 -8,8 h -29 c -4.432,0 -8.0000005,-3.568 -8.0000005,-8 0,-4.432 3.5680005,-8 8.0000005,-8 z"
|
||||
style="fill:#535353;fill-opacity:1;stroke:#555555;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<circle
|
||||
r="8.2498779"
|
||||
cy="1042.4775"
|
||||
cx="15.744821"
|
||||
id="circle4587"
|
||||
style="opacity:0.35;fill:#333333;fill-opacity:1;stroke:none;stroke-width:1.37497962" />
|
||||
<circle
|
||||
style="fill:#d8d8d8;fill-opacity:1;stroke:none;stroke-width:1.20311427"
|
||||
id="circle4531"
|
||||
cx="15.744821"
|
||||
cy="1042.4775"
|
||||
r="7.2186861" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.7 KiB |
|
@ -0,0 +1,153 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="50"
|
||||
height="20"
|
||||
viewBox="0 0 50 20"
|
||||
version="1.1"
|
||||
id="svg6"
|
||||
sodipodi:docname="toggle-on.svg"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
|
||||
<metadata
|
||||
id="metadata12">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs10">
|
||||
<linearGradient
|
||||
gradientTransform="translate(14.787004,0.11552347)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="1034.3622"
|
||||
x2="15"
|
||||
y1="1050.3622"
|
||||
x1="15"
|
||||
id="linearGradient4521"
|
||||
xlink:href="#linearGradient4519"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
id="linearGradient4519"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop4515"
|
||||
offset="0"
|
||||
style="stop-color:#004bdb;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4517"
|
||||
offset="1"
|
||||
style="stop-color:#498dd5;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
gradientTransform="translate(14.787004,0.11552347)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="1034.3622"
|
||||
x2="19"
|
||||
y1="1050.3622"
|
||||
x1="19"
|
||||
id="linearGradient4529"
|
||||
xlink:href="#linearGradient4527"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
id="linearGradient4527"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop4523"
|
||||
offset="0"
|
||||
style="stop-color:#2100db;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop4525"
|
||||
offset="1"
|
||||
style="stop-color:#277bd6;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<filter
|
||||
height="1.0722142"
|
||||
y="-0.036107175"
|
||||
width="1.0717869"
|
||||
x="-0.035893459"
|
||||
id="filter4549"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
inkscape:collect="always">
|
||||
<feGaussianBlur
|
||||
id="feGaussianBlur4551"
|
||||
stdDeviation="0.21888099"
|
||||
inkscape:collect="always" />
|
||||
</filter>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="704"
|
||||
id="namedview8"
|
||||
showgrid="true"
|
||||
inkscape:zoom="4.775"
|
||||
inkscape:cx="-26.507258"
|
||||
inkscape:cy="13.936062"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg6">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid58" />
|
||||
</sodipodi:namedview>
|
||||
<circle
|
||||
cx="30"
|
||||
cy="10"
|
||||
r="6"
|
||||
id="circle4"
|
||||
style="fill:#ffffff" />
|
||||
<g
|
||||
style="display:inline"
|
||||
transform="translate(2.0514095e-5,-1032.3623)"
|
||||
id="toggle-on"
|
||||
inkscape:label="Layer 1">
|
||||
<g
|
||||
transform="translate(-5.1851991,-0.59123127)"
|
||||
id="g4562-7">
|
||||
<g
|
||||
id="g4556-0"
|
||||
transform="matrix(1.0109881,0,0,0.96970664,-0.43462179,32.056001)">
|
||||
<path
|
||||
id="rect4140-9"
|
||||
d="m 15.787004,1034.4777 h 29 c 4.432,0 8,3.568 8,8 0,4.432 -3.568,8 -8,8 h -29 c -4.432,0 -8.0000005,-3.568 -8.0000005,-8 0,-4.432 3.5680005,-8 8.0000005,-8 z"
|
||||
style="fill:url(#linearGradient4521);fill-opacity:1;stroke:url(#linearGradient4529);stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<ellipse
|
||||
transform="matrix(1.0073647,0,0,1.0073647,14.206039,-7.5823938)"
|
||||
ry="7.2743769"
|
||||
rx="7.3176894"
|
||||
cy="1042.701"
|
||||
cx="30.144405"
|
||||
id="path4142"
|
||||
style="fill:#00429b;fill-opacity:1;stroke:none;stroke-width:1.21599948;filter:url(#filter4549)" />
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.16666663"
|
||||
id="circle4531-3"
|
||||
cx="44.787003"
|
||||
cy="1042.4777"
|
||||
r="7" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.5 KiB |
|
@ -0,0 +1,89 @@
|
|||
// When color definition differs for dark and light variant,
|
||||
// it gets @if ed depending on $variant
|
||||
|
||||
$base_color: if($variant =='light', #ffffff, #242424);
|
||||
$text_color: if($variant == 'light', #363636, #dadada);
|
||||
$bg_color: if($variant =='light', #f5f5f5, #333333);
|
||||
$fg_color: if($variant =='light', #242424, #dedede);
|
||||
$alt_fg_color: if($variant=='light', #383838, #3d3d3d);
|
||||
|
||||
$selected_fg_color: #ffffff;
|
||||
$selected_bg_color: if($variant == 'light', #315bef, #315bef);
|
||||
|
||||
$alt_selected_bg_color: lighten($selected_bg_color, 6%);
|
||||
$selected_borders_color: darken($selected_bg_color, 20%);
|
||||
$borders_color: if($variant =='light', rgba(#000000, 0.15), rgba(#ffffff, 0.12));
|
||||
$borders_bottom_color: if($variant =='light', rgba(#000000, 0.27), rgba(#ffffff, 0.12));
|
||||
$dark_borders_color: if($variant =='light', rgba(#000000, 0.15), rgba(#000000, 0.15));
|
||||
$solid_borders_color: if($variant == 'light', darken($bg_color, 15%), lighten($bg_color, 8%));
|
||||
$dark_solid_borders_color: if($variant == 'light', darken($bg_color, 15%), darken($bg_color, 5%));
|
||||
$highlight: if($variant =='light', rgba(#ffffff, 0.13), rgba(#ffffff, 0.10));
|
||||
|
||||
$link_color: if($variant == 'light', darken($selected_bg_color, 10%), lighten($selected_bg_color, 20%));
|
||||
$link_visited_color: if($variant == 'light', darken($text_color, 5%), lighten($text_color, 10%));
|
||||
|
||||
$selection_mode_bg: #6887cd;
|
||||
$selection_mode_fg: $selected_fg_color;
|
||||
$warning_color: #F27835;
|
||||
$error_color: #FC4138;
|
||||
$warning_fg_color: #ffffff;
|
||||
$error_fg_color: #ffffff;
|
||||
$success_color: #71c837;
|
||||
$destructive_color: #db5b5b;
|
||||
$suggested_color: #3484e2;
|
||||
$destructive_fg_color: #ffffff;
|
||||
$suggested_fg_color: #ffffff;
|
||||
|
||||
$progress_color: $selected_bg_color;
|
||||
$drop_target_color: #F08437;
|
||||
|
||||
$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: if($variant == 'light', #e5e5e5, #373737);
|
||||
$header_highlight: if($variant == 'dark', #434343, #f5f5f5);
|
||||
$header_top: if($variant == 'dark', #434343, #e9e9e9);
|
||||
$header_middle: if($variant == 'dark', #3e3e3e, #e2e2e2);
|
||||
$header_bottom: if($variant == 'dark', #383838, #d2d2d2);
|
||||
|
||||
$header_bg_backdrop: if($variant == 'light', #F6F6F6, #313131);
|
||||
$header_border: if($variant=='light', #a1a1a1, #101010);
|
||||
|
||||
$header_fg: if($variant=='light', #575757, #FDFDFD);
|
||||
|
||||
$dark_sidebar_bg: if($variant=='light', #f6f6f6, #3B3B3B);
|
||||
$dark_sidebar_fg: $text_color;
|
||||
$dark_sidebar_border: if($variant=='light', darken(opacify($dark_sidebar_bg, 1), 5%), lighten(opacify($dark_sidebar_bg, 1), 5%));
|
||||
$sidebar_theme_color: if($variant=='light', #C7C7C7, rgba(#C7C7C7, 0.25));
|
||||
|
||||
$osd_fg_color: #dadada;
|
||||
$osd_bg_color: #2a2a2a;
|
||||
|
||||
$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: $osd_button_border;
|
||||
|
||||
$panel_bg: if($variant == 'light', #FEFEFE, #2a2a2a);
|
||||
$panel_fg: $text_color;
|
||||
$panel_top_color: if($variant == 'dark', #333333, #f5f5f5);
|
||||
$panel_bottom_color: if($variant == 'dark', #2a2a2a, #e2e2e2);
|
||||
$panel_border_color: if($variant =='light', rgba(#000000, 0.2), rgba(#000000, 0.72));
|
||||
|
||||
$entry_bg: if($variant=='light', $base_color, lighten($base_color, 0%));
|
||||
$entry_border: if($variant == 'light', #cfd6e6, darken($borders_color, 0%));
|
||||
$entry_bottom_border: $borders_bottom_color;
|
||||
$entry_highlight: if($variant == 'light', rgba($selection_mode_bg, 0.75), darken($selection_mode_bg, 15%));
|
||||
|
||||
$button_bg: if($variant == 'light', #ffffff, #656565);
|
||||
$button_border: $borders_color;
|
||||
$button_active_border: #487afa;
|
||||
$button_highlight: if($variant == 'light', #ffffff, rgba(#ffffff, 0.1));
|
||||
$button_borders: if($variant == 'light', $button_border, $dark_borders_color);
|
||||
$button_borders_hover: if($variant == 'light', $button_border, $dark_borders_color);
|
||||
$button_borders_active: if($variant == 'light', $button_active_border, $dark_borders_color);
|
|
@ -0,0 +1,129 @@
|
|||
// 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;
|
||||
border: 1px solid $borders_color;
|
||||
background-color: $entry_bg;
|
||||
}
|
||||
|
||||
@if $t==focus {
|
||||
color: $text_color;
|
||||
border: 1px solid $selection_mode_bg;
|
||||
background-color: $entry_bg;
|
||||
box-shadow: 0 0 0 2px $entry_highlight;
|
||||
}
|
||||
|
||||
@if $t==insensitive {
|
||||
color: $insensitive_fg_color;
|
||||
border: 1px solid $entry_border;
|
||||
background-color: transparentize($entry_bg, 0.45);
|
||||
}
|
||||
|
||||
@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: none;
|
||||
|
||||
@if $t==normal {
|
||||
color: $fg_color;
|
||||
border: 1px solid $button_borders;
|
||||
background-color: $button_bg;
|
||||
box-shadow: inset 0 1px $button_highlight;
|
||||
}
|
||||
|
||||
@else if $t==hover {
|
||||
color: if($variant == 'light', darken($fg_color, 10%), lighten($fg_color, 10%));
|
||||
border: 1px solid $button_borders;
|
||||
background-color: if($variant=='light', #ffffff, lighten($button_bg, 3%));
|
||||
box-shadow: inset 0 1px rgba($button_highlight, 0.12);
|
||||
}
|
||||
|
||||
@else if $t==focus {
|
||||
color: $fg_color;
|
||||
background-color: $button_bg;
|
||||
border: 1px solid $selected_bg_color;
|
||||
box-shadow: inset 0 1px rgba($button_highlight, 0.12);
|
||||
}
|
||||
|
||||
@else if $t==focus-hover {
|
||||
color: if($variant == 'light', darken($fg_color, 10%), lighten($fg_color, 10%));
|
||||
background-color: if($variant=='light', #ffffff, lighten($button_bg, 3%));
|
||||
border: 1px solid $selected_bg_color;
|
||||
box-shadow: inset 0 1px rgba($button_highlight, 0.12);
|
||||
}
|
||||
|
||||
@else if $t==active {
|
||||
color: $selected_fg_color;
|
||||
background-color: $selected_bg_color;
|
||||
border: 1px solid $button_borders_active;
|
||||
}
|
||||
|
||||
@else if $t==insensitive {
|
||||
color: $insensitive_fg_color;
|
||||
border: 1px solid if($variant == 'light', $button_border, $dark_borders_color);
|
||||
background-color: rgba($button_bg, 0.55);
|
||||
}
|
||||
|
||||
@else if $t==osd {
|
||||
color: $osd_fg_color;
|
||||
background-color: $osd_button_bg;
|
||||
}
|
||||
|
||||
@else if $t==osd-hover {
|
||||
color: $osd_fg_color;
|
||||
background-color: opacify(lighten($osd_button_bg, 7%), 0.1);
|
||||
}
|
||||
|
||||
@else if $t==osd-active {
|
||||
color: $selected_fg_color;
|
||||
background-color: $selected_bg_color;
|
||||
}
|
||||
|
||||
@else if $t==osd-insensitive {
|
||||
color: $osd_insensitive_fg_color;
|
||||
background-color: transparentize($osd_button_bg, 0.15);
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 51 KiB |
After Width: | Height: | Size: 50 KiB |
After Width: | Height: | Size: 157 KiB |