diff options
Diffstat (limited to 'gnome-shell')
44 files changed, 0 insertions, 9266 deletions
diff --git a/gnome-shell/Gemfile b/gnome-shell/Gemfile deleted file mode 100644 index c177689..0000000 --- a/gnome-shell/Gemfile +++ /dev/null @@ -1,3 +0,0 @@ -source 'https://rubygems.org' - -gem "sass", "~> 3.4.0" diff --git a/gnome-shell/Gemfile.lock b/gnome-shell/Gemfile.lock deleted file mode 100644 index f64766f..0000000 --- a/gnome-shell/Gemfile.lock +++ /dev/null @@ -1,10 +0,0 @@ -GEM - remote: https://rubygems.org/ - specs: - sass (3.4.10) - -PLATFORMS - ruby - -DEPENDENCIES - sass (~> 3.4.0) diff --git a/gnome-shell/_colors.scss b/gnome-shell/_colors.scss deleted file mode 100644 index b551bac..0000000 --- a/gnome-shell/_colors.scss +++ /dev/null @@ -1,58 +0,0 @@ -// When color definition differs for dark and light variant, -// it gets @if ed depending on $variant - - -$base_color: #ffffff; -$text_color: #5c616c; -$bg_color: #f9fafb; -$fg_color: #5c616c; - -$selected_fg_color: #ffffff; -$selected_bg_color: #5294E2; -$selected_borders_color: darken($selected_bg_color, 20%); -$borders_color: darken($bg_color,9%); - -$link_color: darken($selected_bg_color,10%); -$link_visited_color: darken($selected_bg_color,20%); - -$selection_mode_bg: rgba(36, 80, 130, 0.95); -$warning_color: #F27835; -$error_color: #FC4138; -$success_color: #73d216; -$destructive_color: #FA4349; -$suggested_color: #9EA4B5; - -$osd_fg_color: #A8ADB5; -$osd_bg_color: transparentize(#3c4049, 0.05); -$osd_button_bg: darken($osd_bg_color, 3%); - -$osd_insensitive_bg_color: darken($osd_bg_color, 3%); -$osd_insensitive_fg_color: mix($osd_fg_color, opacify($osd_bg_color, 1), 30%); -$osd_borders_color: transparentize(black, 0.3); - - -$tooltip_bg: $osd_bg_color; -$tooltip_fg: #edf5fb; -$tooltip_borders_color: transparentize(white, 0.9); - -//insensitive state derived colors -$insensitive_fg_color: transparentize($fg_color, 0.45); -$insensitive_bg_color: mix($bg_color, $base_color, 40%); - - -$entry_bg: $base_color; -$entry_border: #cfd6e6; -$entry_focus_border: $selected_bg_color; - -$button_bg: lighten($bg_color, 1%); -$button_border: $entry_border; - -$header_bg: transparentize(#e7e8eb, 0.05); -$header_fg: saturate(transparentize($fg_color, 0.2), 10%); - -$dark_sidebar_bg: $osd_bg_color; -$dark_sidebar_fg: $osd_fg_color; -$dark_sidebar_border: $dark_sidebar_bg; - -$panel_bg: darken($dark_sidebar_bg, 10%); -$panel_fg: $dark_sidebar_fg; diff --git a/gnome-shell/_common.scss b/gnome-shell/_common.scss deleted file mode 100644 index a7ebf69..0000000 --- a/gnome-shell/_common.scss +++ /dev/null @@ -1,2220 +0,0 @@ -//This is the RIGHT PLACE to edit the stylesheet - -$panel-corner-radius: 0px; - -/* Copyright 2009, 2015 Red Hat, Inc. - * - * Portions adapted from Mx's data/style/default.css - * Copyright 2009 Intel Corporation - * - * This program is free software; you can redistribute it and/or modify it - * under the terms and conditions of the GNU Lesser General Public License, - * version 2.1, as published by the Free Software Foundation. - * - * This program is distributed in the hope it will be useful, but WITHOUT ANY - * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS - * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for - * more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this program; if not, write to the Free Software Foundation, - * Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. - */ - -// -// Globals -// -$font-size: 9; -//$font-family: Cantarell, Sans-Serif; -$font-family: Futura Bk bt, Sans-Serif; -$_bubble_bg_color: opacify($osd_bg_color,0.25); -$_bubble_fg_color: $osd_fg_color; -$_bubble_borders_color: transparentize($osd_fg_color,0.8); - -stage { - font-family: $font-family; - @include fontsize($font-size); - color: $fg_color; -} - -%reset_style { - background-color: transparent !important; - background-gradient-direction: none !important; - border: none !important; - border-radius: 0 !important; -} - -// -// Buttons -// -.button { - min-height: 20px; - padding: 5px 32px; - transition-duration: 0; - border-radius: 2px; - - @include button(normal); - - &:focus { @include button(focus); } - - &:hover { @include button(hover); } - - &:hover:focus { @include button(focus-hover); } - - &:active, &:active:focus { @include button(active); } - - &:insensitive { @include button(insensitive); } -} - -// -// Entries -// -StEntry { - padding: 7px; - caret-size: 1px; - selection-background-color: $selected_bg_color; - selected-color: $selected_fg_color; - transition-duration: 300ms; - border-radius: 20px; - - @include entry(normal); - - &:focus, &:hover { @include entry(focus); } - - &:insensitive { @include entry(insensitive); } - - StIcon.capslock-warning { - icon-size: 16px; - warning-color: $warning_color; - padding: 0 4px; - } -} - -// -// Scrollbars -// -StScrollView { - &.vfade { -st-vfade-offset: 0px; } - &.hfade { -st-hfade-offset: 0px; } -} - -StScrollBar { - - padding: 8px; - - StScrollView & { - min-width: 5px; - min-height: 5px; - } - - StBin#trough { - background-color: transparentize($base_color, 0.9); - border-radius: 8px; - } - - StButton#vhandle, StButton#hhandle { - border-radius: 4px; - background-color: mix($fg_color, $bg_color, 40%); - border: 0px solid; - margin: 0px; - - &:hover { background-color: mix($fg_color, $bg_color, 30%); } - - &:active { background-color: $selected_bg_color; } - } -} - -// -// Slider -// -.slider { - -slider-height: 4px; - -slider-background-color: $button_border; //background of the trough - -slider-border-color: transparentize(black, 1); //trough border color - -slider-active-background-color: $selected_bg_color; //active trough fill - -slider-active-border-color: transparentize(black, 1); //active trough border - -slider-border-width: 0; - -slider-handle-radius: 4px; - height: 18px; - border: 0 solid transparent; - border-right-width: 1px; - border-left-width: 5px; - color: transparent; -} - -// -// Check Boxes -// -.check-box { - - StBoxLayout { spacing: .8em; } - - StBin { - width: 16px; - height: 16px; - background-image: url("checkbox/checkbox-unchecked.svg"); - } - - &:focus Stbin { background-image: url("checkbox/checkbox-unchecked-focused.svg"); } - - &:checked Stbin { background-image: url("checkbox/checkbox-checked.svg"); } - - &:focus:checked Stbin { background-image: url("checkbox/checkbox-checked-focused.svg"); } -} - -// -// Switches -// -.toggle-switch { - width: 52px; - height: 24px; - background-size: contain; - - &-us, &-intl { - background-image: url("switch/switch-off.svg"); - - &:checked { background-image: url("switch/switch-on.svg"); } - } -} - -// -// Links -// -.shell-link { - color: $link_color; - - &:hover { color: lighten($link_color,10%); } -} - -// -// Modal Dialogs -// -.headline { font-size: 110%; } -.lightbox { background-color: black; } -.flashspot { background-color: white; } - -.modal-dialog { - border-radius: 3px; - color: $fg_color; - background-color: transparentize($bg_color, 1); - border: none; - border-image: url("misc/modal.svg") 10 10 10 10; - padding: 0 6px 6px 6px; - - > * { padding: 14px; } - - &-button-box { - spacing: 0px; - margin: 0px; - padding: 12px 24px; - background-color: opacify($osd_bg_color, 1); - border: solid 0px rgba(0,0,0,0.3); - border-top: 1px; - border-radius: 0px 0px 1px 1px; - - .button { - @include button(osd); - - &:hover { @include button(osd-hover); } - &:focus { color: $selected_bg_color; } - &:active { @include button(osd-active); } - &:insensitive { @include button(osd-insensitive); } - } - } - - .run-dialog-entry { width: 23em; } - .run-dialog-error-box { - padding-top: 5px; - spacing: 5px; - } - - //.run-dialog-button-box { padding-top: 1em; } - .run-dialog-label { - @include fontsize($font-size * 1.1); - font-weight: normal; - color: $fg_color; - padding-bottom: .8em; - } -} - -//.button-dialog-button-box { -//} - -.show-processes-dialog-subject, -.mount-question-dialog-subject, -.end-session-dialog-subject { //this should be a generic header class - @include fontsize($font-size * 1.2); - font-weight: bold; - color: $fg_color; -} - -// -// End Session Dialog -// -.end-session-dialog { - spacing: 42px; - //border: 3px solid $_bubble_borders_color; - - &-list { - padding-top: 20px; - } - - &-layout { - padding-left: 17px; - &:rtl { padding-right: 17px; } - } - - &-description { - width: 28em; - padding-bottom: 10px; - &:rtl { - text-align: right; - } - } - - &-warning { - width: 28em; - color: $warning_color; - padding-top: 6px; - &:rtl { - text-align: right; - } - } - - &-logout-icon { - border: 0px solid transparent; - border-radius: 2px; - width: 48px; - height: 48px; - background-size: contain; - } - - &-shutdown-icon { - color: $fg_color; - width: 48px; - height: 48px; - } - - &-inhibitor-layout { - spacing: 16px; - max-height: 200px; - padding-right: 10px; - padding-left: 10px; - } - - &-session-list, &-app-list { - spacing: 1em; - } - - &-list-header { - font-weight: bold; - &:rtl { text-align: right; } - } - - &-app-list-item, &-session-list-item { - spacing: 1em; - } - - &-app-list-item-name, &-session-list-item-name { - font-weight: bold; - } - - &-app-list-item-description { - color: lighten($fg_color,5%); - @include fontsize($font-size * 0.9); - } - - // Shutdown Button - .button:last-child { - color: $selected_fg_color; - background-color: $destructive_color; - border-color: $destructive_color; - - &:hover { - color: $selected_fg_color; - background-color: lighten($destructive_color, 9%); - border-color: lighten($destructive_color, 9%); - } - &:active { - color: $selected_fg_color; - background-color: darken($destructive_color, 5%); - border-color: darken($destructive_color, 5%); - } - } -} - -// -// ShellMountOperation Dialogs -// -.shell-mount-operation-icon { icon-size: 48px; } - -.show-processes-dialog, -.mount-question-dialog { - spacing: 24px; -} - -.show-processes-dialog-subject, -.mount-question-dialog-subject { - padding-top: 10px; - padding-left: 17px; - padding-bottom: 6px; - - &:rtl { - padding-left: 0px; - padding-right: 17px; - } -} - -.mount-question-dialog-subject { - max-width: 500px; -} - -.show-processes-dialog-description, -.mount-question-dialog-description { - padding-left: 17px; - width: 28em; - - &:rtl { - padding-right: 17px; - } -} - -.show-processes-dialog-app-list { - @include fontsize($font-size * 1.1); - max-height: 200px; - padding-top: 24px; - padding-left: 49px; - padding-right: 32px; - - &:rtl { - padding-right: 49px; - padding-left: 32px; - } -} - -.show-processes-dialog-app-list-item { - color: darken($fg_color,10%); - &:hover { color: $fg_color; } - &:ltr { padding-right: 1em; } - &:rtl { padding-left: 1em; } -} - -.show-processes-dialog-app-list-item-icon { - &:ltr { padding-right: 17px; } - &:rtl { padding-left: 17px; } -} - -.show-processes-dialog-app-list-item-name { - @include fontsize($font-size * 1.1); -} - -// -// Password or Authentication Dialog -// -.prompt-dialog { - //this is the width of the entire modal popup - width: 500px; - //border: 3px solid $_bubble_borders_color; - - &-main-layout { - spacing: 24px; - padding: 10px; - } - - &-message-layout { - spacing: 16px; - } - - &-headline { - @include fontsize($font-size * 1.3); - font-weight: bold; - color: $fg_color; - } - - &-descritption:rtl { - text-align: right; - } - - &-password-box { - spacing: 1em; - padding-bottom: 1em; - } - - &-error-label { - @include fontsize($font-size); - color: $error_color; - padding-bottom: 8px; - } - - &-info-label { - @include fontsize($font-size); - padding-bottom: 8px; - } - - &-null-label { - @include fontsize($font-size); - padding-bottom: 8px; - } -} - -.hidden { - color: transparentize(black, 1); -} - -// -// Polkit Dialog -// -.polkit-dialog-user { - - &-layout { - padding-left: 10px; - spacing: 10px; - &:rtl { - padding-left: 0px; - padding-right: 10px; - } - } - - &-root-label { - color: $warning_color; - } - - &-user-icon { - border-radius: 2px; - background-size: contain; - width: 48px; - height: 48px; - } -} - -// -// Network Agent Dialog -// -.network-dialog-secret-table { - spacing-rows: 15px; - spacing-columns: 1em; -} - -.keyring-dialog-control-table { - spacing-rows: 15px; - spacing-columns: 1em; -} - -// -// Popvers/Menus -// -.popup-menu { - min-width: 200px; - color: $fg_color; - border-image: url("menu/menu.svg") 10 10 35 14; - - .popup-menu-arrow { } //defined globally in the TOP BAR - .popup-sub-menu { - background: none; - box-shadow: none; - border-image: url("menu/submenu.svg") 8 8 2 2; - } - - .popup-menu-content { padding: 1em 0em 1em 0em; } - .popup-menu-item { - spacing: 12px; - - &:ltr { padding: .4em 3em .4em 0em; } - &:rtl { padding: .4em 0em .4em 3em; } - - &:checked { - background: none; - box-shadow: none; - font-weight: normal; - border-image: url("menu/submenu-open.svg") 8 8 2 2; - } - - &:active, &.selected { - color: $fg_color; - background-color: transparent; - border-image: url("menu/menu-hover.svg") 7 7 1 1; - } - - &:insensitive { - color: transparentize($fg_color, 0.5); - background: none; - } - } - - .popup-inactive-menu-item { //all icons and other graphical elements - color: $fg_color; - - &:insensitive { color: $insensitive_fg_color; } - } - //.popup-status-menu-item { font-weight: normal; color: pink; } //dunno what that is - &.panel-menu { - -boxpointer-gap: 0px; - margin-bottom: 1.75em; - } -} - -.popup-menu-ornament { - text-align: right; - margin-left: 10px; - width: 16px; -} - -.popup-menu-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(0,0,0,0.0); - -arrow-border-width: 1px; - -arrow-border-color: rgba(0,0,0,0.0); - -arrow-base: 0; - -arrow-rise: 0; -} - -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: $panel_bg; - -arrow-border-width: 1px; - -arrow-border-color: darken($panel_bg, 7%); - -arrow-base: 5; - -arrow-rise: 5; -} - -.popup-separator-menu-item { - //-margin-horizontal: 24px; - height: 2px; //not really the whole box - margin: 10px 0px; - background-color: transparent; - border: none; - border-image: url("menu/menu-separator.svg") 1 1 1 1; -} - -// Background menu -.background-menu { -boxpointer-gap: 4px; -arrow-rise: 0px; } - -// fallback menu -//- odd thing for styling App menu when apparently not running under shell. Light Adwaita styled -// app menu inside the main app window itself rather than the top bar -// - -// -// OSD -// -.osd-window { - text-align: center; - font-weight: bold; - spacing: 1em; - padding: 20px; - margin: 32px; - min-width: 64px; - min-height: 64px; - - color: $selected_fg_color; - background: none; - border: none; - border-radius: 5px; - border-image: url("misc/osd.svg") 10 10 9 11; - -.osd-monitor-label { font-size: 3em; } - - .level { - padding: 0; - height: 4px; - background-color: transparentize(black, 0.5); - border-radius: 2px; - color: $selected_bg_color; - } -} - -.resize-popup { - color: $osd_fg_color; - background: none; - border: none; - border-radius: 5px; - border-image: url("misc/osd.svg") 10 10 9 11; - padding: 12px; -} - -// -// Alt Tab Switcher -// -.switcher-popup { - padding: 8px; - spacing: 16px; -} - -.switcher-list { - background: none; - border: none; - border-image: url("misc/bg.svg") 10 10 35 14; - border-radius: 3px; - padding: 20px; - - &-item-container { spacing: 8px; } - - .item-box { - padding: 8px; - border-radius: 2px; - - &:outlined { - padding: 6px; - border: 1px solid $selected_bg_color; - } - - &:selected { - color: $selected_fg_color; - background-color: $selected_bg_color; - border: 1px solid $selected_bg_color; - - } - } - - .thumbnail-box { - padding: 2px; - spacing: 4px; - } - - .thumbnail { - width: 256px; - } - - .separator { - width: 1px; - background: transparentize($fg_color, 0.67); - } -} - -.switcher-arrow { - border-color: rgba(0,0,0,0); - color: $osd_fg_color; - - &:highlighted { - color: $selected_fg_color; - } -} - -.input-source-switcher-symbol { - font-size: 34pt; - width: 96px; - height: 96px; -} - -// -// Workspace Switcher -// -.workspace-switcher { - - background: transparent; - border: 0px; - border-radius: 0px; - padding: 0px; - spacing: 8px; - - &-group { padding: 12px; } - - &-container { - border-image: url("misc/bg.svg") 10 10 35 14; - border-radius: 3px; - padding: 20px; - padding-bottom: 24px; - } -} - -.ws-switcher-active-up, .ws-switcher-active-down { - height: 30px; - background-color: $selected_bg_color; - background-size: 96px; - border-radius: 2px; - border: 1px solid $selected_bg_color; -} - -.ws-switcher-active-up { - background-image: url("misc/ws-switch-arrow-up.png"); -} - -.ws-switcher-active-down { - background-image: url("misc/ws-switch-arrow-down.png"); -} - -.ws-switcher-box { - height: 96px; - background-color: transparentize(black, 0.67); - border-color: transparentize(black, 0.67); - border-radius: 2px; -} - -// -// Tiled window previews -// -.tile-preview { - background-color: transparentize($selected_bg_color, 0.65); - border: 1px solid $selected_bg_color; - - &-left.on-primary { - border-radius: $panel-corner-radius 0 0 0; - } - - &-right.on-primary { - border-radius: 0 $panel-corner-radius 0 0; - } - - &-left.tile-preview-right.on-primary { - border-radius: $panel-corner-radius $panel-corner-radius 0 0; - } -} - -// -// Top Bar -// -#panel { - background-color: $panel_bg; - border-color: darken($panel_bg, 9%); - border-bottom-width: 1px; - font-weight: bold; - height: 2.1em; - min-height: 26px; - - &.unlock-screen, - &.login-screen, - &.lock-screen { - background-color: transparent; - border-image: none; - } - - &:overview { background-color: transparentize(darken($panel_bg,10%), 0.15); } - - #panelLeft, #panelCenter { // spacing between activities<>app menu and such - spacing: 8px; - } - - .panel-corner { - -panel-corner-radius: $panel-corner-radius; - -panel-corner-background-color: transparentize(black, 1); - -panel-corner-border-width: 0px; - -panel-corner-border-color: black; - - &:active, &:overview, &:focus { - -panel-corner-border-color: black; - } - - &.lock-screen, &.login-screen, &unlock-screen { - -panel-corner-radius: 0; - -panel-corner-background-color: transparent; - -panel-corner-border-color: transparent; - } - } - - .panel-button { - -natural-hpadding: 12px; - -minimum-hpadding: 6px; - font-weight: bold; - color: $selected_fg_color; - transition-duration: 100ms; - - .app-menu-icon { - width: 0; - height: 0; - margin-left: 4px; - margin-right: 4px; - } - - &:hover { - color: $selected_fg_color; - background-color: transparentize(black, 0.83); - } - - &:active, &:overview, &:focus, &:checked { - color: $selected_fg_color; - background-color: $selected_bg_color; - box-shadow: none; - - & > .system-status-icon { icon-shadow: none; } - } - - .system-status-icon { icon-size: 16px; padding: 0 8px; } - .unlock-screen &, - .login-screen &, - .lock-screen & { - color: lighten($fg_color, 10%); - &:focus, &:hover, &:active { color: lighten($fg_color, 10%); } - } - } - - .panel-status-indicators-box, - .panel-status-menu-box { - spacing: 2px; - } - - .screencast-indicator { color: red; } -} - -// Activities button -#panelActivities > *, -#panelActivities:hover > *, -#panelActivities:focus > *, -#panelActivities:active > *, -#panelActivities:overview > *, -#panel:overview #panelActivities.panel-button:active > *, -#panel:overview #panelActivities.panel-button:focus > * { - background-image: url("misc/activities.svg"); - background-position: center top; - width: 24px; - height: 24px; - background-color: transparent !important; - background-gradient-direction: none !important; - border: 0 solid transparent !important; - text-shadow: 0 0 transparent !important; - transition-duration: 0ms !important; - box-shadow: none !important; - color: transparent; -} - - // a little unstructured mess: - - .system-switch-user-submenu-icon { - icon-size: 24px; - border: 1px solid transparentize($fg_color,0.6); - } - - #appMenu { - spinner-image: url("misc/process-working.svg"); - spacing: 4px; - - .label-shadow { color: transparent; } - } - - .aggregate-menu { - width: 360px; - .popup-menu-icon { padding: 0 4px; } - } - - .system-menu-action { - padding: 13px; - color: $fg_color; - border-radius: 32px; /* wish we could do 50% */ - border: 1px solid transparent; - - &:hover, &:focus { - transition-duration: 100ms; - padding: 13px; - color: $fg_color; - background-color: transparent; - border: 1px solid $selected_bg_color; - } - &:active { - color: $selected_fg_color; - background-color: $selected_bg_color; - border: 1px solid $selected_bg_color; - } - - & > StIcon { icon-size: 16px; } - } - -// -// Calendar popover -// -#calendarArea { - padding: 0.75em 1.0em; -} - -.calendar { - margin-bottom: 1em; -} - -.calendar, -.datemenu-today-button, -.datemenu-displays-box, -.message-list-sections { - margin: 0 1.5em; -} - -.datemenu-calendar-column { spacing: 0.5em; } -.datemenu-displays-section { padding-bottom: 3em; } - -.datemenu-today-button, -.world-clocks-button, -.message-list-section-title { - border-radius: 3px; - padding: .4em; -} - -.message-list-section-list:ltr { - padding-left: .4em; -} - -.message-list-section-list:rtl { - padding-right: .4em; -} - -.datemenu-today-button, -.world-clocks-button, -.message-list-section-title { - padding: 7px 10px 7px 10px; - border: 1px solid transparentize($base_color, 1); - - &:hover, &:focus { - @include button(hover); - } - - &:active { - @include button(active); - } -} - -.datemenu-today-button .day-label { -} - -.datemenu-today-button .date-label { - font-size: 1.5em; -} - -.world-clocks-header, -.message-list-section-title { - color: transparentize($fg_color, 0.6); - font-weight: bold; -} - -.world-clocks-button:active .world-clocks-header { - color: $selected_fg_color; -} - -.world-clocks-grid { - spacing-rows: 0.4em; -} - -.calendar-month-label { - color: $fg_color; - font-weight: bold; - padding: 8px 0; - &:focus {} -} - -.pager-button { - color: transparent; - background-color: transparent; - width: 32px; - border-radius: 2px; - - &:focus, &:hover, &:active { background-color: transparent; } -} - -//arrow back -.calendar-change-month-back { - background-image: url("misc/calendar-arrow-left.svg"); - - &:focus, &:hover { background-image: url("misc/calendar-arrow-left-hover.svg"); } - - &:active { background-image: url("misc/calendar-arrow-left.svg"); } - - &:rtl { - background-image: url("misc/calendar-arrow-right.svg"); - - &:focus, &:hover { background-image: url("misc/calendar-arrow-right-hover.svg"); } - - &:active { background-image: url("misc/calendar-arrow-right.svg"); } - } -} - -//arrow forward -.calendar-change-month-forward { - background-image: url("misc/calendar-arrow-right.svg"); - - &:focus, &:hover { background-image: url("misc/calendar-arrow-right-hover.svg"); } - - &:active { background-image: url("misc/calendar-arrow-right.svg"); } - - &:rtl { - background-image: url("misc/calendar-arrow-left.svg"); - - &:focus, &:hover { background-image: url("misc/calendar-arrow-left-hover.svg"); } - - &:active { background-image: url("misc/calendar-arrow-left.svg"); } - } -} - -.calendar-day-base { - font-size: 80%; - text-align: center; - width: 25px; height: 25px; - padding: 0.1em; - margin: 2px; - border-radius: 12.5px; - - &:hover, &:focus { background-color: transparentize(black, 0.9); } - - &:active { - color: $fg_color; - background-color: transparentize(black, 0.85); - border-width: 0; //avoid jumparound due to today - } - - &.calendar-day-heading { //day of week heading - color: transparentize($fg_color, 0.15); - margin-top: 1em; - font-size: 70%; - } -} - -.calendar-day { //border collapse hack - see calendar.js - border-width: 0; - color: transparentize($fg_color, 0.2); -} - -.calendar-day-top { border-top-width: 0; } - -.calendar-day-left { border-left-width: 0; } - -.calendar-work-day { - -} - -.calendar-nonwork-day { - color: $fg_color; - font-weight: bold; -} - -.calendar-today, -.calendar-today:active, -.calendar-today:focus, -.calendar-today:hover { - font-weight: bold; - color: $selected_fg_color; - background-color: $selected_bg_color; - border-width: 0; -} - -.calendar-day-with-events { - color: $selected_bg_color; - font-weight: bold; -} - -.calendar-today.calendar-day-with-events { color: $selected_fg_color; } - -.calendar-other-month-day { - color: transparentize($fg_color, 0.7); - opacity: 1; -} - -// -// Message list -// -.message-list { - width: 420px; -} - -.message-list-sections { - spacing: 1.5em; -} - -.message-list-section, -.message-list-section-list { - spacing: 0.7em; -} - -.message-list-section-title-box { - spacing: 0.4em; -} - -.message-list-section-close > StIcon { - icon-size: 16px; - border-radius: 8px; - color: $selected_fg_color; - background-color: transparentize($fg_color, 0.5); -} - -.message-list-section-close:hover > StIcon, -.message-list-section-close:focus > StIcon { - color: $selected_fg_color; - background-color: $fg_color; -} - -.message-list-section-close:active > StIcon { - color: $selected_fg_color; - background-color: $selected_bg_color; -} - -.message { - @include button(normal); - padding: 4px; - - &:hover, &:focus { @include button(hover); } - &:active { @include button(active); } -} - -.message-icon-bin { - padding: 8px 0px 8px 8px; - - &:rtl { padding: 8px 8px 8px 0px; } -} - -.message-icon-bin > StIcon { - icon-size: 48px; -} - -.message-secondary-bin { - color: transparentize($fg_color, 0.6); -} - -.message-secondary-bin > StIcon { - icon-size: 16px; -} - -.message-title { - font-weight: bold; -} -.message-content { - padding: 8px; -} - - -// -//Activities Ripples -// -.ripple-box { - width: 52px; - height: 52px; - background-image: url("misc/corner-ripple-ltr.svg"); - background-size: contain; - - &:rtl { background-image: url("misc/corner-ripple-rtl.svg"); } -} - -// not really top bar only -.popup-menu-arrow { width: 16px; height: 16px; } -.popup-menu-icon { icon-size: 16px; } - - -// -//Close buttons -// -.window-close { - background-image: url("misc/close.svg"); - background-size: 26px; - height: 26px; - width: 26px; - - &:hover { - background-image: url("misc/close-hover.svg"); - background-size: 26px; - height: 26px; - width: 26px; - } - - &:active { - background-image: url("misc/close-active.svg"); - background-size: 26px; - height: 26px; - width: 26px; - } -} - -.window-close { - -shell-close-overlap: 11px; -} - -// -// Network Dialogs -// -.nm-dialog { - max-height: 500px; - min-height: 450px; - min-width: 470px; - - &-content { spacing: 20px; } - - &-header-hbox { spacing: 10px; } - - &-airplane-box { spacing: 12px; } - - &-airplane-headline { - font-size: 1.1em; - font-weight: bold; - text-align: center; - } - - &-airplane-text { color: $fg_color; } - - &-header-icon { icon-size: 32px; } - - &-scroll-view { - border: 1px solid $borders_color; - border-radius: 2px; - background-color: $base_color; - } - - &-header { - font-weight: bold; - font-size: 1.2em; - } - - &-item { - font-size: 1em; - border-bottom: 0px solid; - padding: 12px; - spacing: 0px; - - &:selected { - background-color: $selected_bg_color; - color: $selected_fg_color; - } - } - - &-icons { spacing: .5em; } - - &-icon { icon-size: 16px; } -} - -.no-networks-label { color: $insensitive_fg_color; } - -.no-networks-box { spacing: 12px; } - -// -// Overview -// -#overview { spacing: 24px; } - -.overview-controls { padding-bottom: 32px; } - -.window-picker { //container around window thumbnails - -horizontal-spacing: 32px; - -vertical-spacing: 32px; - padding-left: 32px; - padding-right: 32px; - padding-bottom: 48px; - - &.external-monitor { padding: 32px; } -} - -.window-clone-border { - border: 3px solid transparentize($selected_bg_color, 0.2); - border-radius: 4px; - box-shadow: inset 0px 0px 0px 1px transparentize($selected_bg_color, 1); -} - -.window-caption, .window-caption:hover { - spacing: 25px; - color: $osd_fg_color; - background-color: transparentize(black, 0.3); - border-radius: 2px; - padding: 4px 12px; - -shell-caption-spacing: 12px; -} - -// -// Search Entry -// -.search-entry { - width: 320px; - padding: 7px 9px; - border-radius: 20px; - border: 1px solid transparentize(black, 0.75); - background-color: transparentize($entry_bg, 0.1); - - &:focus { - padding: 7px 9px; - } - - .search-entry-icon { - icon-size: 16px; - padding: 0 4px; - color: $fg_color; - } - - &:hover, &:focus { - color: $selected_fg_color; - caret-color: $selected_fg_color; - background-color: $selected_bg_color; - - .search-entry-icon { color: $selected_fg_color; } - } -} - -// -// Search Results -// -#searchResultsBin { max-width: 1000px; } - -#searchResultsContent { - padding-left: 20px; - padding-right: 20px; - spacing: 16px; -} - -// This should be equal to #searchResultsContent spacing -.search-section { spacing: 16px; } - -// This is the space between the provider icon and the results container -.search-section-content { spacing: 32px; } - -// "no results" -.search-statustext { - @extend %status_text; -} - -.list-search-results { spacing: 3px; } - -.search-section-separator { - background-color: transparentize(white, 0.8); - -margin-horizontal: 1.5em; - height: 1px; -} - -.list-search-result-content { spacing: 12px; padding: 12px; } - -.list-search-result-title { font-size: 1.5em; color: $selected_fg_color; } - -.list-search-result-description { color: darken($selected_fg_color, 20%); } - -.search-provider-icon { padding: 15px; } -.search-provider-icon-more { - width: 16px; - height: 16px; - background-image: url("misc/more-results.svg"); -} - -// -// Dash -// -#dash { - font-size: 1em; - color: $osd_fg_color; - background-color: transparentize($panel_bg, 0.08); - padding: 6px 0px 6px 0px; - border-color: transparentize(darken($panel_bg, 9%), 0.08); - border-radius: 0px 3px 3px 0px; - - .right &, - &:rtl { - padding: 6px 0px 6px 0px; - border-radius: 3px 0 0 3px; - } - - .bottom & { - padding: 0px 6px 0px 6px; - border-radius: 3px 3px 0 0; - } - - .top & { - padding: 0px 6px 0px 6px; - border-radius: 0 0 3px 3px; - } - - .placeholder { - background-image: url("misc/dash-placeholder.svg"); - background-size: contain; - height: 24px; - } - - .empty-dash-drop-target { - width: 24px; - height: 24px; - } -} - -.dash-item-container > StWidget { - padding: 0px 4px 0px 5px; - - .right &, &:rtl { padding: 0px 5px 0px 4px; } - .bottom & { padding: 4px 0px 5px 0px; } - .top & { padding: 5px 0px 4px 0px; } -} - -//osd tooltip -.dash-label { - border-radius: 3px; - padding: 4px 12px; - color: $selected_fg_color; - background-color: transparentize(black, 0.3); - text-align: center; - -x-offset: 3px; - - .bottom &, .top & { - -y-offset: 3px; - -x-offset: 0; - } -} - -// Dash Buttons -#dash .app-well-app { - - .overview-icon, - .right & .overview-icon, - .bottom & .overview-icon, - .top & .overview-icon { - padding: 10px; - } - - &:hover .overview-icon, - .right &:hover .overview-icon, - .bottom &:hover .overview-icon, - .top &:hover .overview-icon { - background-color: $selected_bg_color; - } - - &:active .overview-icon, - .right &:active .overview-icon, - .bottom &:active .overview-icon, - .top &:active .overview-icon { - box-shadow: none; - background-color: darken($selected_bg_color, 10%); - } - - &-running-dot { - width: 11px; - height: 2px; - margin-bottom: 6px; - background-color: $selected_bg_color; - } -} - -.show-apps { - - .overview-icon { - padding: 11px; - background-color: transparentize(black, 0.5); - border-radius: 2px; - border: 0px solid; - } - - &:hover .overview-icon { - background-color: transparentize(black, 0.3); - color: $selected_bg_color; - } - - &:active .overview-icon, - &:active .show-apps-icon, - &:checked .overview-icon, - &:checked .show-apps-icon { - color: $selected_fg_color; - background-color: $selected_bg_color; - box-shadow: none; - transition-duration: 0ms; - } -} - -// -// App Vault/Grid -// -.icon-grid { - spacing: 30px; - -shell-grid-horizontal-item-size: 136px; - -shell-grid-vertical-item-size: 136px; - - .overview-icon { icon-size: 96px; } -} - -//.app-display { spacing: 20px; } - -//favorties | all toggle container -.app-view-controls { padding-bottom: 32px; } - -//favorties | all toggle button -.app-view-control { - padding: 4px 32px; - - color: transparentize($selected_fg_color, 0.2); - background-color: transparentize(darken($panel_bg,10%), 0.15); - border-color: transparentize($osd_fg_color, 0.7); - - &:hover { - color: $selected_fg_color; - background-color: transparentize(darken($panel_bg,10%), 0.15); - border-color: $selected_bg_color; - } - &:checked { @include button(osd-active); } - - &:first-child:ltr, &:last-child:rtl { - border-radius: 2px 0 0 2px; - - - &:hover { } - } - &:last-child:ltr, &:first-child:rtl { - border-radius: 0 2px 2px 0; - - &:hover { } - } -} - -// -// Icon Tile -// -.search-provider-icon, -.list-search-result { - @extend %icon_tile; - - &:active, &:checked { background-color: transparentize(darken($osd_bg_color,10%),.1); } - - &:focus, &:selected, &:hover { - background-color: transparentize($osd_fg_color,.6); - transition-duration: 200ms; - } -} -.app-well-app, -.app-well-app.app-folder, -//.show-apps, -.grid-search-result { - - .overview-icon { - @extend %icon_tile; - } - - &:active .overview-icon, - &:checked .overview-icon { - background-color: transparentize(darken($osd_bg_color,10%),.1); - box-shadow: inset 0 0 $selected_bg_color; - } - - &:hover .overview-icon, - &:focus .overview-icon, - &:selected .overview-icon { - background-color: transparentize($osd_fg_color,.6); - transition-duration: 0ms; - border-image: none; - background-image: none; - } -} - -.app-well-app-running-dot { //running apps indicator - width: 20px; - height: 2px; - margin-bottom: 4px; - background-color: $selected_bg_color; -} - -%icon_tile { - color: $selected_fg_color; - border-radius: 2px; - padding: 6px; - border: 1px solid transparent; - transition-duration: 0ms; - text-align: center; -} - -// -// Collections -// -.app-well-app.app-folder { - - > .overview-icon { - background-color: transparentize(darken($panel_bg,10%), 0.15); - border: 1px solid transparentize($osd_fg_color, 0.7); - } - - &:hover > .overview-icon { - background-color: lighten($panel_bg, 10%); - } - - &:active > .overview-icon, &:checked > .overview-icon { - background-color: $selected_bg_color; - box-shadow: none; - } - - &:focus > .overview-icon { - background-color: $selected_bg_color; - } -} - -.app-folder-popup { //expanded collection - -arrow-border-radius: 2px; - -arrow-background-color: transparentize(darken($panel_bg,10%), 0.15); - -arrow-border-color: transparentize($osd_fg_color, 0.7); - -arrow-border-width: 1px; - -arrow-base: 5; - -arrow-rise: 5; -} -.app-folder-popup-bin { padding: 5px; } -.app-folder-icon { - padding: 5px; - spacing-rows: 5px; - spacing-columns: 5px; -} - -.page-indicator { - padding: 15px 20px; - - .page-indicator-icon { - width: 18px; - height: 18px; - background-image: url(misc/page-indicator-inactive.svg); - } - - &:hover .page-indicator-icon { background-image: url(misc/page-indicator-hover.svg); } - &:active .page-indicator-icon { background-image: url(misc/page-indicator-active.svg); } - &:checked .page-indicator-icon, - &:checked:active { background-image: url(misc/page-indicator-checked.svg); } -} - -.no-frequent-applications-label { @extend %status_text; } - -.app-well-app > .overview-icon.overview-icon-with-label, -.grid-search-result .overview-icon.overview-icon-with-label { - padding: 10px 8px 5px 8px; - spacing: 4px; -} - -// -// Workspace pager -// -.workspace-thumbnails { //container ala dash - visible-width: 40px; //amount visible before hover - spacing: 11px; - padding: 12px; - padding-right: 7px; - border-radius: 3px 0 0 3px; - background-color: transparentize($panel_bg, 0.08); - border-color: transparentize(darken($panel_bg, 9%), 0.08); - - &:rtl { - padding: 12px; - padding-left: 7px; - border-radius: 0 3px 3px 0; - } -} - -.workspace-thumbnail-indicator { - border: 4px solid transparentize($selected_bg_color, 0.2); - border-radius: 1px; - padding: 1px; -} - -//Some hacks I don't even -.search-display > StBoxLayout, -.all-apps, -.frequent-apps > StBoxLayout { - // horizontal padding to make sure scrollbars or dash don't overlap content - padding: 0px 88px 10px 88px; -} - -%status_text { - font-size: 2em; - font-weight: bold; - color: $fg_color; -} - -// -// Notifications & Message Tray -// -.url-highlighter { link-color: $link_color; } - -// Banners -.notification-banner, -.notification-banner:hover, -.notification-banner:focus { - font-size: 1em; - width: 34em; - margin: 5px; - padding: 10px; - border-radius: 2px; - color: $fg_color; - background-color: $bg_color; - border: 0px solid transparent; - box-shadow: 0 1px 5px transparentize(black, 0.8); - - .notification-icon { padding: 5px; } - - .notification-content { padding: 5px; spacing: 5px; } - - .secondary-icon { icon-size: 1.09em; } - - .notification-actions { - background-color: transparent; - padding: 2px 2px 0 2px; - spacing: 1px; - } - .notification-button { - padding: 4px 4px 5px; - @extend .button; - - &:first-child, &:last-child { - border-radius: 2px; - } - } -} - -.secondary-icon { icon-size: 1.09em; } - -// Chat Bubbles -.chat-body { spacing: 5px; } -.chat-response { margin: 5px; } -.chat-log-message { color: $fg_color; } -.chat-new-group { padding-top: 1em; } -.chat-received { - padding-left: 4px; - - &:rtl { padding-left: 0px; padding-right: 4px; } -} - -.chat-sent { - padding-left: 18pt; - color: $selected_bg_color; - - &:rtl { padding-left: 0; padding-right: 18pt; } -} - -.chat-meta-message { - padding-left: 4px; - font-size: 9pt; - font-weight: bold; - color: transparentize($fg_color, 0.4); - - &:rtl { padding-left: 0; padding-right: 4px; } -} - -.subscription-message { font-style: italic; } - -// Hotplug -.hotplug-transient-box { - spacing: 6px; - padding: 2px 72px 2px 12px; -} - - .hotplug-notification-item { - padding: 2px 10px; - &:focus { padding: 1px 71px 1px 11px; } - } - - .hotplug-notification-item-icon { - icon-size: 24px; - padding: 2px 5px; - } - - .hotplug-resident-box { spacing: 8px; } - - .hotplug-resident-mount { - spacing: 8px; - border-radius: 4px; - &:hover { background-color: transparentize($bg_color,0.7); } - } - - .hotplug-resident-mount-label { - color: inherit; - padding-left: 6px; - } - - .hotplug-resident-mount-icon { - icon-size: 24px; - padding-left: 6px; - } - - .hotplug-resident-eject-icon { - icon-size: 16px; - } - - .hotplug-resident-eject-button { - padding: 7px; - border-radius: 5px; - color: pink; - } - -// Eeeky things - -$legacy_icon_size: 24px; - -.legacy-tray { - background-color: $panel_bg; - border-width: 0; - - &:ltr { border-radius: 0 2px 0 0; border-left-width: 0; } - &:rtl { border-radius: 2px 0 0 0; border-right-width: 0; } -} - -.legacy-tray-handle, -.legacy-tray-icon { - padding: 6px; - & StIcon { icon-size: $legacy_icon_size; } - &:hover, &:focus { background-color: transparentize($fg_color,0.9); } -} - -.legacy-tray-icon-box { - spacing: 12px; - &:ltr { padding-left: 12px; } - &:rtl { padding-right: 12px; } - & StButton { width: $legacy_icon_size; height: $legacy_icon_size } -} - -// Magnifier - -.magnifier-zoom-region { - border: 2px solid $selected_bg_color; - &.full-screen { border-width: 0; } -} - -// -// On-Screen Keyboard -// -#keyboard { - background-color: transparentize($panel_bg, 0.05); -} - - .keyboard-layout { - spacing: 10px; - padding: 10px; - } - - .keyboard-row { - spacing: 15px; - } - - .keyboard-key { - @include button(osd); - min-height: 2em; - min-width: 2em; - font-size: 14pt; - font-weight: bold; - border-radius: 3px; - box-shadow: none; - &:focus { @include button(focus); } - &:hover,&:checked { @include button(osd-hover); } - &:active { @include button(osd-active);} - &:grayed { //FIXME - background-color: $osd_bg_color; - color: $osd_fg_color; - border-color: $osd_borders_color; - } - } - - .keyboard-subkeys { //long press on a key popup - color: white; - padding: 5px; - -arrow-border-radius: 2px; - -arrow-background-color: transparentize($panel_bg, 0.05); - -arrow-border-width: 0px; - -arrow-border-color: transparent; - -arrow-base: 20px; - -arrow-rise: 10px; - -boxpointer-gap: 5px; - } - -// -// IBus Candidate Popup -// -.candidate-popup-content { - padding: 0.5em; - spacing: 0.3em; - color: $osd_fg_color; -} - - .candidate-index { - padding: 0 0.5em 0 0; - color: lighten($osd_fg_color, 10%); - } - - .candidate-box { - padding: 0.3em 0.5em 0.3em 0.5em; - border-radius: 4px; - color: $osd_fg_color; - &:selected,&:hover { background-color: $selected_bg_color; color: $selected_fg_color; } - } - - .candidate-page-button-box { - height: 2em; - .vertical & { padding-top: 0.5em; } - .horizontal & { padding-left: 0.5em; } - } - - .candidate-page-button { - padding: 4px; - } - - .candidate-page-button-previous { border-radius: 2px 0px 0px 2px; border-right-width: 0; } - .candidate-page-button-next { border-radius: 0px 2px 2px 0px; } - .candidate-page-button-icon { icon-size: 1em; } - -// -// Auth Dialogs & Screen Shield -// -.framed-user-icon { - background-size: contain; - border: 0px solid transparent; - color: $fg_color; - border-radius: 2px; - &:hover { - border-color: transparent; - color: lighten($osd_fg_color,30%); - } -} - -// -// Login Dialog -// -.login-dialog-banner-view { - padding-top: 24px; - max-width: 23em; -} - -.login-dialog { - //reset - border: none; - background-color: transparent; - - .modal-dialog-button-box { spacing: 3px; } - .modal-dialog-button { - padding: 3px 18px; - &:default { - @include button(normal); - &:hover,&:focus { @include button(hover); } - &:active { @include button(active); } - &:insensitive { @include button(insensitive); } - } - } -} - - .login-dialog-logo-bin { padding: 24px 0px; } - .login-dialog-banner { color: darken($osd_fg_color,10%); } - .login-dialog-button-box { spacing: 5px; } - .login-dialog-message-warning { color: $warning_color; } - .login-dialog-message-hint { padding-top: 0; padding-bottom: 20px; } - .login-dialog-user-selection-box { - padding: 100px 0px; - .login-dialog-not-listed-label { - padding-left: 2px; - .login-dialog-not-listed-button:focus &, - .login-dialog-not-listed-button:hover & { - color: $osd_fg_color; - } - } - } - .login-dialog-not-listed-label { - font-size: 90%; - font-weight: bold; - color: darken($osd_fg_color,30%); - padding-top: 1em; - } - - .login-dialog-user-list-view { -st-vfade-offset: 1em; } - .login-dialog-user-list { - spacing: 12px; - padding: .2em; - width: 23em; - &:expanded .login-dialog-user-list-item:focus { background-color: $selected_bg_color; color: $selected_fg_color; } - &:expanded .login-dialog-user-list-item:logged-in { border-right: 2px solid $selected_bg_color; } - } - .login-dialog-user-list-item { - border-radius: 5px; - padding: .2em; - color: darken($osd_fg_color,30%); - &:ltr { padding-right: 1em; } - &:rtl { padding-left: 1em; } - &:hover { background-color: $selected_bg_color; color: $selected_fg_color; } - .login-dialog-timed-login-indicator { - height: 2px; - margin: 2px 0 0 0; - background-color: $osd_fg_color; - } - &:focus .login-dialog-timed-login-indicator { background-color: $selected_fg_color; } - } - - .login-dialog-username, - .user-widget-label { - color: $osd_fg_color; - font-size: 120%; - font-weight: bold; - text-align: left; - padding-left: 15px; - } - .user-widget-label { - &:ltr { padding-left: 18px; } - &:rtl { padding-right: 18px; } - } - - .login-dialog-prompt-layout { - padding-top: 24px; - padding-bottom: 12px; - spacing: 8px; - width: 23em; - } - - .login-dialog-prompt-label { - color: darken($osd_fg_color, 20%); - font-size: 110%; - padding-top: 1em; - } - - .login-dialog-session-list-button StIcon { - icon-size: 1.25em; - } - - .login-dialog-session-list-button { - color: darken($osd_fg_color,30%); - &:hover,&:focus { color: $osd_fg_color; } - &:active { color: darken($osd_fg_color, 50%); } - } - -// -// Screen Shield -// -.screen-shield-arrows { - padding-bottom: 3em; -} - -.screen-shield-arrows Gjs_Arrow { - color: white; - width: 80px; - height: 48px; - -arrow-thickness: 12px; - -arrow-shadow: 0 1px 1px rgba(0,0,0,0.4); -} - -.screen-shield-clock { - color: white; - text-shadow: 0px 1px 2px rgba(0,0,0,0.6); - font-weight: bold; - text-align: center; - padding-bottom: 1.5em; -} - -.screen-shield-clock-time { - font-size: 72pt; - text-shadow: 0px 2px 2px rgba(0,0,0,0.4); -} - -.screen-shield-clock-date { font-size: 28pt; } - -.screen-shield-notifications-container { - spacing: 6px; - width: 30em; - background-color: transparent; - max-height: 500px; - .summary-notification-stack-scrollview { - padding-top: 0; - padding-bottom: 0; - } - - .notification, - .screen-shield-notification-source { - padding: 12px 6px; - border: 1px solid $_bubble_borders_color; - background-color: transparentize($osd_bg_color,0.5); - color: $_bubble_fg_color; - border-radius: 4px; - } - .notification { margin-right: 15px; } //compensate for space allocated to the scrollbar -} - - -.screen-shield-notification-label { - font-weight: bold; - padding: 0px 0px 0px 12px; -} - -.screen-shield-notification-count-text { padding: 0px 0px 0px 12px; } - -#panel.lock-screen { background-color: transparentize($_bubble_bg_color, 0.5); } - -.screen-shield-background { //just the shadow, really - background: black; - box-shadow: 0px 2px 4px transparentize(black,0.6); -} - -#lockDialogGroup { - background: #2e3436 url(misc/noise-texture.png); - background-repeat: repeat; -} - -#screenShieldNotifications { - StButton#vhandle, StButton#hhandle { - background-color: transparentize($bg_color,0.7); - &:hover, &:focus { background-color: transparentize($bg_color,0.5); } - &:active { background-color: transparentize($selected_bg_color,0.5); } - } -} - -// -// Looking Glass -// -#LookingGlassDialog { - spacing: 4px; - padding: 8px 8px 10px 8px; - background-color: transparentize(black, 0.3); - border: 1px solid black; - border-image: url("misc/osd.svg") 10 10 9 11; - border-radius: 2px; - color: $osd_fg_color; - - & > #Toolbar { - padding: 3px; - border: 1px solid darken($osd_bg_color, 7%); - background-color: transparent; - border-radius: 0px; - } - .labels { spacing: 4px; } - .notebook-tab { - -natural-hpadding: 12px; - -minimum-hpadding: 6px; - font-weight: bold; - color: $osd_fg_color; - transition-duration: 100ms; - padding-left: .3em; - padding-right: .3em; - &:hover { - color: $selected_fg_color; - text-shadow: black 0px 2px 2px; - } - &:selected { - border-bottom-width: 0px; - color: $selected_bg_color; - text-shadow: black 0px 2px 2px; - } - } - StBoxLayout#EvalBox { padding: 4px; spacing: 4px; } - StBoxLayout#ResultsArea { spacing: 4px; } -} - - .lg-dialog { - StEntry { - background-color: transparentize(black, 0.7); - color: $osd_fg_color; - selection-background-color: $selected_bg_color; - selected-color: $selected_fg_color; - border-color: transparentize($osd_fg_color, 0.7); - - &:focus { border-color: $selected_bg_color; } - } - .shell-link { - color: $link_color; - &:hover { color: lighten($link_color,10%); } - } - } - - .lg-completions-text { - font-size: .9em; - font-style: italic; - } - - .lg-obj-inspector-title { - spacing: 4px; - } - - .lg-obj-inspector-button { - border: 1px solid gray; - padding: 4px; - border-radius: 4px; - &:hover { border: 1px solid #ffffff; } - } - - #lookingGlassExtensions { padding: 4px; } - - .lg-extensions-list { - padding: 4px; - spacing: 6px; - } - - .lg-extension { - border: 1px solid $borders_color; - border-radius: 2px; - background-color: $bg_color; - padding: 4px; - } - - .lg-extension-name { - font-weight: bold; - } - - .lg-extension-meta { - spacing: 6px; - } - - #LookingGlassPropertyInspector { - background: transparentize(black, 0.3); - border: 1px solid grey; - border-radius: 2px; - padding: 6px; - } diff --git a/gnome-shell/_drawing.scss b/gnome-shell/_drawing.scss deleted file mode 100644 index 0e60551..0000000 --- a/gnome-shell/_drawing.scss +++ /dev/null @@ -1,140 +0,0 @@ -// Drawing mixins - -// generic drawing of more complex things - -// provide font size in rem, with px fallback -@mixin fontsize($size: 24, $base: 16) { - font-size: round($size) + pt; - //font-size: ($size / $base) * 1rem; -} - -// Entries - -@mixin entry($t, $dark:false) { -// -// Entries drawing function -// - //@extend %reset_style; - box-shadow: inset 0 0 transparentize($base_color, 1); - - @if $t==normal { - color: $text_color; - background-color: $entry_bg; - border: 1px solid $entry_border; - } - - @if $t==focus { - color: $fg_color; - background-color: $entry_bg; - border: 1px solid $selected_bg_color; - } - - @if $t==insensitive { - color: $insensitive_fg_color; - background-color: mix($entry_bg, $bg_color, 55%); - border-color: 1px solid mix($entry_border, $bg_color, 55%); - } -} - -// Buttons - -@mixin button($t) { -// -// Button drawing function -// - //@extend %reset_style; - - text-shadow: 0 1px transparentize($base_color, 1); - box-shadow: inset 0 0 transparentize($base_color, 1); - - @if $t==normal { - // - // normal button - // - color: $fg_color; - background-color: $button_bg; - border: 1px solid $button_border; - } - - @else if $t==focus { - // - // focused button - // - color: $fg_color; - background-color: $button_bg; - border: 1px solid $selected_bg_color; - } - - @else if $t==focus-hover { - // - // focused button - // - color: $selected_bg_color; - background-color: $button_bg; - border: 1px solid $selected_bg_color; - } - - @else if $t==hover { - // - // hovered button - // - color: $fg_color; - background-color: $button_bg; - border: 1px solid $selected_bg_color; - } - - @else if $t==active { - // - // pushed button - // - color: $selected_fg_color; - background-color: $selected_bg_color; - border: 1px solid $selected_bg_color; - } - - @else if $t==insensitive { - // - // insensitive button - // - color: $insensitive_fg_color; - border: 1px solid transparentize($button_border, 0.45); - background-color: transparentize($button_bg, 0.45); - } - - @else if $t==osd { - // - // normal osd button - // - color: lighten($osd_fg_color, 10%); - outline-color: transparentize($osd_fg_color, 0.7); - border-color: transparentize($osd_fg_color, 0.7); - background-color: darken($osd_bg_color, 5%); - } - - @else if $t==osd-hover { - // - // active osd button - // - color: $selected_fg_color; - border-color: $selected_bg_color; - background-color: darken($osd_bg_color, 5%); - } - - @else if $t==osd-active { - // - // active osd button - // - color: $selected_fg_color; - border-color: $selected_bg_color; - background-color: $selected_bg_color; - } - - @else if $t==osd-insensitive { - // - // insensitive osd button - // - color: $osd_insensitive_fg_color; - border-color: transparentize($osd_fg_color, 0.8); - background-image: $osd_insensitive_bg_color; - } -} diff --git a/gnome-shell/checkbox/checkbox-checked-focused.svg b/gnome-shell/checkbox/checkbox-checked-focused.svg deleted file mode 100644 index 983e7f8..0000000 --- a/gnome-shell/checkbox/checkbox-checked-focused.svg +++ /dev/null @@ -1,223 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="16" - height="16" - id="svg2" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="checkbox-checked-focused.svg" - inkscape:export-filename="/home/steffen/.local/share/themes/Vertex-git/gtk-3.0/assets/dark/checkbox-checked.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90"> - <defs - id="defs4"> - <linearGradient - id="linearGradient7704"> - <stop - style="stop-color:#4080fb;stop-opacity:0.74509805;" - offset="0" - id="stop7706" /> - <stop - style="stop-color:#4080fb;stop-opacity:0.49197862;" - offset="1" - id="stop7708" /> - </linearGradient> - <linearGradient - id="linearGradient7694"> - <stop - style="stop-color:#0f0f0f;stop-opacity:1;" - offset="0" - id="stop7696" /> - <stop - id="stop7698" - offset="0.078125" - style="stop-color:#171717;stop-opacity:1;" /> - <stop - style="stop-color:#171717;stop-opacity:1;" - offset="0.97355771" - id="stop7700" /> - <stop - style="stop-color:#1b1b1b;stop-opacity:1;" - offset="1" - id="stop7702" /> - </linearGradient> - <linearGradient - id="linearGradient3969-0-4-9"> - <stop - style="stop-color:#353537;stop-opacity:1;" - offset="0" - id="stop3971-2-2-7" /> - <stop - style="stop-color:#4d4f52;stop-opacity:1;" - offset="1" - id="stop3973-0-5-3" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="-9.3871547" - inkscape:cy="3.2519169" - inkscape:document-units="px" - inkscape:current-layer="checkbox-checked-dark" - showgrid="true" - inkscape:snap-bbox="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:showpageshadow="false" - showborder="true" - inkscape:window-width="929" - inkscape:window-height="614" - inkscape:window-x="230" - inkscape:window-y="97" - inkscape:window-maximized="0" - inkscape:snap-global="true" - inkscape:bbox-paths="true" - inkscape:snap-bbox-edge-midpoints="true" - inkscape:bbox-nodes="true"> - <inkscape:grid - type="xygrid" - id="grid2985" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - </sodipodi:namedview> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1036.3622)"> - <g - id="checkbox-checked-dark" - inkscape:label="Ebene 1" - transform="translate(16.837126,14.010408)"> - <g - transform="translate(-52.837126,1021.9896)" - style="display:inline;opacity:1" - id="checkbox-checked" - inkscape:label="#g10758"> - <g - inkscape:label="#g22047" - id="checkbox-unchecked-5" - style="display:inline" - transform="translate(19,0)"> - <g - id="sdsd-7" - inkscape:label="#g21853"> - <g - transform="translate(0,-30)" - inkscape:label="#g14325" - id="scdsdcd-5"> - <g - transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)" - id="g15812-6-6-1-5" - style="display:inline"> - <g - style="display:inline" - id="g5489-2-9-6-8-8-53" - transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)"> - <g - id="g5428-8-1-4-0-0-4" /> - </g> - </g> - <rect - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - id="rect13523-7" - width="16" - height="16" - x="17" - y="30.362183" /> - <g - id="g5400-6"> - <rect - rx="1.9999943" - y="31.362196" - x="18.000006" - height="13.99999" - width="13.999989" - id="rect5147-9-1-5-7-6-7" - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#5294e2;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" - ry="1.9999917" /> - </g> - </g> - </g> - </g> - <g - inkscape:label="Ebene 1" - id="checkbox-checked-dark-7" - transform="translate(36,-1036)" - style="display:inline"> - <g - id="g3981-6-4" - transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,729.95475,305.0582)" - style="opacity:0.85;fill:#1a1a1a;fill-opacity:1" /> - <g - id="g4049-2" - transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,727.94436,295.31123)"> - <g - id="g4056-7" - transform="translate(12.374375,11.531233)"> - <g - id="g3981-0" - transform="translate(-3,-4.9999826)" - style="fill:#3b3c3e;fill-opacity:1"> - <rect - ry="0.66666085" - rx="0.66666085" - y="1033.3622" - x="8" - height="1.9999826" - width="5" - id="rect3977-39" - style="fill:#ffffff;fill-opacity:1;stroke:none" /> - <rect - ry="0" - y="1027.3622" - x="11" - height="7.9999828" - width="2" - id="rect3979-7" - style="fill:#ffffff;fill-opacity:1;stroke:none" /> - </g> - <rect - style="fill:#eeeeee;fill-opacity:0;stroke:none" - id="rect4047-81" - width="3" - height="1" - x="5" - y="-8" - transform="translate(0,1036.3622)" /> - </g> - </g> - </g> - </g> - </g> - </g> -</svg> diff --git a/gnome-shell/checkbox/checkbox-checked.svg b/gnome-shell/checkbox/checkbox-checked.svg deleted file mode 100644 index e8da8e6..0000000 --- a/gnome-shell/checkbox/checkbox-checked.svg +++ /dev/null @@ -1,223 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="16" - height="16" - id="svg2" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="checkbox-checked.svg" - inkscape:export-filename="/home/steffen/.local/share/themes/Vertex-git/gtk-3.0/assets/dark/checkbox-checked.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90"> - <defs - id="defs4"> - <linearGradient - id="linearGradient7704"> - <stop - style="stop-color:#4080fb;stop-opacity:0.74509805;" - offset="0" - id="stop7706" /> - <stop - style="stop-color:#4080fb;stop-opacity:0.49197862;" - offset="1" - id="stop7708" /> - </linearGradient> - <linearGradient - id="linearGradient7694"> - <stop - style="stop-color:#0f0f0f;stop-opacity:1;" - offset="0" - id="stop7696" /> - <stop - id="stop7698" - offset="0.078125" - style="stop-color:#171717;stop-opacity:1;" /> - <stop - style="stop-color:#171717;stop-opacity:1;" - offset="0.97355771" - id="stop7700" /> - <stop - style="stop-color:#1b1b1b;stop-opacity:1;" - offset="1" - id="stop7702" /> - </linearGradient> - <linearGradient - id="linearGradient3969-0-4-9"> - <stop - style="stop-color:#353537;stop-opacity:1;" - offset="0" - id="stop3971-2-2-7" /> - <stop - style="stop-color:#4d4f52;stop-opacity:1;" - offset="1" - id="stop3973-0-5-3" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="-9.3871547" - inkscape:cy="3.2519169" - inkscape:document-units="px" - inkscape:current-layer="checkbox-checked-dark" - showgrid="true" - inkscape:snap-bbox="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:showpageshadow="false" - showborder="true" - inkscape:window-width="929" - inkscape:window-height="614" - inkscape:window-x="230" - inkscape:window-y="97" - inkscape:window-maximized="0" - inkscape:snap-global="true" - inkscape:bbox-paths="true" - inkscape:snap-bbox-edge-midpoints="true" - inkscape:bbox-nodes="true"> - <inkscape:grid - type="xygrid" - id="grid2985" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - </sodipodi:namedview> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1036.3622)"> - <g - id="checkbox-checked-dark" - inkscape:label="Ebene 1" - transform="translate(16.837126,14.010408)"> - <g - transform="translate(-52.837126,1021.9896)" - style="display:inline;opacity:1" - id="checkbox-checked" - inkscape:label="#g10758"> - <g - inkscape:label="#g22047" - id="checkbox-unchecked-5" - style="display:inline" - transform="translate(19,0)"> - <g - id="sdsd-7" - inkscape:label="#g21853"> - <g - transform="translate(0,-30)" - inkscape:label="#g14325" - id="scdsdcd-5"> - <g - transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)" - id="g15812-6-6-1-5" - style="display:inline"> - <g - style="display:inline" - id="g5489-2-9-6-8-8-53" - transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)"> - <g - id="g5428-8-1-4-0-0-4" /> - </g> - </g> - <rect - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - id="rect13523-7" - width="16" - height="16" - x="17" - y="30.362183" /> - <g - id="g5400-6"> - <rect - rx="1.9999943" - y="31.362196" - x="18.000006" - height="13.99999" - width="13.999989" - id="rect5147-9-1-5-7-6-7" - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#5294e2;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" - ry="1.9999917" /> - </g> - </g> - </g> - </g> - <g - inkscape:label="Ebene 1" - id="checkbox-checked-dark-7" - transform="translate(36,-1036)" - style="display:inline"> - <g - id="g3981-6-4" - transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,729.95475,305.0582)" - style="opacity:0.85;fill:#1a1a1a;fill-opacity:1" /> - <g - id="g4049-2" - transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,727.94436,295.31123)"> - <g - id="g4056-7" - transform="translate(12.374375,11.531233)"> - <g - id="g3981-0" - transform="translate(-3,-4.9999826)" - style="fill:#3b3c3e;fill-opacity:1"> - <rect - ry="0.66666085" - rx="0.66666085" - y="1033.3622" - x="8" - height="1.9999826" - width="5" - id="rect3977-39" - style="fill:#ffffff;fill-opacity:1;stroke:none" /> - <rect - ry="0" - y="1027.3622" - x="11" - height="7.9999828" - width="2" - id="rect3979-7" - style="fill:#ffffff;fill-opacity:1;stroke:none" /> - </g> - <rect - style="fill:#eeeeee;fill-opacity:0;stroke:none" - id="rect4047-81" - width="3" - height="1" - x="5" - y="-8" - transform="translate(0,1036.3622)" /> - </g> - </g> - </g> - </g> - </g> - </g> -</svg> diff --git a/gnome-shell/checkbox/checkbox-unchecked-focused.svg b/gnome-shell/checkbox/checkbox-unchecked-focused.svg deleted file mode 100644 index 6c2f719..0000000 --- a/gnome-shell/checkbox/checkbox-unchecked-focused.svg +++ /dev/null @@ -1,141 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="16" - height="16" - id="svg2" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="checkbox-unchecked-focused.svg" - inkscape:export-filename="/home/steffen/.local/share/themes/neu2/gtk-3.0/assets/dark/checkbox-unchecked.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90"> - <defs - id="defs4"> - <linearGradient - id="linearGradient3768-6"> - <stop - style="stop-color:#0f0f0f;stop-opacity:1;" - offset="0" - id="stop3770-6" /> - <stop - id="stop3778-2" - offset="0.078125" - style="stop-color:#171717;stop-opacity:1;" /> - <stop - style="stop-color:#171717;stop-opacity:1;" - offset="0.97355771" - id="stop3774-0" /> - <stop - style="stop-color:#1b1b1b;stop-opacity:1;" - offset="1" - id="stop3776-1" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="5.9470841" - inkscape:cy="-0.94340514" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:snap-bbox="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:showpageshadow="false" - showborder="true" - inkscape:window-width="1006" - inkscape:window-height="723" - inkscape:window-x="358" - inkscape:window-y="22" - inkscape:window-maximized="0" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid2985" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - </sodipodi:namedview> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1036.3622)"> - <g - transform="translate(-17,1036)" - style="display:inline;opacity:1" - id="checkbox-unchecked-9" - inkscape:label="#g22047"> - <g - inkscape:label="#g21853" - id="sdsd-0"> - <g - id="scdsdcd-0" - inkscape:label="#g14325" - transform="translate(0,-30)"> - <g - style="display:inline" - id="g15812-6-6-1-4" - transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)"> - <g - transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)" - id="g5489-2-9-6-8-8-9" - style="display:inline"> - <g - id="g5428-8-1-4-0-0-65" /> - </g> - </g> - <rect - y="30.362183" - x="17" - height="16" - width="16" - id="rect13523-4" - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" /> - <g - id="g5400-2"> - <rect - ry="2" - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;stroke:#5294e2;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" - id="rect5147-9-1-5-7-6-3" - width="13" - height="12.999997" - x="18.5" - y="31.862183" - rx="2" /> - </g> - </g> - </g> - </g> - </g> -</svg> diff --git a/gnome-shell/checkbox/checkbox-unchecked.svg b/gnome-shell/checkbox/checkbox-unchecked.svg deleted file mode 100644 index d50e0e2..0000000 --- a/gnome-shell/checkbox/checkbox-unchecked.svg +++ /dev/null @@ -1,141 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="16" - height="16" - id="svg2" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="checkbox-unchecked.svg" - inkscape:export-filename="/home/steffen/.local/share/themes/neu2/gtk-3.0/assets/dark/checkbox-unchecked.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90"> - <defs - id="defs4"> - <linearGradient - id="linearGradient3768-6"> - <stop - style="stop-color:#0f0f0f;stop-opacity:1;" - offset="0" - id="stop3770-6" /> - <stop - id="stop3778-2" - offset="0.078125" - style="stop-color:#171717;stop-opacity:1;" /> - <stop - style="stop-color:#171717;stop-opacity:1;" - offset="0.97355771" - id="stop3774-0" /> - <stop - style="stop-color:#1b1b1b;stop-opacity:1;" - offset="1" - id="stop3776-1" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="-0.57889006" - inkscape:cy="7.8835199" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:snap-bbox="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:showpageshadow="false" - showborder="true" - inkscape:window-width="1006" - inkscape:window-height="723" - inkscape:window-x="358" - inkscape:window-y="22" - inkscape:window-maximized="0" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid2985" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - </sodipodi:namedview> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1036.3622)"> - <g - transform="translate(-17,1036)" - style="display:inline;opacity:1" - id="checkbox-unchecked-7" - inkscape:label="#g22047"> - <g - inkscape:label="#g21853" - id="sdsd-0"> - <g - id="scdsdcd-0" - inkscape:label="#g14325" - transform="translate(0,-30)"> - <g - style="display:inline" - id="g15812-6-6-1-4" - transform="matrix(0.92951982,0,0,0.92914368,-156.75069,-212.9618)"> - <g - transform="matrix(0.5089163,0,0,0.51739823,161.7932,197.56426)" - id="g5489-2-9-6-8-8-9" - style="display:inline"> - <g - id="g5428-8-1-4-0-0-65" /> - </g> - </g> - <rect - y="30.362183" - x="17" - height="16" - width="16" - id="rect13523-4" - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" /> - <g - id="g5400-2"> - <rect - ry="2" - style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;stroke:#cfd6e6;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" - id="rect5147-9-1-5-7-6-3" - width="13" - height="12.999997" - x="18.5" - y="31.862183" - rx="2" /> - </g> - </g> - </g> - </g> - </g> -</svg> diff --git a/gnome-shell/gnome-shell.css b/gnome-shell/gnome-shell.css deleted file mode 100644 index dfc45a1..0000000 --- a/gnome-shell/gnome-shell.css +++ /dev/null @@ -1,1849 +0,0 @@ -/* Copyright 2009, 2015 Red Hat, Inc. - * - * Portions adapted from Mx's data/style/default.css - * Copyright 2009 Intel Corporation - * - * This program is free software; you can redistribute it and/or modify it - * under the terms and conditions of the GNU Lesser General Public License, - * version 2.1, as published by the Free Software Foundation. - * - * This program is distributed in the hope it will be useful, but WITHOUT ANY - * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS - * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for - * more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this program; if not, write to the Free Software Foundation, - * Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. - */ -stage { - font-family: Futura Bk bt, Sans-Serif; - font-size: 9pt; - color: #5c616c; } - -.button, .notification-banner .notification-button, -.notification-banner:hover .notification-button, -.notification-banner:focus .notification-button { - min-height: 20px; - padding: 5px 32px; - transition-duration: 0; - border-radius: 2px; - text-shadow: 0 1px rgba(255, 255, 255, 0); - box-shadow: inset 0 0 rgba(255, 255, 255, 0); - color: #5c616c; - background-color: #fcfdfd; - border: 1px solid #cfd6e6; } - .button:focus, .notification-banner .notification-button:focus { - text-shadow: 0 1px rgba(255, 255, 255, 0); - box-shadow: inset 0 0 rgba(255, 255, 255, 0); - color: #5c616c; - background-color: #fcfdfd; - border: 1px solid #5294E2; } - .button:hover, .notification-banner .notification-button:hover { - text-shadow: 0 1px rgba(255, 255, 255, 0); - box-shadow: inset 0 0 rgba(255, 255, 255, 0); - color: #5c616c; - background-color: #fcfdfd; - border: 1px solid #5294E2; } - .button:hover:focus, .notification-banner .notification-button:hover:focus { - text-shadow: 0 1px rgba(255, 255, 255, 0); - box-shadow: inset 0 0 rgba(255, 255, 255, 0); - color: #5294E2; - background-color: #fcfdfd; - border: 1px solid #5294E2; } - .button:active, .notification-banner .notification-button:active, .button:active:focus, .notification-banner .notification-button:active:focus { - text-shadow: 0 1px rgba(255, 255, 255, 0); - box-shadow: inset 0 0 rgba(255, 255, 255, 0); - color: #ffffff; - background-color: #5294E2; - border: 1px solid #5294E2; } - .button:insensitive, .notification-banner .notification-button:insensitive { - text-shadow: 0 1px rgba(255, 255, 255, 0); - box-shadow: inset 0 0 rgba(255, 255, 255, 0); - color: rgba(92, 97, 108, 0.55); - border: 1px solid rgba(207, 214, 230, 0.55); - background-color: rgba(252, 253, 253, 0.55); } - -StEntry { - padding: 7px; - caret-size: 1px; - selection-background-color: #5294E2; - selected-color: #ffffff; - transition-duration: 300ms; - border-radius: 20px; - box-shadow: inset 0 0 rgba(255, 255, 255, 0); - color: #5c616c; - background-color: #ffffff; - border: 1px solid #cfd6e6; } - StEntry:focus, StEntry:hover { - box-shadow: inset 0 0 rgba(255, 255, 255, 0); - color: #5c616c; - background-color: #ffffff; - border: 1px solid #5294E2; } - StEntry:insensitive { - box-shadow: inset 0 0 rgba(255, 255, 255, 0); - color: rgba(92, 97, 108, 0.55); - background-color: #fcfcfd; - border-color: 1px solid #e1e6ef; } - StEntry StIcon.capslock-warning { - icon-size: 16px; - warning-color: #F27835; - padding: 0 4px; } - -StScrollView.vfade { - -st-vfade-offset: 0px; } -StScrollView.hfade { - -st-hfade-offset: 0px; } - -StScrollBar { - padding: 8px; } - StScrollView StScrollBar { - min-width: 5px; - min-height: 5px; } - StScrollBar StBin#trough { - background-color: rgba(255, 255, 255, 0.1); - border-radius: 8px; } - StScrollBar StButton#vhandle, StScrollBar StButton#hhandle { - border-radius: 4px; - background-color: #babcc1; - border: 0px solid; - margin: 0px; } - StScrollBar StButton#vhandle:hover, StScrollBar StButton#hhandle:hover { - background-color: #c9ccd0; } - StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active { - background-color: #5294E2; } - -.slider { - -slider-height: 4px; - -slider-background-color: #cfd6e6; - -slider-border-color: transparent; - -slider-active-background-color: #5294E2; - -slider-active-border-color: transparent; - -slider-border-width: 0; - -slider-handle-radius: 4px; - height: 18px; - border: 0 solid transparent; - border-right-width: 1px; - border-left-width: 5px; - color: transparent; } - -.check-box StBoxLayout { - spacing: .8em; } -.check-box StBin { - width: 16px; - height: 16px; - background-image: url("checkbox/checkbox-unchecked.svg"); } -.check-box:focus Stbin { - background-image: url("checkbox/checkbox-unchecked-focused.svg"); } -.check-box:checked Stbin { - background-image: url("checkbox/checkbox-checked.svg"); } -.check-box:focus:checked Stbin { - background-image: url("checkbox/checkbox-checked-focused.svg"); } - -.toggle-switch { - width: 52px; - height: 24px; - background-size: contain; } - .toggle-switch-us, .toggle-switch-intl { - background-image: url("switch/switch-off.svg"); } - .toggle-switch-us:checked, .toggle-switch-intl:checked { - background-image: url("switch/switch-on.svg"); } - -.shell-link { - color: #2679db; } - .shell-link:hover { - color: #5294e2; } - -.headline { - font-size: 110%; } - -.lightbox { - background-color: black; } - -.flashspot { - background-color: white; } - -.modal-dialog { - border-radius: 3px; - color: #5c616c; - background-color: rgba(249, 250, 251, 0); - border: none; - border-image: url("misc/modal.svg") 10 10 10 10; - padding: 0 6px 6px 6px; } - .modal-dialog > * { - padding: 14px; } - .modal-dialog-button-box { - spacing: 0px; - margin: 0px; - padding: 12px 24px; - background-color: #3c4049; - border: solid 0px rgba(0, 0, 0, 0.3); - border-top: 1px; - border-radius: 0px 0px 1px 1px; } - .modal-dialog-button-box .button, .modal-dialog-button-box .notification-banner .notification-button, .notification-banner .modal-dialog-button-box .notification-button { - text-shadow: 0 1px rgba(255, 255, 255, 0); - box-shadow: inset 0 0 rgba(255, 255, 255, 0); - color: #c4c7cc; - outline-color: rgba(168, 173, 181, 0.3); - border-color: rgba(168, 173, 181, 0.3); - background-color: rgba(48, 52, 59, 0.95); } - .modal-dialog-button-box .button:hover, .modal-dialog-button-box .notification-banner .notification-button:hover, .notification-banner .modal-dialog-button-box .notification-button:hover { - text-shadow: 0 1px rgba(255, 255, 255, 0); - box-shadow: inset 0 0 rgba(255, 255, 255, 0); - color: #ffffff; - border-color: #5294E2; - background-color: rgba(48, 52, 59, 0.95); } - .modal-dialog-button-box .button:focus, .modal-dialog-button-box .notification-banner .notification-button:focus, .notification-banner .modal-dialog-button-box .notification-button:focus { - color: #5294E2; } - .modal-dialog-button-box .button:active, .modal-dialog-button-box .notification-banner .notification-button:active, .notification-banner .modal-dialog-button-box .notification-button:active { - text-shadow: 0 1px rgba(255, 255, 255, 0); - box-shadow: inset 0 0 rgba(255, 255, 255, 0); - color: #ffffff; - border-color: #5294E2; - background-color: #5294E2; } - .modal-dialog-button-box .button:insensitive, .modal-dialog-button-box .notification-banner .notification-button:insensitive, .notification-banner .modal-dialog-button-box .notification-button:insensitive { - text-shadow: 0 1px rgba(255, 255, 255, 0); - box-shadow: inset 0 0 rgba(255, 255, 255, 0); - color: #5c6069; - border-color: rgba(168, 173, 181, 0.2); - background-image: rgba(53, 57, 65, 0.95); } - .modal-dialog .run-dialog-entry { - width: 23em; } - .modal-dialog .run-dialog-error-box { - padding-top: 5px; - spacing: 5px; } - .modal-dialog .run-dialog-label { - font-size: 10pt; - font-weight: normal; - color: #5c616c; - padding-bottom: .8em; } - -.show-processes-dialog-subject, -.mount-question-dialog-subject, -.end-session-dialog-subject { - font-size: 11pt; - font-weight: bold; - color: #5c616c; } - -.end-session-dialog { - spacing: 42px; } - .end-session-dialog-list { - padding-top: 20px; } - .end-session-dialog-layout { - padding-left: 17px; } - .end-session-dialog-layout:rtl { - padding-right: 17px; } - .end-session-dialog-description { - width: 28em; - padding-bottom: 10px; } - .end-session-dialog-description:rtl { - text-align: right; } - .end-session-dialog-warning { - width: 28em; - color: #F27835; - padding-top: 6px; } - .end-session-dialog-warning:rtl { - text-align: right; } - .end-session-dialog-logout-icon { - border: 0px solid transparent; - border-radius: 2px; - width: 48px; - height: 48px; - background-size: contain; } - .end-session-dialog-shutdown-icon { - color: #5c616c; - width: 48px; - height: 48px; } - .end-session-dialog-inhibitor-layout { - spacing: 16px; - max-height: 200px; - padding-right: 10px; - padding-left: 10px; } - .end-session-dialog-session-list, .end-session-dialog-app-list { - spacing: 1em; } - .end-session-dialog-list-header { - font-weight: bold; } - .end-session-dialog-list-header:rtl { - text-align: right; } - .end-session-dialog-app-list-item, .end-session-dialog-session-list-item { - spacing: 1em; } - .end-session-dialog-app-list-item-name, .end-session-dialog-session-list-item-name { - font-weight: bold; } - .end-session-dialog-app-list-item-description { - color: #686d7a; - font-size: 8pt; } - .end-session-dialog .button:last-child, .end-session-dialog .notification-banner .notification-button:last-child, .notification-banner .end-session-dialog .notification-button:last-child { - color: #ffffff; - background-color: #FA4349; - border-color: #FA4349; } - .end-session-dialog .button:last-child:hover, .end-session-dialog .notification-banner .notification-button:last-child:hover, .notification-banner .end-session-dialog .notification-button:last-child:hover { - color: #ffffff; - background-color: #fb7074; - border-color: #fb7074; } - .end-session-dialog .button:last-child:active, .end-session-dialog .notification-banner .notification-button:last-child:active, .notification-banner .end-session-dialog .notification-button:last-child:active { - color: #ffffff; - background-color: #f92a31; - border-color: #f92a31; } - -.shell-mount-operation-icon { - icon-size: 48px; } - -.show-processes-dialog, -.mount-question-dialog { - spacing: 24px; } - -.show-processes-dialog-subject, -.mount-question-dialog-subject { - padding-top: 10px; - padding-left: 17px; - padding-bottom: 6px; } - .show-processes-dialog-subject:rtl, - .mount-question-dialog-subject:rtl { - padding-left: 0px; - padding-right: 17px; } - -.mount-question-dialog-subject { - max-width: 500px; } - -.show-processes-dialog-description, -.mount-question-dialog-description { - padding-left: 17px; - width: 28em; } - .show-processes-dialog-description:rtl, - .mount-question-dialog-description:rtl { - padding-right: 17px; } - -.show-processes-dialog-app-list { - font-size: 10pt; - max-height: 200px; - padding-top: 24px; - padding-left: 49px; - padding-right: 32px; } - .show-processes-dialog-app-list:rtl { - padding-right: 49px; - padding-left: 32px; } - -.show-processes-dialog-app-list-item { - color: #454850; } - .show-processes-dialog-app-list-item:hover { - color: #5c616c; } - .show-processes-dialog-app-list-item:ltr { - padding-right: 1em; } - .show-processes-dialog-app-list-item:rtl { - padding-left: 1em; } - -.show-processes-dialog-app-list-item-icon:ltr { - padding-right: 17px; } -.show-processes-dialog-app-list-item-icon:rtl { - padding-left: 17px; } - -.show-processes-dialog-app-list-item-name { - font-size: 10pt; } - -.prompt-dialog { - width: 500px; } - .prompt-dialog-main-layout { - spacing: 24px; - padding: 10px; } - .prompt-dialog-message-layout { - spacing: 16px; } - .prompt-dialog-headline { - font-size: 12pt; - font-weight: bold; - color: #5c616c; } - .prompt-dialog-descritption:rtl { - text-align: right; } - .prompt-dialog-password-box { - spacing: 1em; - padding-bottom: 1em; } - .prompt-dialog-error-label { - font-size: 9pt; - color: #FC4138; - padding-bottom: 8px; } - .prompt-dialog-info-label { - font-size: 9pt; - padding-bottom: 8px; } - .prompt-dialog-null-label { - font-size: 9pt; - padding-bottom: 8px; } - -.hidden { - color: transparent; } - -.polkit-dialog-user-layout { - padding-left: 10px; - spacing: 10px; } - .polkit-dialog-user-layout:rtl { - padding-left: 0px; - padding-right: 10px; } -.polkit-dialog-user-root-label { - color: #F27835; } -.polkit-dialog-user-user-icon { - border-radius: 2px; - background-size: contain; - width: 48px; - height: 48px; } - -.network-dialog-secret-table { - spacing-rows: 15px; - spacing-columns: 1em; } - -.keyring-dialog-control-table { - spacing-rows: 15px; - spacing-columns: 1em; } - -.popup-menu { - min-width: 200px; - color: #5c616c; - border-image: url("menu/menu.svg") 10 10 35 14; } - .popup-menu .popup-sub-menu { - background: none; - box-shadow: none; - border-image: url("menu/submenu.svg") 8 8 2 2; } - .popup-menu .popup-menu-content { - padding: 1em 0em 1em 0em; } - .popup-menu .popup-menu-item { - spacing: 12px; } - .popup-menu .popup-menu-item:ltr { - padding: .4em 3em .4em 0em; } - .popup-menu .popup-menu-item:rtl { - padding: .4em 0em .4em 3em; } - .popup-menu .popup-menu-item:checked { - background: none; - box-shadow: none; - font-weight: normal; - border-image: url("menu/submenu-open.svg") 8 8 2 2; } - .popup-menu .popup-menu-item:active, .popup-menu .popup-menu-item.selected { - color: #5c616c; - background-color: transparent; - border-image: url("menu/menu-hover.svg") 7 7 1 1; } - .popup-menu .popup-menu-item:insensitive { - color: rgba(92, 97, 108, 0.5); - background: none; } - .popup-menu .popup-inactive-menu-item { - color: #5c616c; } - .popup-menu .popup-inactive-menu-item:insensitive { - color: rgba(92, 97, 108, 0.55); } - .popup-menu.panel-menu { - -boxpointer-gap: 0px; - margin-bottom: 1.75em; } - -.popup-menu-ornament { - text-align: right; - margin-left: 10px; - width: 16px; } - -.popup-menu-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: transparent; - -arrow-border-width: 1px; - -arrow-border-color: transparent; - -arrow-base: 0; - -arrow-rise: 0; } - -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(37, 39, 45, 0.95); - -arrow-border-width: 1px; - -arrow-border-color: rgba(21, 22, 25, 0.95); - -arrow-base: 5; - -arrow-rise: 5; } - -.popup-separator-menu-item { - height: 2px; - margin: 10px 0px; - background-color: transparent; - border: none; - border-image: url("menu/menu-separator.svg") 1 1 1 1; } - -.background-menu { - -boxpointer-gap: 4px; - -arrow-rise: 0px; } - -.osd-window { - text-align: center; - font-weight: bold; - spacing: 1em; - padding: 20px; - margin: 32px; - min-width: 64px; - min-height: 64px; - color: #ffffff; - background: none; - border: none; - border-radius: 5px; - border-image: url("misc/osd.svg") 10 10 9 11; } - .osd-window .osd-monitor-label { - font-size: 3em; } - .osd-window .level { - padding: 0; - height: 4px; - background-color: rgba(0, 0, 0, 0.5); - border-radius: 2px; - color: #5294E2; } - -.resize-popup { - color: #A8ADB5; - background: none; - border: none; - border-radius: 5px; - border-image: url("misc/osd.svg") 10 10 9 11; - padding: 12px; } - -.switcher-popup { - padding: 8px; - spacing: 16px; } - -.switcher-list { - background: none; - border: none; - border-image: url("misc/bg.svg") 10 10 35 14; - border-radius: 3px; - padding: 20px; } - .switcher-list-item-container { - spacing: 8px; } - .switcher-list .item-box { - padding: 8px; - border-radius: 2px; } - .switcher-list .item-box:outlined { - padding: 6px; - border: 1px solid #5294E2; } - .switcher-list .item-box:selected { - color: #ffffff; - background-color: #5294E2; - border: 1px solid #5294E2; } - .switcher-list .thumbnail-box { - padding: 2px; - spacing: 4px; } - .switcher-list .thumbnail { - width: 256px; } - .switcher-list .separator { - width: 1px; - background: rgba(92, 97, 108, 0.33); } - -.switcher-arrow { - border-color: transparent; - color: #A8ADB5; } - .switcher-arrow:highlighted { - color: #ffffff; } - -.input-source-switcher-symbol { - font-size: 34pt; - width: 96px; - height: 96px; } - -.workspace-switcher { - background: transparent; - border: 0px; - border-radius: 0px; - padding: 0px; - spacing: 8px; } - .workspace-switcher-group { - padding: 12px; } - .workspace-switcher-container { - border-image: url("misc/bg.svg") 10 10 35 14; - border-radius: 3px; - padding: 20px; - padding-bottom: 24px; } - -.ws-switcher-active-up, .ws-switcher-active-down { - height: 30px; - background-color: #5294E2; - background-size: 96px; - border-radius: 2px; - border: 1px solid #5294E2; } - -.ws-switcher-active-up { - background-image: url("misc/ws-switch-arrow-up.png"); } - -.ws-switcher-active-down { - background-image: url("misc/ws-switch-arrow-down.png"); } - -.ws-switcher-box { - height: 96px; - background-color: rgba(0, 0, 0, 0.33); - border-color: rgba(0, 0, 0, 0.33); - border-radius: 2px; } - -.tile-preview { - background-color: rgba(82, 148, 226, 0.35); - border: 1px solid #5294E2; } - .tile-preview-left.on-primary { - border-radius: 0px 0 0 0; } - .tile-preview-right.on-primary { - border-radius: 0 0px 0 0; } - .tile-preview-left.tile-preview-right.on-primary { - border-radius: 0px 0px 0 0; } - -#panel { - background-color: rgba(37, 39, 45, 0.95); - border-color: rgba(16, 17, 20, 0.95); - border-bottom-width: 1px; - font-weight: bold; - height: 2.1em; - min-height: 26px; } - #panel.unlock-screen, #panel.login-screen, #panel.lock-screen { - background-color: transparent; - border-image: none; } - #panel:overview { - background-color: rgba(14, 15, 17, 0.8); } - #panel #panelLeft, #panel #panelCenter { - spacing: 8px; } - #panel .panel-corner { - -panel-corner-radius: 0px; - -panel-corner-background-color: transparent; - -panel-corner-border-width: 0px; - -panel-corner-border-color: black; } - #panel .panel-corner:active, #panel .panel-corner:overview, #panel .panel-corner:focus { - -panel-corner-border-color: black; } - #panel .panel-corner.lock-screen, #panel .panel-corner.login-screen, #panel .panel-cornerunlock-screen { - -panel-corner-radius: 0; - -panel-corner-background-color: transparent; - -panel-corner-border-color: transparent; } - #panel .panel-button { - -natural-hpadding: 12px; - -minimum-hpadding: 6px; - font-weight: bold; - color: #ffffff; - transition-duration: 100ms; } - #panel .panel-button .app-menu-icon { - width: 0; - height: 0; - margin-left: 4px; - margin-right: 4px; } - #panel .panel-button:hover { - color: #ffffff; - background-color: rgba(0, 0, 0, 0.17); } - #panel .panel-button:active, #panel .panel-button:overview, #panel .panel-button:focus, #panel .panel-button:checked { - color: #ffffff; - background-color: #5294E2; - box-shadow: none; } - #panel .panel-button:active > .system-status-icon, #panel .panel-button:overview > .system-status-icon, #panel .panel-button:focus > .system-status-icon, #panel .panel-button:checked > .system-status-icon { - icon-shadow: none; } - #panel .panel-button .system-status-icon { - icon-size: 16px; - padding: 0 8px; } - .unlock-screen #panel .panel-button, .login-screen #panel .panel-button, .lock-screen #panel .panel-button { - color: #737a88; } - .unlock-screen #panel .panel-button:focus, .unlock-screen #panel .panel-button:hover, .unlock-screen #panel .panel-button:active, .login-screen #panel .panel-button:focus, .login-screen #panel .panel-button:hover, .login-screen #panel .panel-button:active, .lock-screen #panel .panel-button:focus, .lock-screen #panel .panel-button:hover, .lock-screen #panel .panel-button:active { - color: #737a88; } - #panel .panel-status-indicators-box, - #panel .panel-status-menu-box { - spacing: 2px; } - #panel .screencast-indicator { - color: red; } - -#panelActivities > *, -#panelActivities:hover > *, -#panelActivities:focus > *, -#panelActivities:active > *, -#panelActivities:overview > *, -#panel:overview #panelActivities.panel-button:active > *, -#panel:overview #panelActivities.panel-button:focus > * { - background-image: url("misc/activities.svg"); - background-position: center top; - width: 24px; - height: 24px; - background-color: transparent !important; - background-gradient-direction: none !important; - border: 0 solid transparent !important; - text-shadow: 0 0 transparent !important; - transition-duration: 0ms !important; - box-shadow: none !important; - color: transparent; } - -.system-switch-user-submenu-icon { - icon-size: 24px; - border: 1px solid rgba(92, 97, 108, 0.4); } - -#appMenu { - spinner-image: url("misc/process-working.svg"); - spacing: 4px; } - #appMenu .label-shadow { - color: transparent; } - -.aggregate-menu { - width: 360px; } - .aggregate-menu .popup-menu-icon { - padding: 0 4px; } - -.system-menu-action { - padding: 13px; - color: #5c616c; - border-radius: 32px; - /* wish we could do 50% */ - border: 1px solid transparent; } - .system-menu-action:hover, .system-menu-action:focus { - transition-duration: 100ms; - padding: 13px; - color: #5c616c; - background-color: transparent; - border: 1px solid #5294E2; } - .system-menu-action:active { - color: #ffffff; - background-color: #5294E2; - border: 1px solid #5294E2; } - .system-menu-action > StIcon { - icon-size: 16px; } - -#calendarArea { - padding: 0.75em 1.0em; } - -.calendar { - margin-bottom: 1em; } - -.calendar, -.datemenu-today-button, -.datemenu-displays-box, -.message-list-sections { - margin: 0 1.5em; } - -.datemenu-calendar-column { - spacing: 0.5em; } - -.datemenu-displays-section { - padding-bottom: 3em; } - -.datemenu-today-button, -.world-clocks-button, -.message-list-section-title { - border-radius: 3px; - padding: .4em; } - -.message-list-section-list:ltr { - padding-left: .4em; } - -.message-list-section-list:rtl { - padding-right: .4em; } - -.datemenu-today-button, -.world-clocks-button, -.message-list-section-title { - padding: 7px 10px 7px 10px; - border: 1px solid rgba(255, 255, 255, 0); } - .datemenu-today-button:hover, .datemenu-today-button:focus, - .world-clocks-button:hover, - .world-clocks-button:focus, - .message-list-section-title:hover, - .message-list-section-title:focus { - text-shadow: 0 1px rgba(255, 255, 255, 0); - box-shadow: inset 0 0 rgba(255, 255, 255, 0); - color: #5c616c; - background-color: #fcfdfd; - border: 1px solid #5294E2; } - .datemenu-today-button:active, - .world-clocks-button:active, - .message-list-section-title:active { - text-shadow: 0 1px rgba(255, 255, 255, 0); - box-shadow: inset 0 0 rgba(255, 255, 255, 0); - color: #ffffff; - background-color: #5294E2; - border: 1px solid #5294E2; } - -.datemenu-today-button .date-label { - font-size: 1.5em; } - -.world-clocks-header, -.message-list-section-title { - color: rgba(92, 97, 108, 0.4); - font-weight: bold; } - -.world-clocks-button:active .world-clocks-header { - color: #ffffff; } - -.world-clocks-grid { - spacing-rows: 0.4em; } - -.calendar-month-label { - color: #5c616c; - font-weight: bold; - padding: 8px 0; } - -.pager-button { - color: transparent; - background-color: transparent; - width: 32px; - border-radius: 2px; } - .pager-button:focus, .pager-button:hover, .pager-button:active { - background-color: transparent; } - -.calendar-change-month-back { - background-image: url("misc/calendar-arrow-left.svg"); } - .calendar-change-month-back:focus, .calendar-change-month-back:hover { - background-image: url("misc/calendar-arrow-left-hover.svg"); } - .calendar-change-month-back:active { - background-image: url("misc/calendar-arrow-left.svg"); } - .calendar-change-month-back:rtl { - background-image: url("misc/calendar-arrow-right.svg"); } - .calendar-change-month-back:rtl:focus, .calendar-change-month-back:rtl:hover { - background-image: url("misc/calendar-arrow-right-hover.svg"); } - .calendar-change-month-back:rtl:active { - background-image: url("misc/calendar-arrow-right.svg"); } - -.calendar-change-month-forward { - background-image: url("misc/calendar-arrow-right.svg"); } - .calendar-change-month-forward:focus, .calendar-change-month-forward:hover { - background-image: url("misc/calendar-arrow-right-hover.svg"); } - .calendar-change-month-forward:active { - background-image: url("misc/calendar-arrow-right.svg"); } - .calendar-change-month-forward:rtl { - background-image: url("misc/calendar-arrow-left.svg"); } - .calendar-change-month-forward:rtl:focus, .calendar-change-month-forward:rtl:hover { - background-image: url("misc/calendar-arrow-left-hover.svg"); } - .calendar-change-month-forward:rtl:active { - background-image: url("misc/calendar-arrow-left.svg"); } - -.calendar-day-base { - font-size: 80%; - text-align: center; - width: 25px; - height: 25px; - padding: 0.1em; - margin: 2px; - border-radius: 12.5px; } - .calendar-day-base:hover, .calendar-day-base:focus { - background-color: rgba(0, 0, 0, 0.1); } - .calendar-day-base:active { - color: #5c616c; - background-color: rgba(0, 0, 0, 0.15); - border-width: 0; } - .calendar-day-base.calendar-day-heading { - color: rgba(92, 97, 108, 0.85); - margin-top: 1em; - font-size: 70%; } - -.calendar-day { - border-width: 0; - color: rgba(92, 97, 108, 0.8); } - -.calendar-day-top { - border-top-width: 0; } - -.calendar-day-left { - border-left-width: 0; } - -.calendar-nonwork-day { - color: #5c616c; - font-weight: bold; } - -.calendar-today, -.calendar-today:active, -.calendar-today:focus, -.calendar-today:hover { - font-weight: bold; - color: #ffffff; - background-color: #5294E2; - border-width: 0; } - -.calendar-day-with-events { - color: #5294E2; - font-weight: bold; } - -.calendar-today.calendar-day-with-events { - color: #ffffff; } - -.calendar-other-month-day { - color: rgba(92, 97, 108, 0.3); - opacity: 1; } - -.message-list { - width: 420px; } - -.message-list-sections { - spacing: 1.5em; } - -.message-list-section, -.message-list-section-list { - spacing: 0.7em; } - -.message-list-section-title-box { - spacing: 0.4em; } - -.message-list-section-close > StIcon { - icon-size: 16px; - border-radius: 8px; - color: #ffffff; - background-color: rgba(92, 97, 108, 0.5); } - -.message-list-section-close:hover > StIcon, -.message-list-section-close:focus > StIcon { - color: #ffffff; - background-color: #5c616c; } - -.message-list-section-close:active > StIcon { - color: #ffffff; - background-color: #5294E2; } - -.message { - text-shadow: 0 1px rgba(255, 255, 255, 0); - box-shadow: inset 0 0 rgba(255, 255, 255, 0); - color: #5c616c; - background-color: #fcfdfd; - border: 1px solid #cfd6e6; - padding: 4px; } - .message:hover, .message:focus { - text-shadow: 0 1px rgba(255, 255, 255, 0); - box-shadow: inset 0 0 rgba(255, 255, 255, 0); - color: #5c616c; - background-color: #fcfdfd; - border: 1px solid #5294E2; } - .message:active { - text-shadow: 0 1px rgba(255, 255, 255, 0); - box-shadow: inset 0 0 rgba(255, 255, 255, 0); - color: #ffffff; - background-color: #5294E2; - border: 1px solid #5294E2; } - -.message-icon-bin { - padding: 8px 0px 8px 8px; } - .message-icon-bin:rtl { - padding: 8px 8px 8px 0px; } - -.message-icon-bin > StIcon { - icon-size: 48px; } - -.message-secondary-bin { - color: rgba(92, 97, 108, 0.4); } - -.message-secondary-bin > StIcon { - icon-size: 16px; } - -.message-title { - font-weight: bold; } - -.message-content { - padding: 8px; } - -.ripple-box { - width: 52px; - height: 52px; - background-image: url("misc/corner-ripple-ltr.svg"); - background-size: contain; } - .ripple-box:rtl { - background-image: url("misc/corner-ripple-rtl.svg"); } - -.popup-menu-arrow { - width: 16px; - height: 16px; } - -.popup-menu-icon { - icon-size: 16px; } - -.window-close { - background-image: url("misc/close.svg"); - background-size: 26px; - height: 26px; - width: 26px; } - .window-close:hover { - background-image: url("misc/close-hover.svg"); - background-size: 26px; - height: 26px; - width: 26px; } - .window-close:active { - background-image: url("misc/close-active.svg"); - background-size: 26px; - height: 26px; - width: 26px; } - -.window-close { - -shell-close-overlap: 11px; } - -.nm-dialog { - max-height: 500px; - min-height: 450px; - min-width: 470px; } - .nm-dialog-content { - spacing: 20px; } - .nm-dialog-header-hbox { - spacing: 10px; } - .nm-dialog-airplane-box { - spacing: 12px; } - .nm-dialog-airplane-headline { - font-size: 1.1em; - font-weight: bold; - text-align: center; } - .nm-dialog-airplane-text { - color: #5c616c; } - .nm-dialog-header-icon { - icon-size: 32px; } - .nm-dialog-scroll-view { - border: 1px solid #dde3e9; - border-radius: 2px; - background-color: #ffffff; } - .nm-dialog-header { - font-weight: bold; - font-size: 1.2em; } - .nm-dialog-item { - font-size: 1em; - border-bottom: 0px solid; - padding: 12px; - spacing: 0px; } - .nm-dialog-item:selected { - background-color: #5294E2; - color: #ffffff; } - .nm-dialog-icons { - spacing: .5em; } - .nm-dialog-icon { - icon-size: 16px; } - -.no-networks-label { - color: rgba(92, 97, 108, 0.55); } - -.no-networks-box { - spacing: 12px; } - -#overview { - spacing: 24px; } - -.overview-controls { - padding-bottom: 32px; } - -.window-picker { - -horizontal-spacing: 32px; - -vertical-spacing: 32px; - padding-left: 32px; - padding-right: 32px; - padding-bottom: 48px; } - .window-picker.external-monitor { - padding: 32px; } - -.window-clone-border { - border: 3px solid rgba(82, 148, 226, 0.8); - border-radius: 4px; - box-shadow: inset 0px 0px 0px 1px rgba(82, 148, 226, 0); } - -.window-caption, .window-caption:hover { - spacing: 25px; - color: #A8ADB5; - background-color: rgba(0, 0, 0, 0.7); - border-radius: 2px; - padding: 4px 12px; - -shell-caption-spacing: 12px; } - -.search-entry { - width: 320px; - padding: 7px 9px; - border-radius: 20px; - border: 1px solid rgba(0, 0, 0, 0.25); - background-color: rgba(255, 255, 255, 0.9); } - .search-entry:focus { - padding: 7px 9px; } - .search-entry .search-entry-icon { - icon-size: 16px; - padding: 0 4px; - color: #5c616c; } - .search-entry:hover, .search-entry:focus { - color: #ffffff; - caret-color: #ffffff; - background-color: #5294E2; } - .search-entry:hover .search-entry-icon, .search-entry:focus .search-entry-icon { - color: #ffffff; } - -#searchResultsBin { - max-width: 1000px; } - -#searchResultsContent { - padding-left: 20px; - padding-right: 20px; - spacing: 16px; } - -.search-section { - spacing: 16px; } - -.search-section-content { - spacing: 32px; } - -.list-search-results { - spacing: 3px; } - -.search-section-separator { - background-color: rgba(255, 255, 255, 0.2); - -margin-horizontal: 1.5em; - height: 1px; } - -.list-search-result-content { - spacing: 12px; - padding: 12px; } - -.list-search-result-title { - font-size: 1.5em; - color: #ffffff; } - -.list-search-result-description { - color: #cccccc; } - -.search-provider-icon { - padding: 15px; } - -.search-provider-icon-more { - width: 16px; - height: 16px; - background-image: url("misc/more-results.svg"); } - -#dash { - font-size: 1em; - color: #A8ADB5; - background-color: rgba(37, 39, 45, 0.87); - padding: 6px 0px 6px 0px; - border-color: rgba(16, 17, 20, 0.87); - border-radius: 0px 3px 3px 0px; } - .right #dash, #dash:rtl { - padding: 6px 0px 6px 0px; - border-radius: 3px 0 0 3px; } - .bottom #dash { - padding: 0px 6px 0px 6px; - border-radius: 3px 3px 0 0; } - .top #dash { - padding: 0px 6px 0px 6px; - border-radius: 0 0 3px 3px; } - #dash .placeholder { - background-image: url("misc/dash-placeholder.svg"); - background-size: contain; - height: 24px; } - #dash .empty-dash-drop-target { - width: 24px; - height: 24px; } - -.dash-item-container > StWidget { - padding: 0px 4px 0px 5px; } - .right .dash-item-container > StWidget, .dash-item-container > StWidget:rtl { - padding: 0px 5px 0px 4px; } - .bottom .dash-item-container > StWidget { - padding: 4px 0px 5px 0px; } - .top .dash-item-container > StWidget { - padding: 5px 0px 4px 0px; } - -.dash-label { - border-radius: 3px; - padding: 4px 12px; - color: #ffffff; - background-color: rgba(0, 0, 0, 0.7); - text-align: center; - -x-offset: 3px; } - .bottom .dash-label, .top .dash-label { - -y-offset: 3px; - -x-offset: 0; } - -#dash .app-well-app .overview-icon, .right #dash .app-well-app .overview-icon, .bottom #dash .app-well-app .overview-icon, .top #dash .app-well-app .overview-icon { - padding: 10px; } -#dash .app-well-app:hover .overview-icon, .right #dash .app-well-app:hover .overview-icon, .bottom #dash .app-well-app:hover .overview-icon, .top #dash .app-well-app:hover .overview-icon { - background-color: #5294E2; } -#dash .app-well-app:active .overview-icon, .right #dash .app-well-app:active .overview-icon, .bottom #dash .app-well-app:active .overview-icon, .top #dash .app-well-app:active .overview-icon { - box-shadow: none; - background-color: #2679db; } -#dash .app-well-app-running-dot { - width: 11px; - height: 2px; - margin-bottom: 6px; - background-color: #5294E2; } - -.show-apps .overview-icon { - padding: 11px; - background-color: rgba(0, 0, 0, 0.5); - border-radius: 2px; - border: 0px solid; } -.show-apps:hover .overview-icon { - background-color: rgba(0, 0, 0, 0.7); - color: #5294E2; } -.show-apps:active .overview-icon, .show-apps:active .show-apps-icon, .show-apps:checked .overview-icon, .show-apps:checked .show-apps-icon { - color: #ffffff; - background-color: #5294E2; - box-shadow: none; - transition-duration: 0ms; } - -.icon-grid { - spacing: 30px; - -shell-grid-horizontal-item-size: 136px; - -shell-grid-vertical-item-size: 136px; } - .icon-grid .overview-icon { - icon-size: 96px; } - -.app-view-controls { - padding-bottom: 32px; } - -.app-view-control { - padding: 4px 32px; - color: rgba(255, 255, 255, 0.8); - background-color: rgba(14, 15, 17, 0.8); - border-color: rgba(168, 173, 181, 0.3); } - .app-view-control:hover { - color: #ffffff; - background-color: rgba(14, 15, 17, 0.8); - border-color: #5294E2; } - .app-view-control:checked { - text-shadow: 0 1px rgba(255, 255, 255, 0); - box-shadow: inset 0 0 rgba(255, 255, 255, 0); - color: #ffffff; - border-color: #5294E2; - background-color: #5294E2; } - .app-view-control:first-child:ltr, .app-view-control:last-child:rtl { - border-radius: 2px 0 0 2px; } - .app-view-control:last-child:ltr, .app-view-control:first-child:rtl { - border-radius: 0 2px 2px 0; } - -.search-provider-icon:active, .search-provider-icon:checked, -.list-search-result:active, -.list-search-result:checked { - background-color: rgba(37, 39, 45, 0.85); } -.search-provider-icon:focus, .search-provider-icon:selected, .search-provider-icon:hover, -.list-search-result:focus, -.list-search-result:selected, -.list-search-result:hover { - background-color: rgba(168, 173, 181, 0.4); - transition-duration: 200ms; } - -.app-well-app:active .overview-icon, .app-well-app:checked .overview-icon, -.app-well-app.app-folder:active .overview-icon, -.app-well-app.app-folder:checked .overview-icon, -.grid-search-result:active .overview-icon, -.grid-search-result:checked .overview-icon { - background-color: rgba(37, 39, 45, 0.85); - box-shadow: inset 0 0 #5294E2; } -.app-well-app:hover .overview-icon, .app-well-app:focus .overview-icon, .app-well-app:selected .overview-icon, -.app-well-app.app-folder:hover .overview-icon, -.app-well-app.app-folder:focus .overview-icon, -.app-well-app.app-folder:selected .overview-icon, -.grid-search-result:hover .overview-icon, -.grid-search-result:focus .overview-icon, -.grid-search-result:selected .overview-icon { - background-color: rgba(168, 173, 181, 0.4); - transition-duration: 0ms; - border-image: none; - background-image: none; } - -.app-well-app-running-dot { - width: 20px; - height: 2px; - margin-bottom: 4px; - background-color: #5294E2; } - -.search-provider-icon, -.list-search-result, .app-well-app .overview-icon, -.app-well-app.app-folder .overview-icon, -.grid-search-result .overview-icon { - color: #ffffff; - border-radius: 2px; - padding: 6px; - border: 1px solid transparent; - transition-duration: 0ms; - text-align: center; } - -.app-well-app.app-folder > .overview-icon { - background-color: rgba(14, 15, 17, 0.8); - border: 1px solid rgba(168, 173, 181, 0.3); } -.app-well-app.app-folder:hover > .overview-icon { - background-color: rgba(60, 64, 73, 0.95); } -.app-well-app.app-folder:active > .overview-icon, .app-well-app.app-folder:checked > .overview-icon { - background-color: #5294E2; - box-shadow: none; } -.app-well-app.app-folder:focus > .overview-icon { - background-color: #5294E2; } - -.app-folder-popup { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(14, 15, 17, 0.8); - -arrow-border-color: rgba(168, 173, 181, 0.3); - -arrow-border-width: 1px; - -arrow-base: 5; - -arrow-rise: 5; } - -.app-folder-popup-bin { - padding: 5px; } - -.app-folder-icon { - padding: 5px; - spacing-rows: 5px; - spacing-columns: 5px; } - -.page-indicator { - padding: 15px 20px; } - .page-indicator .page-indicator-icon { - width: 18px; - height: 18px; - background-image: url(misc/page-indicator-inactive.svg); } - .page-indicator:hover .page-indicator-icon { - background-image: url(misc/page-indicator-hover.svg); } - .page-indicator:active .page-indicator-icon { - background-image: url(misc/page-indicator-active.svg); } - .page-indicator:checked .page-indicator-icon, .page-indicator:checked:active { - background-image: url(misc/page-indicator-checked.svg); } - -.app-well-app > .overview-icon.overview-icon-with-label, -.grid-search-result .overview-icon.overview-icon-with-label { - padding: 10px 8px 5px 8px; - spacing: 4px; } - -.workspace-thumbnails { - visible-width: 40px; - spacing: 11px; - padding: 12px; - padding-right: 7px; - border-radius: 3px 0 0 3px; - background-color: rgba(37, 39, 45, 0.87); - border-color: rgba(16, 17, 20, 0.87); } - .workspace-thumbnails:rtl { - padding: 12px; - padding-left: 7px; - border-radius: 0 3px 3px 0; } - -.workspace-thumbnail-indicator { - border: 4px solid rgba(82, 148, 226, 0.8); - border-radius: 1px; - padding: 1px; } - -.search-display > StBoxLayout, -.all-apps, -.frequent-apps > StBoxLayout { - padding: 0px 88px 10px 88px; } - -.search-statustext, .no-frequent-applications-label { - font-size: 2em; - font-weight: bold; - color: #5c616c; } - -.url-highlighter { - link-color: #2679db; } - -.notification-banner, -.notification-banner:hover, -.notification-banner:focus { - font-size: 1em; - width: 34em; - margin: 5px; - padding: 10px; - border-radius: 2px; - color: #5c616c; - background-color: #f9fafb; - border: 0px solid transparent; - box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2); } - .notification-banner .notification-icon, - .notification-banner:hover .notification-icon, - .notification-banner:focus .notification-icon { - padding: 5px; } - .notification-banner .notification-content, - .notification-banner:hover .notification-content, - .notification-banner:focus .notification-content { - padding: 5px; - spacing: 5px; } - .notification-banner .secondary-icon, - .notification-banner:hover .secondary-icon, - .notification-banner:focus .secondary-icon { - icon-size: 1.09em; } - .notification-banner .notification-actions, - .notification-banner:hover .notification-actions, - .notification-banner:focus .notification-actions { - background-color: transparent; - padding: 2px 2px 0 2px; - spacing: 1px; } - .notification-banner .notification-button, - .notification-banner:hover .notification-button, - .notification-banner:focus .notification-button { - padding: 4px 4px 5px; } - .notification-banner .notification-button:first-child, .notification-banner .notification-button:last-child, - .notification-banner:hover .notification-button:first-child, - .notification-banner:hover .notification-button:last-child, - .notification-banner:focus .notification-button:first-child, - .notification-banner:focus .notification-button:last-child { - border-radius: 2px; } - -.secondary-icon { - icon-size: 1.09em; } - -.chat-body { - spacing: 5px; } - -.chat-response { - margin: 5px; } - -.chat-log-message { - color: #5c616c; } - -.chat-new-group { - padding-top: 1em; } - -.chat-received { - padding-left: 4px; } - .chat-received:rtl { - padding-left: 0px; - padding-right: 4px; } - -.chat-sent { - padding-left: 18pt; - color: #5294E2; } - .chat-sent:rtl { - padding-left: 0; - padding-right: 18pt; } - -.chat-meta-message { - padding-left: 4px; - font-size: 9pt; - font-weight: bold; - color: rgba(92, 97, 108, 0.6); } - .chat-meta-message:rtl { - padding-left: 0; - padding-right: 4px; } - -.subscription-message { - font-style: italic; } - -.hotplug-transient-box { - spacing: 6px; - padding: 2px 72px 2px 12px; } - -.hotplug-notification-item { - padding: 2px 10px; } - .hotplug-notification-item:focus { - padding: 1px 71px 1px 11px; } - -.hotplug-notification-item-icon { - icon-size: 24px; - padding: 2px 5px; } - -.hotplug-resident-box { - spacing: 8px; } - -.hotplug-resident-mount { - spacing: 8px; - border-radius: 4px; } - .hotplug-resident-mount:hover { - background-color: rgba(249, 250, 251, 0.3); } - -.hotplug-resident-mount-label { - color: inherit; - padding-left: 6px; } - -.hotplug-resident-mount-icon { - icon-size: 24px; - padding-left: 6px; } - -.hotplug-resident-eject-icon { - icon-size: 16px; } - -.hotplug-resident-eject-button { - padding: 7px; - border-radius: 5px; - color: pink; } - -.legacy-tray { - background-color: rgba(37, 39, 45, 0.95); - border-width: 0; } - .legacy-tray:ltr { - border-radius: 0 2px 0 0; - border-left-width: 0; } - .legacy-tray:rtl { - border-radius: 2px 0 0 0; - border-right-width: 0; } - -.legacy-tray-handle, -.legacy-tray-icon { - padding: 6px; } - .legacy-tray-handle StIcon, - .legacy-tray-icon StIcon { - icon-size: 24px; } - .legacy-tray-handle:hover, .legacy-tray-handle:focus, - .legacy-tray-icon:hover, - .legacy-tray-icon:focus { - background-color: rgba(92, 97, 108, 0.1); } - -.legacy-tray-icon-box { - spacing: 12px; } - .legacy-tray-icon-box:ltr { - padding-left: 12px; } - .legacy-tray-icon-box:rtl { - padding-right: 12px; } - .legacy-tray-icon-box StButton { - width: 24px; - height: 24px; } - -.magnifier-zoom-region { - border: 2px solid #5294E2; } - .magnifier-zoom-region.full-screen { - border-width: 0; } - -#keyboard { - background-color: rgba(37, 39, 45, 0.9); } - -.keyboard-layout { - spacing: 10px; - padding: 10px; } - -.keyboard-row { - spacing: 15px; } - -.keyboard-key { - text-shadow: 0 1px rgba(255, 255, 255, 0); - box-shadow: inset 0 0 rgba(255, 255, 255, 0); - color: #c4c7cc; - outline-color: rgba(168, 173, 181, 0.3); - border-color: rgba(168, 173, 181, 0.3); - background-color: rgba(48, 52, 59, 0.95); - min-height: 2em; - min-width: 2em; - font-size: 14pt; - font-weight: bold; - border-radius: 3px; - box-shadow: none; } - .keyboard-key:focus { - text-shadow: 0 1px rgba(255, 255, 255, 0); - box-shadow: inset 0 0 rgba(255, 255, 255, 0); - color: #5c616c; - background-color: #fcfdfd; - border: 1px solid #5294E2; } - .keyboard-key:hover, .keyboard-key:checked { - text-shadow: 0 1px rgba(255, 255, 255, 0); - box-shadow: inset 0 0 rgba(255, 255, 255, 0); - color: #ffffff; - border-color: #5294E2; - background-color: rgba(48, 52, 59, 0.95); } - .keyboard-key:active { - text-shadow: 0 1px rgba(255, 255, 255, 0); - box-shadow: inset 0 0 rgba(255, 255, 255, 0); - color: #ffffff; - border-color: #5294E2; - background-color: #5294E2; } - .keyboard-key:grayed { - background-color: rgba(60, 64, 73, 0.95); - color: #A8ADB5; - border-color: rgba(0, 0, 0, 0.7); } - -.keyboard-subkeys { - color: white; - padding: 5px; - -arrow-border-radius: 2px; - -arrow-background-color: rgba(37, 39, 45, 0.9); - -arrow-border-width: 0px; - -arrow-border-color: transparent; - -arrow-base: 20px; - -arrow-rise: 10px; - -boxpointer-gap: 5px; } - -.candidate-popup-content { - padding: 0.5em; - spacing: 0.3em; - color: #A8ADB5; } - -.candidate-index { - padding: 0 0.5em 0 0; - color: #c4c7cc; } - -.candidate-box { - padding: 0.3em 0.5em 0.3em 0.5em; - border-radius: 4px; - color: #A8ADB5; } - .candidate-box:selected, .candidate-box:hover { - background-color: #5294E2; - color: #ffffff; } - -.candidate-page-button-box { - height: 2em; } - .vertical .candidate-page-button-box { - padding-top: 0.5em; } - .horizontal .candidate-page-button-box { - padding-left: 0.5em; } - -.candidate-page-button { - padding: 4px; } - -.candidate-page-button-previous { - border-radius: 2px 0px 0px 2px; - border-right-width: 0; } - -.candidate-page-button-next { - border-radius: 0px 2px 2px 0px; } - -.candidate-page-button-icon { - icon-size: 1em; } - -.framed-user-icon { - background-size: contain; - border: 0px solid transparent; - color: #5c616c; - border-radius: 2px; } - .framed-user-icon:hover { - border-color: transparent; - color: #fbfbfb; } - -.login-dialog-banner-view { - padding-top: 24px; - max-width: 23em; } - -.login-dialog { - border: none; - background-color: transparent; } - .login-dialog .modal-dialog-button-box { - spacing: 3px; } - .login-dialog .modal-dialog-button { - padding: 3px 18px; } - .login-dialog .modal-dialog-button:default { - text-shadow: 0 1px rgba(255, 255, 255, 0); - box-shadow: inset 0 0 rgba(255, 255, 255, 0); - color: #5c616c; - background-color: #fcfdfd; - border: 1px solid #cfd6e6; } - .login-dialog .modal-dialog-button:default:hover, .login-dialog .modal-dialog-button:default:focus { - text-shadow: 0 1px rgba(255, 255, 255, 0); - box-shadow: inset 0 0 rgba(255, 255, 255, 0); - color: #5c616c; - background-color: #fcfdfd; - border: 1px solid #5294E2; } - .login-dialog .modal-dialog-button:default:active { - text-shadow: 0 1px rgba(255, 255, 255, 0); - box-shadow: inset 0 0 rgba(255, 255, 255, 0); - color: #ffffff; - background-color: #5294E2; - border: 1px solid #5294E2; } - .login-dialog .modal-dialog-button:default:insensitive { - text-shadow: 0 1px rgba(255, 255, 255, 0); - box-shadow: inset 0 0 rgba(255, 255, 255, 0); - color: rgba(92, 97, 108, 0.55); - border: 1px solid rgba(207, 214, 230, 0.55); - background-color: rgba(252, 253, 253, 0.55); } - -.login-dialog-logo-bin { - padding: 24px 0px; } - -.login-dialog-banner { - color: #8c939e; } - -.login-dialog-button-box { - spacing: 5px; } - -.login-dialog-message-warning { - color: #F27835; } - -.login-dialog-message-hint { - padding-top: 0; - padding-bottom: 20px; } - -.login-dialog-user-selection-box { - padding: 100px 0px; } - .login-dialog-user-selection-box .login-dialog-not-listed-label { - padding-left: 2px; } - .login-dialog-not-listed-button:focus .login-dialog-user-selection-box .login-dialog-not-listed-label, .login-dialog-not-listed-button:hover .login-dialog-user-selection-box .login-dialog-not-listed-label { - color: #A8ADB5; } - -.login-dialog-not-listed-label { - font-size: 90%; - font-weight: bold; - color: #5a606a; - padding-top: 1em; } - -.login-dialog-user-list-view { - -st-vfade-offset: 1em; } - -.login-dialog-user-list { - spacing: 12px; - padding: .2em; - width: 23em; } - .login-dialog-user-list:expanded .login-dialog-user-list-item:focus { - background-color: #5294E2; - color: #ffffff; } - .login-dialog-user-list:expanded .login-dialog-user-list-item:logged-in { - border-right: 2px solid #5294E2; } - -.login-dialog-user-list-item { - border-radius: 5px; - padding: .2em; - color: #5a606a; } - .login-dialog-user-list-item:ltr { - padding-right: 1em; } - .login-dialog-user-list-item:rtl { - padding-left: 1em; } - .login-dialog-user-list-item:hover { - background-color: #5294E2; - color: #ffffff; } - .login-dialog-user-list-item .login-dialog-timed-login-indicator { - height: 2px; - margin: 2px 0 0 0; - background-color: #A8ADB5; } - .login-dialog-user-list-item:focus .login-dialog-timed-login-indicator { - background-color: #ffffff; } - -.login-dialog-username, -.user-widget-label { - color: #A8ADB5; - font-size: 120%; - font-weight: bold; - text-align: left; - padding-left: 15px; } - -.user-widget-label:ltr { - padding-left: 18px; } -.user-widget-label:rtl { - padding-right: 18px; } - -.login-dialog-prompt-layout { - padding-top: 24px; - padding-bottom: 12px; - spacing: 8px; - width: 23em; } - -.login-dialog-prompt-label { - color: #727985; - font-size: 110%; - padding-top: 1em; } - -.login-dialog-session-list-button StIcon { - icon-size: 1.25em; } - -.login-dialog-session-list-button { - color: #5a606a; } - .login-dialog-session-list-button:hover, .login-dialog-session-list-button:focus { - color: #A8ADB5; } - .login-dialog-session-list-button:active { - color: #2b2e33; } - -.screen-shield-arrows { - padding-bottom: 3em; } - -.screen-shield-arrows Gjs_Arrow { - color: white; - width: 80px; - height: 48px; - -arrow-thickness: 12px; - -arrow-shadow: 0 1px 1px rgba(0, 0, 0, 0.4); } - -.screen-shield-clock { - color: white; - text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.6); - font-weight: bold; - text-align: center; - padding-bottom: 1.5em; } - -.screen-shield-clock-time { - font-size: 72pt; - text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.4); } - -.screen-shield-clock-date { - font-size: 28pt; } - -.screen-shield-notifications-container { - spacing: 6px; - width: 30em; - background-color: transparent; - max-height: 500px; } - .screen-shield-notifications-container .summary-notification-stack-scrollview { - padding-top: 0; - padding-bottom: 0; } - .screen-shield-notifications-container .notification, - .screen-shield-notifications-container .screen-shield-notification-source { - padding: 12px 6px; - border: 1px solid rgba(168, 173, 181, 0.2); - background-color: rgba(60, 64, 73, 0.45); - color: #A8ADB5; - border-radius: 4px; } - .screen-shield-notifications-container .notification { - margin-right: 15px; } - -.screen-shield-notification-label { - font-weight: bold; - padding: 0px 0px 0px 12px; } - -.screen-shield-notification-count-text { - padding: 0px 0px 0px 12px; } - -#panel.lock-screen { - background-color: rgba(60, 64, 73, 0.5); } - -.screen-shield-background { - background: black; - box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4); } - -#lockDialogGroup { - background: #2e3436 url(misc/noise-texture.png); - background-repeat: repeat; } - -#screenShieldNotifications StButton#vhandle, #screenShieldNotifications StButton#hhandle { - background-color: rgba(249, 250, 251, 0.3); } - #screenShieldNotifications StButton#vhandle:hover, #screenShieldNotifications StButton#vhandle:focus, #screenShieldNotifications StButton#hhandle:hover, #screenShieldNotifications StButton#hhandle:focus { - background-color: rgba(249, 250, 251, 0.5); } - #screenShieldNotifications StButton#vhandle:active, #screenShieldNotifications StButton#hhandle:active { - background-color: rgba(82, 148, 226, 0.5); } - -#LookingGlassDialog { - spacing: 4px; - padding: 8px 8px 10px 8px; - background-color: rgba(0, 0, 0, 0.7); - border: 1px solid black; - border-image: url("misc/osd.svg") 10 10 9 11; - border-radius: 2px; - color: #A8ADB5; } - #LookingGlassDialog > #Toolbar { - padding: 3px; - border: 1px solid rgba(44, 47, 53, 0.95); - background-color: transparent; - border-radius: 0px; } - #LookingGlassDialog .labels { - spacing: 4px; } - #LookingGlassDialog .notebook-tab { - -natural-hpadding: 12px; - -minimum-hpadding: 6px; - font-weight: bold; - color: #A8ADB5; - transition-duration: 100ms; - padding-left: .3em; - padding-right: .3em; } - #LookingGlassDialog .notebook-tab:hover { - color: #ffffff; - text-shadow: black 0px 2px 2px; } - #LookingGlassDialog .notebook-tab:selected { - border-bottom-width: 0px; - color: #5294E2; - text-shadow: black 0px 2px 2px; } - #LookingGlassDialog StBoxLayout#EvalBox { - padding: 4px; - spacing: 4px; } - #LookingGlassDialog StBoxLayout#ResultsArea { - spacing: 4px; } - -.lg-dialog StEntry { - background-color: rgba(0, 0, 0, 0.3); - color: #A8ADB5; - selection-background-color: #5294E2; - selected-color: #ffffff; - border-color: rgba(168, 173, 181, 0.3); } - .lg-dialog StEntry:focus { - border-color: #5294E2; } -.lg-dialog .shell-link { - color: #2679db; } - .lg-dialog .shell-link:hover { - color: #5294e2; } - -.lg-completions-text { - font-size: .9em; - font-style: italic; } - -.lg-obj-inspector-title { - spacing: 4px; } - -.lg-obj-inspector-button { - border: 1px solid gray; - padding: 4px; - border-radius: 4px; } - .lg-obj-inspector-button:hover { - border: 1px solid #ffffff; } - -#lookingGlassExtensions { - padding: 4px; } - -.lg-extensions-list { - padding: 4px; - spacing: 6px; } - -.lg-extension { - border: 1px solid #dde3e9; - border-radius: 2px; - background-color: #f9fafb; - padding: 4px; } - -.lg-extension-name { - font-weight: bold; } - -.lg-extension-meta { - spacing: 6px; } - -#LookingGlassPropertyInspector { - background: rgba(0, 0, 0, 0.7); - border: 1px solid grey; - border-radius: 2px; - padding: 6px; } diff --git a/gnome-shell/gnome-shell.scss b/gnome-shell/gnome-shell.scss deleted file mode 100644 index 3418548..0000000 --- a/gnome-shell/gnome-shell.scss +++ /dev/null @@ -1,3 +0,0 @@ -@import "_colors"; //use gtk colors -@import "_drawing"; -@import "_common"; diff --git a/gnome-shell/menu/menu-arrow-symbolic.svg b/gnome-shell/menu/menu-arrow-symbolic.svg deleted file mode 100644 index 2ae260c..0000000 --- a/gnome-shell/menu/menu-arrow-symbolic.svg +++ /dev/null @@ -1,90 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="16" - height="16" - id="svg3863" - version="1.1" - inkscape:version="0.48.5 r10040" - sodipodi:docname="menu-arrow-symbolic.svg"> - <defs - id="defs3865" /> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="15.836083" - inkscape:cx="-3.1641676" - inkscape:cy="11.823817" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:grid-bbox="true" - inkscape:document-units="px" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="702" - inkscape:window-x="0" - inkscape:window-y="27" - inkscape:window-maximized="1" - inkscape:snap-bbox="true"> - <sodipodi:guide - orientation="1,0" - position="15.996443,16.922964" - id="guide3873" /> - <sodipodi:guide - orientation="0,1" - position="28.041217,3.1256134" - id="guide3875" /> - <sodipodi:guide - orientation="0,1" - position="-0.80372916,24.469088" - id="guide3877" /> - <sodipodi:guide - orientation="1,0" - position="3.0363102,34.649657" - id="guide3879" /> - <sodipodi:guide - orientation="1,0" - position="29.023553,28.577037" - id="guide3881" /> - <inkscape:grid - type="xygrid" - id="grid2988" /> - </sodipodi:namedview> - <metadata - id="metadata3868"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - id="layer1" - inkscape:label="Layer 1" - inkscape:groupmode="layer" - transform="translate(0,-16)"> - <path - style="fill:#ffffff;fill-opacity:1;stroke:none" - d="m 4,23 8,0 -4,5 z" - id="path3883" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccc" /> - </g> -</svg> diff --git a/gnome-shell/menu/menu-hover.svg b/gnome-shell/menu/menu-hover.svg deleted file mode 100644 index d371bd7..0000000 --- a/gnome-shell/menu/menu-hover.svg +++ /dev/null @@ -1,97 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="9.0311108mm" - height="9.3133335mm" - viewBox="0 0 31.999999 33" - id="svg6927" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="menu-hover.svg"> - <defs - id="defs6929" /> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="11.2" - inkscape:cx="1.0550014" - inkscape:cy="18.020602" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1032" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:bbox-paths="false" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-midpoints="false" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4140" - originx="0" - originy="1.2503989e-05" /> - </sodipodi:namedview> - <metadata - id="metadata6932"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-137,-382.36221)"> - <g - transform="matrix(0.05747127,0,0,0.93939391,84.896547,281.90766)" - id="g6908"> - <rect - y="108" - x="1011" - height="33" - width="348" - id="rect5271" - style="opacity:0.03999999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - <rect - style="opacity:0.08999999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect4141" - width="20" - height="1" - x="143" - y="382.36221" /> - <rect - style="opacity:0.08999999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect4141-5" - width="20" - height="1" - x="143" - y="414.36221" /> - </g> -</svg> diff --git a/gnome-shell/menu/menu-separator.svg b/gnome-shell/menu/menu-separator.svg deleted file mode 100644 index 4962ebc..0000000 --- a/gnome-shell/menu/menu-separator.svg +++ /dev/null @@ -1,60 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="90.311111mm" - height="0.56444442mm" - viewBox="0 0 320 1.9999999" - id="svg7537" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="menu-separator.svg"> - <defs - id="defs7539" /> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="11.2" - inkscape:cx="115.53549" - inkscape:cy="8.9322818" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1366" - inkscape:window-height="723" - inkscape:window-x="0" - inkscape:window-y="23" - inkscape:window-maximized="1" /> - <metadata - id="metadata7542"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(340,-443.3622)" /> -</svg> diff --git a/gnome-shell/menu/menu.svg b/gnome-shell/menu/menu.svg deleted file mode 100644 index f363e0b..0000000 --- a/gnome-shell/menu/menu.svg +++ /dev/null @@ -1,115 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="66" - height="300" - viewBox="0 0 66.000001 299.99999" - id="svg5653" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="menu.svg"> - <defs - id="defs5655"> - <filter - inkscape:collect="always" - style="color-interpolation-filters:sRGB" - id="filter4147" - x="-0.084698471" - width="1.1693969" - y="-0.015641178" - height="1.0312824"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.8704246" - id="feGaussianBlur4149" /> - </filter> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="1" - inkscape:cx="-2.9985879" - inkscape:cy="26.041721" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1366" - inkscape:window-height="720" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - showguides="false" - inkscape:snap-bbox="true" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true" - units="px"> - <inkscape:grid - type="xygrid" - id="grid4149" - originx="0" - originy="-133.99999" /> - </sodipodi:namedview> - <metadata - id="metadata5658"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-245,-118.3622)"> - <rect - style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.00052512;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter4147)" - id="rect4179-2-0-9-1" - width="53" - height="287.00006" - x="251.5" - y="124.8622" - ry="2.0003738" - rx="2.0016928" - transform="matrix(0.99915434,0,0,0.9998131,0.23516411,0.05012292)" /> - <rect - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect4179-2-0-9" - width="52" - height="286" - x="252" - y="124.3622" - ry="2.0000002" - rx="2" /> - <rect - style="opacity:0.1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect4179-2-0-9-7" - width="53" - height="287.00006" - x="251.5" - y="123.8622" - ry="2.5" - rx="2.5" /> - </g> -</svg> diff --git a/gnome-shell/menu/submenu-open.svg b/gnome-shell/menu/submenu-open.svg deleted file mode 100644 index 5d57a31..0000000 --- a/gnome-shell/menu/submenu-open.svg +++ /dev/null @@ -1,117 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="37" - height="18" - id="svg3783" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="submenu-open.svg" - inkscape:export-filename="/home/steffen/.local/share/themes/Vertex_Shell/gnome-shell/menu.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90"> - <defs - id="defs3785" /> - <sodipodi:namedview - id="base" - pagecolor="#838383" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:zoom="16.000001" - inkscape:cx="19.724947" - inkscape:cy="6.8134088" - inkscape:document-units="px" - inkscape:current-layer="g3027" - showgrid="true" - inkscape:showpageshadow="false" - inkscape:window-width="1364" - inkscape:window-height="718" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="0" - inkscape:snap-global="true" - inkscape:snap-bbox="true" - showguides="true" - inkscape:guide-bbox="true" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4301" - empspacing="8" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" - originx="0" - originy="0" /> - <sodipodi:guide - orientation="0,1" - position="14.052204,22.065004" - id="guide3831" /> - <sodipodi:guide - orientation="0,1" - position="14.052204,-3.9349962" - id="guide3835" /> - </sodipodi:namedview> - <metadata - id="metadata3788"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Calque 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-5.9477962,-1025.4272)"> - <g - id="g3027" - transform="matrix(0,-1,1,0,-1048.3622,1052.3622)"> - <rect - style="opacity:0.05;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect3092" - width="24.999933" - height="18" - x="1060.3101" - y="8.9349957" - transform="matrix(0,1,1,0,0,0)" /> - <rect - style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect3883" - width="24.99999" - height="1" - x="1060.3101" - y="25.93499" - transform="matrix(0,1,1,0,0,0)" /> - <rect - style="opacity:0.03999999;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect3885-8" - width="25.000055" - height="1" - x="1060.3099" - y="24.934994" - transform="matrix(0,1,1,0,0,0)" /> - </g> - </g> -</svg> diff --git a/gnome-shell/menu/submenu.svg b/gnome-shell/menu/submenu.svg deleted file mode 100644 index 9172367..0000000 --- a/gnome-shell/menu/submenu.svg +++ /dev/null @@ -1,117 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="37" - height="18" - id="svg3783" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="submenu.svg" - inkscape:export-filename="/home/steffen/.local/share/themes/Vertex_Shell/gnome-shell/menu.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90"> - <defs - id="defs3785" /> - <sodipodi:namedview - id="base" - pagecolor="#838383" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:zoom="16.000001" - inkscape:cx="19.724947" - inkscape:cy="6.8134088" - inkscape:document-units="px" - inkscape:current-layer="g3027" - showgrid="true" - inkscape:showpageshadow="false" - inkscape:window-width="1364" - inkscape:window-height="718" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="0" - inkscape:snap-global="true" - inkscape:snap-bbox="true" - showguides="true" - inkscape:guide-bbox="true" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4301" - empspacing="8" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" - originx="0" - originy="0" /> - <sodipodi:guide - orientation="0,1" - position="14.052204,22.065004" - id="guide3831" /> - <sodipodi:guide - orientation="0,1" - position="14.052204,-3.9349962" - id="guide3835" /> - </sodipodi:namedview> - <metadata - id="metadata3788"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Calque 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-5.9477962,-1025.4272)"> - <g - id="g3027" - transform="matrix(0,-1,1,0,-1048.3622,1052.3622)"> - <rect - style="opacity:0.05;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect3092" - width="24.999933" - height="18" - x="1060.3101" - y="-26.934996" - transform="matrix(0,1,-1,0,0,0)" /> - <rect - style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect3883" - width="24.99999" - height="1" - x="1060.3101" - y="-9.9350014" - transform="matrix(0,1,-1,0,0,0)" /> - <rect - style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;opacity:0.04" - id="rect3885-8" - width="25.000055" - height="1" - x="1060.3099" - y="-10.934997" - transform="matrix(0,1,-1,0,0,0)" /> - </g> - </g> -</svg> diff --git a/gnome-shell/misc/activities.svg b/gnome-shell/misc/activities.svg deleted file mode 100644 index 4586285..0000000 --- a/gnome-shell/misc/activities.svg +++ /dev/null @@ -1,155 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - inkscape:export-ydpi="90.000000" - inkscape:export-xdpi="90.000000" - width="24" - height="24" - id="svg11300" - sodipodi:version="0.32" - inkscape:version="0.91 r13725" - sodipodi:docname="activities.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape" - version="1.0" - style="display:inline;enable-background:new"> - <sodipodi:namedview - stroke="#ef2929" - fill="#f57900" - id="base" - pagecolor="#8c8c8c" - bordercolor="#ff5e00" - borderopacity="1" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="45.254834" - inkscape:cx="18.117513" - inkscape:cy="8.8930078" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:grid-bbox="true" - inkscape:document-units="px" - inkscape:showpageshadow="false" - inkscape:window-width="1600" - inkscape:window-height="848" - inkscape:window-x="0" - inkscape:window-y="25" - width="400px" - height="300px" - inkscape:snap-nodes="true" - inkscape:snap-bbox="true" - gridtolerance="10000" - inkscape:object-nodes="true" - inkscape:snap-grids="true" - showguides="false" - inkscape:guide-bbox="true" - inkscape:window-maximized="1" - inkscape:bbox-nodes="true" - inkscape:bbox-paths="false" - inkscape:snap-bbox-edge-midpoints="false" - inkscape:snap-bbox-midpoints="false" - objecttolerance="10000" - guidetolerance="10000" - borderlayer="true" - showborder="true" - guidecolor="#ff0b00" - guideopacity="1" - guidehicolor="#001aff" - guidehiopacity="0.49803922"> - <inkscape:grid - type="xygrid" - id="grid3123" - empspacing="4" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - position="12,12" - orientation="1,0" - id="guide4135" /> - </sodipodi:namedview> - <defs - id="defs3" /> - <metadata - id="metadata4"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:creator> - <cc:Agent> - <dc:title /> - </cc:Agent> - </dc:creator> - <dc:source /> - <cc:license - rdf:resource="" /> - <dc:title /> - <dc:subject> - <rdf:Bag /> - </dc:subject> - <dc:date /> - <dc:rights> - <cc:Agent> - <dc:title /> - </cc:Agent> - </dc:rights> - <dc:publisher> - <cc:Agent> - <dc:title /> - </cc:Agent> - </dc:publisher> - <dc:identifier /> - <dc:relation /> - <dc:language /> - <dc:coverage /> - <dc:description /> - <dc:contributor> - <cc:Agent> - <dc:title /> - </cc:Agent> - </dc:contributor> - </cc:Work> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - style="display:inline" - inkscape:groupmode="layer" - inkscape:label="Base" - id="layer1" - transform="translate(0,-276)"> - <circle - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4137" - cx="5.5" - cy="288.5" - r="1.5" /> - <circle - style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;enable-background:new" - id="path4137-5" - cx="19.5" - cy="288.5" - r="1.5" /> - <circle - style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;enable-background:new" - id="path4137-5-7" - cx="12.5" - cy="288.5" - r="1.5" /> - </g> -</svg> diff --git a/gnome-shell/misc/bg.svg b/gnome-shell/misc/bg.svg deleted file mode 100644 index 5e219e0..0000000 --- a/gnome-shell/misc/bg.svg +++ /dev/null @@ -1,132 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="66" - height="76" - viewBox="0 0 66.000001 75.999996" - id="svg5653" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="bg.svg"> - <defs - id="defs5655" /> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="5.6568542" - inkscape:cx="36.163589" - inkscape:cy="29.185779" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1366" - inkscape:window-height="718" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - showguides="false" - inkscape:snap-bbox="true" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true" - units="px"> - <inkscape:grid - type="xygrid" - id="grid4149" - originx="0" - originy="-133.99999" /> - </sodipodi:namedview> - <metadata - id="metadata5658"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-245,-342.3622)"> - <g - id="g4305" - style="opacity:0.25" - transform="translate(-2.9802322e-8,224.49998)"> - <rect - rx="4" - ry="4" - y="122.8622" - x="250.49998" - height="64.999992" - width="54.999996" - id="rect4179-2-0-9-2" - style="opacity:0.45;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - rx="5" - ry="5" - y="121.86221" - x="249.5" - height="67" - width="57" - id="rect4179-2-0-9-4-6" - style="opacity:0.25;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - rx="6" - ry="6" - y="120.86219" - x="248.5" - height="69" - width="59" - id="rect4179-2-0-9-4-4" - style="opacity:0.125;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - rx="7" - ry="7" - y="119.8622" - x="247.5" - height="70.999992" - width="61" - id="rect4179-2-0-9-4-4-3" - style="opacity:0.06199999;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - rx="8" - ry="8" - y="118.86221" - x="246.5" - height="73" - width="63" - id="rect4179-2-0-9-4-4-3-8" - style="opacity:0.02999998;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - </g> - <rect - style="opacity:0.95;fill:#25272d;fill-opacity:1;stroke:#101114;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect4179-2-0-9" - width="53" - height="64.000008" - x="251.5" - y="347.86218" - ry="2.0000002" - rx="2" /> - </g> -</svg> diff --git a/gnome-shell/misc/calendar-arrow-left-hover.svg b/gnome-shell/misc/calendar-arrow-left-hover.svg deleted file mode 100644 index 7f292f8..0000000 --- a/gnome-shell/misc/calendar-arrow-left-hover.svg +++ /dev/null @@ -1,169 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - sodipodi:docname="calendar-arrow-left-hover.svg" - height="16" - id="svg7384" - inkscape:version="0.91 r13725" - version="1.1" - width="16"> - <metadata - id="metadata90"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title>Gnome Symbolic Icon Theme</dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <sodipodi:namedview - inkscape:bbox-nodes="false" - inkscape:bbox-paths="true" - bordercolor="#666666" - borderopacity="1" - inkscape:current-layer="layer12" - inkscape:cx="-21.616809" - inkscape:cy="2.0293849" - gridtolerance="10" - inkscape:guide-bbox="true" - guidetolerance="10" - id="namedview88" - inkscape:object-nodes="false" - inkscape:object-paths="false" - objecttolerance="10" - pagecolor="#ffffff" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - showborder="false" - showgrid="false" - showguides="true" - inkscape:snap-bbox="true" - inkscape:snap-bbox-midpoints="false" - inkscape:snap-global="true" - inkscape:snap-grids="true" - inkscape:snap-nodes="true" - inkscape:snap-others="false" - inkscape:snap-to-guides="true" - inkscape:window-height="720" - inkscape:window-maximized="1" - inkscape:window-width="1366" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:zoom="5.6568543"> - <inkscape:grid - empspacing="2" - enabled="true" - id="grid4866" - originx="141px" - originy="530px" - snapvisiblegridlinesonly="true" - spacingx="1px" - spacingy="1px" - type="xygrid" - visible="true" /> - <inkscape:grid - color="#000000" - empcolor="#000000" - empopacity="0" - empspacing="4" - enabled="true" - id="grid5968" - opacity="0.1254902" - originx="141px" - originy="530px" - snapvisiblegridlinesonly="true" - spacingx="0.5px" - spacingy="0.5px" - type="xygrid" - visible="true" /> - </sodipodi:namedview> - <title - id="title9167">Gnome Symbolic Icon Theme</title> - <defs - id="defs7386" /> - <g - inkscape:groupmode="layer" - id="layer9" - inkscape:label="status" - style="display:inline" - transform="translate(-100.0002,-747)" /> - <g - inkscape:groupmode="layer" - id="layer10" - inkscape:label="devices" - transform="translate(-100.0002,-747)" /> - <g - inkscape:groupmode="layer" - id="layer11" - inkscape:label="apps" - transform="translate(-100.0002,-747)" /> - <g - inkscape:groupmode="layer" - id="layer13" - inkscape:label="places" - transform="translate(-100.0002,-747)" /> - <g - inkscape:groupmode="layer" - id="layer14" - inkscape:label="mimetypes" - transform="translate(-100.0002,-747)" /> - <g - inkscape:groupmode="layer" - id="layer15" - inkscape:label="emblems" - style="display:inline" - transform="translate(-100.0002,-747)" /> - <g - inkscape:groupmode="layer" - id="g71291" - inkscape:label="emotes" - style="display:inline" - transform="translate(-100.0002,-747)" /> - <g - inkscape:groupmode="layer" - id="g4953" - inkscape:label="categories" - style="display:inline" - transform="translate(-100.0002,-747)" /> - <g - inkscape:groupmode="layer" - id="layer12" - inkscape:label="actions" - style="display:inline" - transform="translate(-100.0002,-747)"> - <path - inkscape:connector-curvature="0" - d="m 110.875,749 a 1.0001,1.0001 0 0 0 -0.59375,0.28125 l -5,5 -0.6875,0.71875 0.6875,0.71875 5,5 a 1.016466,1.016466 0 1 0 1.4375,-1.4375 L 107.4375,755 l 4.28125,-4.28125 A 1.0001,1.0001 0 0 0 110.875,749 z" - id="path6040" - style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" /> - <rect - height="1" - id="rect6046" - rx="0" - ry="1" - style="fill:#5294e2;fill-opacity:1;stroke:none" - width="1" - x="111.0002" - y="749" /> - <rect - height="1" - id="rect6050" - rx="0" - ry="1" - style="fill:#5294e2;fill-opacity:1;stroke:none" - width="1" - x="111.0002" - y="760" /> - </g> -</svg> diff --git a/gnome-shell/misc/calendar-arrow-left.svg b/gnome-shell/misc/calendar-arrow-left.svg deleted file mode 100644 index 5602eff..0000000 --- a/gnome-shell/misc/calendar-arrow-left.svg +++ /dev/null @@ -1,169 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - sodipodi:docname="calendar-arrow-left.svg" - height="16" - id="svg7384" - inkscape:version="0.91 r13725" - version="1.1" - width="16"> - <metadata - id="metadata90"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title>Gnome Symbolic Icon Theme</dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <sodipodi:namedview - inkscape:bbox-nodes="false" - inkscape:bbox-paths="true" - bordercolor="#666666" - borderopacity="1" - inkscape:current-layer="layer12" - inkscape:cx="-9.0656635" - inkscape:cy="-4.6881295" - gridtolerance="10" - inkscape:guide-bbox="true" - guidetolerance="10" - id="namedview88" - inkscape:object-nodes="false" - inkscape:object-paths="false" - objecttolerance="10" - pagecolor="#ffffff" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - showborder="false" - showgrid="false" - showguides="true" - inkscape:snap-bbox="true" - inkscape:snap-bbox-midpoints="false" - inkscape:snap-global="true" - inkscape:snap-grids="true" - inkscape:snap-nodes="true" - inkscape:snap-others="false" - inkscape:snap-to-guides="true" - inkscape:window-height="720" - inkscape:window-maximized="1" - inkscape:window-width="1366" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:zoom="5.6568543"> - <inkscape:grid - empspacing="2" - enabled="true" - id="grid4866" - originx="141px" - originy="530px" - snapvisiblegridlinesonly="true" - spacingx="1px" - spacingy="1px" - type="xygrid" - visible="true" /> - <inkscape:grid - color="#000000" - empcolor="#000000" - empopacity="0" - empspacing="4" - enabled="true" - id="grid5968" - opacity="0.1254902" - originx="141px" - originy="530px" - snapvisiblegridlinesonly="true" - spacingx="0.5px" - spacingy="0.5px" - type="xygrid" - visible="true" /> - </sodipodi:namedview> - <title - id="title9167">Gnome Symbolic Icon Theme</title> - <defs - id="defs7386" /> - <g - inkscape:groupmode="layer" - id="layer9" - inkscape:label="status" - style="display:inline" - transform="translate(-100.0002,-747)" /> - <g - inkscape:groupmode="layer" - id="layer10" - inkscape:label="devices" - transform="translate(-100.0002,-747)" /> - <g - inkscape:groupmode="layer" - id="layer11" - inkscape:label="apps" - transform="translate(-100.0002,-747)" /> - <g - inkscape:groupmode="layer" - id="layer13" - inkscape:label="places" - transform="translate(-100.0002,-747)" /> - <g - inkscape:groupmode="layer" - id="layer14" - inkscape:label="mimetypes" - transform="translate(-100.0002,-747)" /> - <g - inkscape:groupmode="layer" - id="layer15" - inkscape:label="emblems" - style="display:inline" - transform="translate(-100.0002,-747)" /> - <g - inkscape:groupmode="layer" - id="g71291" - inkscape:label="emotes" - style="display:inline" - transform="translate(-100.0002,-747)" /> - <g - inkscape:groupmode="layer" - id="g4953" - inkscape:label="categories" - style="display:inline" - transform="translate(-100.0002,-747)" /> - <g - inkscape:groupmode="layer" - id="layer12" - inkscape:label="actions" - style="display:inline" - transform="translate(-100.0002,-747)"> - <path - inkscape:connector-curvature="0" - d="m 110.875,749 a 1.0001,1.0001 0 0 0 -0.59375,0.28125 l -5,5 -0.6875,0.71875 0.6875,0.71875 5,5 a 1.016466,1.016466 0 1 0 1.4375,-1.4375 L 107.4375,755 l 4.28125,-4.28125 A 1.0001,1.0001 0 0 0 110.875,749 z" - id="path6040" - style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#a1a1a1;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" /> - <rect - height="1" - id="rect6046" - rx="0" - ry="1" - style="fill:#a1a1a1;fill-opacity:1;stroke:none" - width="1" - x="111.0002" - y="749" /> - <rect - height="1" - id="rect6050" - rx="0" - ry="1" - style="fill:#a1a1a1;fill-opacity:1;stroke:none" - width="1" - x="111.0002" - y="760" /> - </g> -</svg> diff --git a/gnome-shell/misc/calendar-arrow-right-hover.svg b/gnome-shell/misc/calendar-arrow-right-hover.svg deleted file mode 100644 index beadead..0000000 --- a/gnome-shell/misc/calendar-arrow-right-hover.svg +++ /dev/null @@ -1,171 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - sodipodi:docname="calendar-arrow-right-hover.svg" - height="16" - id="svg7384" - inkscape:version="0.91 r13725" - version="1.1" - width="16"> - <metadata - id="metadata90"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title>Gnome Symbolic Icon Theme</dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <sodipodi:namedview - inkscape:bbox-nodes="false" - inkscape:bbox-paths="true" - bordercolor="#666666" - borderopacity="1" - inkscape:current-layer="layer12" - inkscape:cx="3.892693" - inkscape:cy="8.8200689" - gridtolerance="10" - inkscape:guide-bbox="true" - guidetolerance="10" - id="namedview88" - inkscape:object-nodes="false" - inkscape:object-paths="false" - objecttolerance="10" - pagecolor="#ffffff" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - showborder="false" - showgrid="false" - showguides="true" - inkscape:snap-bbox="true" - inkscape:snap-bbox-midpoints="false" - inkscape:snap-global="true" - inkscape:snap-grids="true" - inkscape:snap-nodes="true" - inkscape:snap-others="false" - inkscape:snap-to-guides="true" - inkscape:window-height="720" - inkscape:window-maximized="1" - inkscape:window-width="1366" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:zoom="16"> - <inkscape:grid - empspacing="2" - enabled="true" - id="grid4866" - originx="-80.000002px" - originy="530px" - snapvisiblegridlinesonly="true" - spacingx="1px" - spacingy="1px" - type="xygrid" - visible="true" /> - <inkscape:grid - color="#000000" - empcolor="#000000" - empopacity="0" - empspacing="4" - enabled="true" - id="grid5968" - opacity="0.1254902" - originx="-80.000002px" - originy="530px" - snapvisiblegridlinesonly="true" - spacingx="0.5px" - spacingy="0.5px" - type="xygrid" - visible="true" /> - </sodipodi:namedview> - <title - id="title9167">Gnome Symbolic Icon Theme</title> - <defs - id="defs7386" /> - <g - inkscape:groupmode="layer" - id="layer9" - inkscape:label="status" - style="display:inline" - transform="translate(-321.0002,-747)" /> - <g - inkscape:groupmode="layer" - id="layer10" - inkscape:label="devices" - transform="translate(-321.0002,-747)" /> - <g - inkscape:groupmode="layer" - id="layer11" - inkscape:label="apps" - transform="translate(-321.0002,-747)" /> - <g - inkscape:groupmode="layer" - id="layer13" - inkscape:label="places" - transform="translate(-321.0002,-747)" /> - <g - inkscape:groupmode="layer" - id="layer14" - inkscape:label="mimetypes" - transform="translate(-321.0002,-747)" /> - <g - inkscape:groupmode="layer" - id="layer15" - inkscape:label="emblems" - style="display:inline" - transform="translate(-321.0002,-747)" /> - <g - inkscape:groupmode="layer" - id="g71291" - inkscape:label="emotes" - style="display:inline" - transform="translate(-321.0002,-747)" /> - <g - inkscape:groupmode="layer" - id="g4953" - inkscape:label="categories" - style="display:inline" - transform="translate(-321.0002,-747)" /> - <g - inkscape:groupmode="layer" - id="layer12" - inkscape:label="actions" - style="display:inline" - transform="translate(-321.0002,-747)"> - <path - inkscape:connector-curvature="0" - d="m 325.78125,749 a 1.0001,1.0001 0 0 0 -0.5,1.71875 L 329.5625,755 l -4.28125,4.28125 a 1.016466,1.016466 0 1 0 1.4375,1.4375 l 5,-5 0.6875,-0.71875 -0.6875,-0.71875 -5,-5 A 1.0001,1.0001 0 0 0 325.78125,749 z" - id="path8460" - style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" /> - <rect - height="1" - id="rect8464" - rx="0" - ry="1" - style="fill:#5294e2;fill-opacity:1;stroke:none" - transform="scale(-1,1)" - width="1" - x="-326.00021" - y="749" /> - <rect - height="1" - id="rect8468" - rx="0" - ry="1" - style="fill:#5294e2;fill-opacity:1;stroke:none" - transform="scale(-1,1)" - width="1" - x="-326.00021" - y="760" /> - </g> -</svg> diff --git a/gnome-shell/misc/calendar-arrow-right.svg b/gnome-shell/misc/calendar-arrow-right.svg deleted file mode 100644 index 734b53b..0000000 --- a/gnome-shell/misc/calendar-arrow-right.svg +++ /dev/null @@ -1,171 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - sodipodi:docname="calendar-arrow-right.svg" - height="16" - id="svg7384" - inkscape:version="0.91 r13725" - version="1.1" - width="16"> - <metadata - id="metadata90"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title>Gnome Symbolic Icon Theme</dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <sodipodi:namedview - inkscape:bbox-nodes="false" - inkscape:bbox-paths="true" - bordercolor="#666666" - borderopacity="1" - inkscape:current-layer="layer12" - inkscape:cx="-12.348759" - inkscape:cy="7.764245" - gridtolerance="10" - inkscape:guide-bbox="true" - guidetolerance="10" - id="namedview88" - inkscape:object-nodes="false" - inkscape:object-paths="false" - objecttolerance="10" - pagecolor="#ffffff" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - showborder="false" - showgrid="false" - showguides="true" - inkscape:snap-bbox="true" - inkscape:snap-bbox-midpoints="false" - inkscape:snap-global="true" - inkscape:snap-grids="true" - inkscape:snap-nodes="true" - inkscape:snap-others="false" - inkscape:snap-to-guides="true" - inkscape:window-height="720" - inkscape:window-maximized="1" - inkscape:window-width="1366" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:zoom="8"> - <inkscape:grid - empspacing="2" - enabled="true" - id="grid4866" - originx="-80.000002px" - originy="530px" - snapvisiblegridlinesonly="true" - spacingx="1px" - spacingy="1px" - type="xygrid" - visible="true" /> - <inkscape:grid - color="#000000" - empcolor="#000000" - empopacity="0" - empspacing="4" - enabled="true" - id="grid5968" - opacity="0.1254902" - originx="-80.000002px" - originy="530px" - snapvisiblegridlinesonly="true" - spacingx="0.5px" - spacingy="0.5px" - type="xygrid" - visible="true" /> - </sodipodi:namedview> - <title - id="title9167">Gnome Symbolic Icon Theme</title> - <defs - id="defs7386" /> - <g - inkscape:groupmode="layer" - id="layer9" - inkscape:label="status" - style="display:inline" - transform="translate(-321.0002,-747)" /> - <g - inkscape:groupmode="layer" - id="layer10" - inkscape:label="devices" - transform="translate(-321.0002,-747)" /> - <g - inkscape:groupmode="layer" - id="layer11" - inkscape:label="apps" - transform="translate(-321.0002,-747)" /> - <g - inkscape:groupmode="layer" - id="layer13" - inkscape:label="places" - transform="translate(-321.0002,-747)" /> - <g - inkscape:groupmode="layer" - id="layer14" - inkscape:label="mimetypes" - transform="translate(-321.0002,-747)" /> - <g - inkscape:groupmode="layer" - id="layer15" - inkscape:label="emblems" - style="display:inline" - transform="translate(-321.0002,-747)" /> - <g - inkscape:groupmode="layer" - id="g71291" - inkscape:label="emotes" - style="display:inline" - transform="translate(-321.0002,-747)" /> - <g - inkscape:groupmode="layer" - id="g4953" - inkscape:label="categories" - style="display:inline" - transform="translate(-321.0002,-747)" /> - <g - inkscape:groupmode="layer" - id="layer12" - inkscape:label="actions" - style="display:inline" - transform="translate(-321.0002,-747)"> - <path - inkscape:connector-curvature="0" - d="m 325.78125,749 a 1.0001,1.0001 0 0 0 -0.5,1.71875 L 329.5625,755 l -4.28125,4.28125 a 1.016466,1.016466 0 1 0 1.4375,1.4375 l 5,-5 0.6875,-0.71875 -0.6875,-0.71875 -5,-5 A 1.0001,1.0001 0 0 0 325.78125,749 z" - id="path8460" - style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#a1a1a1;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" /> - <rect - height="1" - id="rect8464" - rx="0" - ry="1" - style="fill:#a1a1a1;fill-opacity:1;stroke:none" - transform="scale(-1,1)" - width="1" - x="-326.00021" - y="749" /> - <rect - height="1" - id="rect8468" - rx="0" - ry="1" - style="fill:#a1a1a1;fill-opacity:1;stroke:none" - transform="scale(-1,1)" - width="1" - x="-326.00021" - y="760" /> - </g> -</svg> diff --git a/gnome-shell/misc/close-active.svg b/gnome-shell/misc/close-active.svg deleted file mode 100644 index a541886..0000000 --- a/gnome-shell/misc/close-active.svg +++ /dev/null @@ -1,120 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.0" - id="Foreground" - x="0px" - y="0px" - width="26" - height="26" - viewBox="0 0 18.909091 18.909091" - enable-background="new 0 0 16 16" - xml:space="preserve" - sodipodi:version="0.32" - inkscape:version="0.91 r13725" - sodipodi:docname="message-list-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></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs2397"><linearGradient - id="linearGradient3845"><stop - id="stop3847" - offset="0" - style="stop-color:#000000;stop-opacity:0.18039216;" /><stop - id="stop3849" - offset="1" - style="stop-color:#000000;stop-opacity:0.43137255;" /></linearGradient><linearGradient - id="linearGradient3837"><stop - id="stop3839" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /><stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="0.08333334" - id="stop3781" /><stop - id="stop3783" - offset="0.90909094" - style="stop-color:#0b0b0b;stop-opacity:0;" /><stop - id="stop3841" - offset="1" - style="stop-color:#000000;stop-opacity:0.02745098;" /></linearGradient></defs><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>
\ No newline at end of file diff --git a/gnome-shell/misc/close-hover.svg b/gnome-shell/misc/close-hover.svg deleted file mode 100644 index 615e7e2..0000000 --- a/gnome-shell/misc/close-hover.svg +++ /dev/null @@ -1,120 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.0" - id="Foreground" - x="0px" - y="0px" - width="26" - height="26" - viewBox="0 0 18.909091 18.909091" - enable-background="new 0 0 16 16" - xml:space="preserve" - sodipodi:version="0.32" - inkscape:version="0.91 r13725" - sodipodi:docname="message-list-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></dc:title></cc:Work></rdf:RDF></metadata><defs - id="defs2397"><linearGradient - id="linearGradient3845"><stop - id="stop3847" - offset="0" - style="stop-color:#000000;stop-opacity:0.18039216;" /><stop - id="stop3849" - offset="1" - style="stop-color:#000000;stop-opacity:0.43137255;" /></linearGradient><linearGradient - id="linearGradient3837"><stop - id="stop3839" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /><stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="0.08333334" - id="stop3781" /><stop - id="stop3783" - offset="0.90909094" - style="stop-color:#0b0b0b;stop-opacity:0;" /><stop - id="stop3841" - offset="1" - style="stop-color:#000000;stop-opacity:0.02745098;" /></linearGradient></defs><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>
\ No newline at end of file diff --git a/gnome-shell/misc/close.svg b/gnome-shell/misc/close.svg deleted file mode 100644 index 0ba078b..0000000 --- a/gnome-shell/misc/close.svg +++ /dev/null @@ -1,120 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - version="1.0" - id="Foreground" - x="0px" - y="0px" - width="26" - height="26" - viewBox="0 0 18.909091 18.909091" - enable-background="new 0 0 16 16" - xml:space="preserve" - sodipodi:version="0.32" - inkscape:version="0.91 r13725" - sodipodi:docname="message-list-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"><linearGradient - id="linearGradient3845"><stop - id="stop3847" - offset="0" - style="stop-color:#000000;stop-opacity:0.18039216;" /><stop - id="stop3849" - offset="1" - style="stop-color:#000000;stop-opacity:0.43137255;" /></linearGradient><linearGradient - id="linearGradient3837"><stop - id="stop3839" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /><stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="0.08333334" - id="stop3781" /><stop - id="stop3783" - offset="0.90909094" - style="stop-color:#0b0b0b;stop-opacity:0;" /><stop - id="stop3841" - offset="1" - style="stop-color:#000000;stop-opacity:0.02745098;" /></linearGradient></defs><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>
\ No newline at end of file diff --git a/gnome-shell/misc/corner-ripple-ltr.svg b/gnome-shell/misc/corner-ripple-ltr.svg deleted file mode 100644 index d495c9e..0000000 --- a/gnome-shell/misc/corner-ripple-ltr.svg +++ /dev/null @@ -1,125 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns: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="52" - height="52" - id="svg2" - version="1.1" - inkscape:version="0.48.5 r10040" - sodipodi:docname="corner-ripple-ltr.svg"> - <defs - id="defs4"> - <linearGradient - id="linearGradient3857"> - <stop - style="stop-color:#398dd3;stop-opacity:0;" - offset="0" - id="stop3859" /> - <stop - style="stop-color:#398cd3;stop-opacity:1;" - offset="1" - id="stop3861" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3857" - id="radialGradient3863" - cx="0" - cy="0" - fx="0" - fy="0" - r="52" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="5.6" - inkscape:cx="-19.986036" - inkscape:cy="44.805381" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:snap-global="true" - inkscape:window-width="1920" - inkscape:window-height="1055" - inkscape:window-x="0" - inkscape:window-y="20" - inkscape:window-maximized="1"> - <inkscape:grid - type="xygrid" - id="grid2985" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" - originy="2px" /> - <sodipodi:guide - orientation="1,0" - position="52,0" - id="guide2987" /> - <sodipodi:guide - orientation="0,1" - position="52,0" - id="guide2989" /> - <sodipodi:guide - orientation="0,1" - position="0,52" - id="guide3761" /> - <sodipodi:guide - orientation="1,0" - position="0,52" - id="guide3763" /> - <sodipodi:guide - orientation="1,0" - position="51,1" - id="guide3773" /> - <sodipodi:guide - orientation="0,1" - position="51,1" - id="guide3775" /> - </sodipodi:namedview> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1000.3622)"> - <path - sodipodi:type="arc" - style="fill:url(#radialGradient3863);fill-rule:evenodd;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none;fill-opacity:1" - id="path2991" - sodipodi:cx="0" - sodipodi:cy="0" - sodipodi:rx="52" - sodipodi:ry="52" - d="M 52,0 A 52,52 0 1 1 -52,0 52,52 0 1 1 52,0 z" - transform="translate(0,1000.3622)" /> - </g> -</svg> diff --git a/gnome-shell/misc/corner-ripple-rtl.svg b/gnome-shell/misc/corner-ripple-rtl.svg deleted file mode 100644 index 408edb3..0000000 --- a/gnome-shell/misc/corner-ripple-rtl.svg +++ /dev/null @@ -1,75 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns: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" - version="1.1" - width="52" - height="52" - id="svg2" - inkscape:version="0.48.5 r10040" - sodipodi:docname="corner-ripple-rtl.svg"> - <sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="640" - inkscape:window-height="480" - id="namedview955" /> - <defs - id="defs4"> - <linearGradient - id="linearGradient3857"> - <stop - id="stop3859" - style="stop-color:#398dd3;stop-opacity:0" - offset="0" /> - <stop - id="stop3861" - style="stop-color:#398cd3;stop-opacity:1" - offset="1" /> - </linearGradient> - <radialGradient - cx="0" - cy="0" - r="52" - fx="0" - fy="0" - id="radialGradient3863" - xlink:href="#linearGradient3857" - gradientUnits="userSpaceOnUse" /> - </defs> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - transform="translate(0,-1000.3622)" - id="layer1"> - <path - d="M 52,0 A 52,52 0 1 1 -52,0 52,52 0 1 1 52,0 z" - transform="translate(52,1000.3622)" - id="path2991" - style="fill:url(#radialGradient3863);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - </g> -</svg> diff --git a/gnome-shell/misc/dash-placeholder.svg b/gnome-shell/misc/dash-placeholder.svg deleted file mode 100755 index cbae148..0000000 --- a/gnome-shell/misc/dash-placeholder.svg +++ /dev/null @@ -1,84 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - width="76" - height="27" - id="svg11252" - version="1.1"> - <defs - id="defs11254"> - <radialGradient - xlink:href="#linearGradient39563-4-2" - id="radialGradient68155-2-3" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.3486842,0,317.8421)" - cx="49" - cy="488" - fx="49" - fy="488" - r="38" /> - <linearGradient - id="linearGradient39563-4-2"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop39565-1-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop39567-7-9" /> - </linearGradient> - <radialGradient - xlink:href="#linearGradient39573-6-1" - id="radialGradient68157-0-8" - gradientUnits="userSpaceOnUse" - cx="50.5" - cy="487.5" - fx="50.5" - fy="487.5" - r="10.5" /> - <linearGradient - id="linearGradient39573-6-1"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop39575-5-6" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop39577-1-2" /> - </linearGradient> - </defs> - <g - id="layer1" - transform="translate(-337,-518.86218)"> - <g - id="g99967" - style="display:inline" - transform="translate(326,44.862171)"> - <rect - style="opacity:0.49375;color:#000000;fill:url(#radialGradient68155-2-3);fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="rect99969" - width="76" - height="2" - x="11" - y="487" - rx="0" - ry="0" /> - <path - style="opacity:0.43125;color:#000000;fill:url(#radialGradient68157-0-8);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path99971" - d="M 61,487.5 C 61,493.29899 56.29899,498 50.5,498 44.70101,498 40,493.29899 40,487.5 40,481.70101 44.70101,477 50.5,477 c 5.79899,0 10.5,4.70101 10.5,10.5 z" - transform="matrix(1.2857143,0,0,1.2857143,-14.428572,-139.28571)" /> - <path - transform="matrix(0.43589747,0,0,0.43589747,28.487179,275)" - d="M 61,487.5 C 61,493.29899 56.29899,498 50.5,498 44.70101,498 40,493.29899 40,487.5 40,481.70101 44.70101,477 50.5,477 c 5.79899,0 10.5,4.70101 10.5,10.5 z" - id="path99973" - style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> - </g> - </g> -</svg> diff --git a/gnome-shell/misc/logged-in-indicator.svg b/gnome-shell/misc/logged-in-indicator.svg deleted file mode 100755 index c0267ea..0000000 --- a/gnome-shell/misc/logged-in-indicator.svg +++ /dev/null @@ -1,130 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns: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="300" - height="80" - id="svg7355" - version="1.1" - inkscape:version="0.48.2 r9819" - sodipodi:docname="logged-in-indicator.svg"> - <metadata - id="metadata4175"> - <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> - <sodipodi:namedview - pagecolor="#2c1cff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:window-width="1440" - inkscape:window-height="843" - id="namedview4173" - showgrid="false" - inkscape:zoom="2.8760889" - inkscape:cx="106.00403" - inkscape:cy="80.68078" - inkscape:window-x="0" - inkscape:window-y="27" - inkscape:window-maximized="1" - inkscape:current-layer="g30864" /> - <defs - id="defs7357"> - <radialGradient - xlink:href="#linearGradient36429" - id="radialGradient7461" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.5919312,0,0,0.57582113,-20.687059,48.400487)" - cx="47.428951" - cy="167.16817" - fx="47.428951" - fy="167.16817" - r="37" /> - <linearGradient - id="linearGradient36429"> - <stop - id="stop36431" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop36433" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - xlink:href="#linearGradient36471" - id="radialGradient7463" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1891549,0,0,0.55513246,-9.281289,36.12653)" - cx="49.067139" - cy="242.50381" - fx="49.067139" - fy="242.50381" - r="37.00671" /> - <linearGradient - id="linearGradient36471"> - <stop - id="stop36473" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop36475" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="37.00671" - fy="242.50381" - fx="49.067139" - cy="242.50381" - cx="49.067139" - gradientTransform="matrix(3.4218418,0,0,0.03365337,-61.309005,138.5071)" - gradientUnits="userSpaceOnUse" - id="radialGradient7488" - xlink:href="#linearGradient36471" /> - </defs> - <g - id="layer1" - transform="matrix(1.6213276,0,0,1.6213276,-431.6347,-272.5745)"> - <g - style="display:inline" - id="g30864" - transform="translate(255.223,70.118091)"> - <rect - ry="3.4593496" - rx="8.8641119" - y="76.159348" - x="12.596948" - height="71.116341" - width="182.22595" - id="rect14000" - style="opacity:0.371875;fill:url(#radialGradient7461);fill-opacity:1;stroke:none" /> - <path - id="rect34520" - d="m 194.80022,146.83551 -182.559919,0" - style="opacity:0.35;fill:none;stroke:url(#radialGradient7488);stroke-width:0.61184424;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - connector-curvature="0" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - </g> - </g> -</svg> diff --git a/gnome-shell/misc/modal.svg b/gnome-shell/misc/modal.svg deleted file mode 100644 index 5648294..0000000 --- a/gnome-shell/misc/modal.svg +++ /dev/null @@ -1,141 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="66" - height="76" - viewBox="0 0 66.000001 75.999996" - id="svg5653" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="modal2.svg"> - <defs - id="defs5655" /> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="1" - inkscape:cx="4.0515156" - inkscape:cy="48.740716" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1366" - inkscape:window-height="718" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - showguides="false" - inkscape:snap-bbox="true" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true" - units="px"> - <inkscape:grid - type="xygrid" - id="grid4149" - originx="0" - originy="-133.99999" /> - </sodipodi:namedview> - <metadata - id="metadata5658"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-245,-342.3622)"> - <g - id="g4305" - style="opacity:0.15" - transform="translate(-2.9802322e-8,224.49998)"> - <rect - rx="4" - ry="4" - y="122.8622" - x="250.49998" - height="64.999992" - width="54.999996" - id="rect4179-2-0-9-2" - style="opacity:0.45;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - rx="5" - ry="5" - y="121.86221" - x="249.5" - height="67" - width="57" - id="rect4179-2-0-9-4-6" - style="opacity:0.25;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - rx="6" - ry="6" - y="120.86219" - x="248.5" - height="69" - width="59" - id="rect4179-2-0-9-4-4" - style="opacity:0.125;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - rx="7" - ry="7" - y="119.8622" - x="247.5" - height="70.999992" - width="61" - id="rect4179-2-0-9-4-4-3" - style="opacity:0.06199999;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - rx="8" - ry="8" - y="118.86221" - x="246.5" - height="73" - width="63" - id="rect4179-2-0-9-4-4-3-8" - style="opacity:0.02999998;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - </g> - <rect - style="opacity:0.95;fill:#f9fafb;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.66666667" - id="rect4179-2-0-9" - width="54" - height="65.000008" - x="251" - y="347.36218" - ry="2.0000002" - rx="2" /> - <rect - style="opacity:0.1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect4179-2-0-9-7" - width="55" - height="66.000008" - x="250.5" - y="346.86218" - ry="2.5" - rx="2.4999998" /> - </g> -</svg> diff --git a/gnome-shell/misc/more-results.svg b/gnome-shell/misc/more-results.svg deleted file mode 100755 index 5846fbb..0000000 --- a/gnome-shell/misc/more-results.svg +++ /dev/null @@ -1,142 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="16" - height="16" - id="svg12430" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="more-results.svg"> - <defs - id="defs12432"> - <linearGradient - id="linearGradient3763-9"> - <stop - style="stop-color:#646464;stop-opacity:1" - offset="0" - id="stop3765-6" /> - <stop - style="stop-color:#969696;stop-opacity:1" - offset="1" - id="stop3767-7" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#7a7a7a" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="22.627417" - inkscape:cx="6.0810901" - inkscape:cy="9.9882296" - inkscape:document-units="px" - inkscape:current-layer="g14642-3-0" - showgrid="true" - borderlayer="true" - inkscape:showpageshadow="false" - inkscape:window-width="1920" - inkscape:window-height="1035" - inkscape:window-x="0" - inkscape:window-y="23" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true" - inkscape:snap-nodes="true" - inkscape:object-paths="true" - inkscape:snap-intersection-paths="true" - inkscape:object-nodes="true"> - <inkscape:grid - type="xygrid" - id="grid13002" /> - </sodipodi:namedview> - <metadata - id="metadata12435"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1036.3622)"> - <g - style="display:inline" - transform="translate(-141.99984,638.37113)" - inkscape:label="zoom-in" - id="g14642-3-0"> - <ellipse - style="opacity:1;fill:#5294e2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4156" - cx="149.99985" - cy="405.99106" - rx="8.0000029" - ry="7.9999957" /> - <rect - style="fill:none;stroke:none" - id="rect3620-5-4" - width="15.981825" - height="16" - x="142" - y="398" - rx="0" - ry="0" /> - <g - id="g4179" - transform="translate(141.99985,397.99107)"> - <g - style="opacity:0.55;fill:#000000;fill-opacity:1" - transform="matrix(0.765075,0,0,0.765075,1.8805941,0.87981267)" - id="g2996-1"> - <g - style="fill:#000000;fill-opacity:1" - transform="translate(-60,-518)" - id="layer12-1"> - <g - transform="translate(19,-242)" - id="layer4-4-1-9" - style="display:inline;fill:#000000;fill-opacity:1" /> - </g> - </g> - <g - style="fill:#ffffff;fill-opacity:1" - transform="matrix(0.765075,0,0,0.765075,1.8805941,1.8794795)" - id="g2996"> - <g - style="fill:#ffffff;fill-opacity:1" - transform="translate(-60,-518)" - id="layer12"> - <g - transform="translate(19,-242)" - id="layer4-4-1" - style="display:inline;fill:#ffffff;fill-opacity:1" /> - </g> - </g> - </g> - <path - style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" - d="m 148.99984,401.99107 0,3 -3,0 0,2 3,0 0,3 2,0 0,-3 3,0 0,-2 -3,0 0,-3 z" - id="rect3757" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccccccccccc" /> - </g> - </g> -</svg> diff --git a/gnome-shell/misc/noise-texture.png b/gnome-shell/misc/noise-texture.png Binary files differdeleted file mode 100755 index 6b70a2d..0000000 --- a/gnome-shell/misc/noise-texture.png +++ /dev/null diff --git a/gnome-shell/misc/osd.svg b/gnome-shell/misc/osd.svg deleted file mode 100644 index 64bf7f4..0000000 --- a/gnome-shell/misc/osd.svg +++ /dev/null @@ -1,132 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="66" - height="76" - viewBox="0 0 66.000001 75.999996" - id="svg5653" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="osd.svg"> - <defs - id="defs5655" /> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="4" - inkscape:cx="23.474705" - inkscape:cy="35.375708" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1366" - inkscape:window-height="718" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - showguides="false" - inkscape:snap-bbox="true" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true" - units="px"> - <inkscape:grid - type="xygrid" - id="grid4149" - originx="0" - originy="-133.99999" /> - </sodipodi:namedview> - <metadata - id="metadata5658"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-245,-342.3622)"> - <g - id="g4305" - style="opacity:0.25" - transform="translate(-2.9802322e-8,224.49998)"> - <rect - rx="4" - ry="4" - y="122.8622" - x="250.49998" - height="64.999992" - width="54.999996" - id="rect4179-2-0-9-2" - style="opacity:0.45;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - rx="5" - ry="5" - y="121.86221" - x="249.5" - height="67" - width="57" - id="rect4179-2-0-9-4-6" - style="opacity:0.25;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - rx="6" - ry="6" - y="120.86219" - x="248.5" - height="69" - width="59" - id="rect4179-2-0-9-4-4" - style="opacity:0.125;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - rx="7" - ry="7" - y="119.8622" - x="247.5" - height="70.999992" - width="61" - id="rect4179-2-0-9-4-4-3" - style="opacity:0.06199999;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - rx="8" - ry="8" - y="118.86221" - x="246.5" - height="73" - width="63" - id="rect4179-2-0-9-4-4-3-8" - style="opacity:0.02999998;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - </g> - <rect - style="opacity:0.95;fill:#25272d;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.66666667" - id="rect4179-2-0-9" - width="54" - height="65.000008" - x="251" - y="347.36218" - ry="2.0000002" - rx="2" /> - </g> -</svg> diff --git a/gnome-shell/misc/page-indicator-active.svg b/gnome-shell/misc/page-indicator-active.svg deleted file mode 100755 index 89446ce..0000000 --- a/gnome-shell/misc/page-indicator-active.svg +++ /dev/null @@ -1,67 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="18" - height="18" - id="svg5266" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="page-indicator-active.svg"> - <defs - id="defs5268" /> - <sodipodi:namedview - id="base" - pagecolor="#cacaca" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:zoom="16" - inkscape:cx="0.44498099" - inkscape:cy="7.5490324" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:grid-bbox="true" - inkscape:document-units="px" - inkscape:window-width="1366" - inkscape:window-height="720" - inkscape:window-x="0" - inkscape:window-y="23" - inkscape:window-maximized="1"> - <inkscape:grid - type="xygrid" - id="grid4134" /> - </sodipodi:namedview> - <metadata - id="metadata5271"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - id="layer1" - inkscape:label="Layer 1" - inkscape:groupmode="layer" - transform="translate(0,2)"> - <circle - style="opacity:1;fill:#5294e2;fill-opacity:1;stroke:none;stroke-opacity:0.70588235" - id="path4136" - cx="9" - cy="7" - r="4" /> - </g> -</svg> diff --git a/gnome-shell/misc/page-indicator-checked.svg b/gnome-shell/misc/page-indicator-checked.svg deleted file mode 100755 index 05984c2..0000000 --- a/gnome-shell/misc/page-indicator-checked.svg +++ /dev/null @@ -1,67 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="18" - height="18" - id="svg5266" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="page-indicator-checked.svg"> - <defs - id="defs5268" /> - <sodipodi:namedview - id="base" - pagecolor="#cacaca" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:zoom="16" - inkscape:cx="-0.24251901" - inkscape:cy="12.653928" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:grid-bbox="true" - inkscape:document-units="px" - inkscape:window-width="1366" - inkscape:window-height="720" - inkscape:window-x="0" - inkscape:window-y="23" - inkscape:window-maximized="1"> - <inkscape:grid - type="xygrid" - id="grid4134" /> - </sodipodi:namedview> - <metadata - id="metadata5271"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - id="layer1" - inkscape:label="Layer 1" - inkscape:groupmode="layer" - transform="translate(0,2)"> - <circle - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-opacity:0.70588235" - id="path4136" - cx="9" - cy="7" - r="4" /> - </g> -</svg> diff --git a/gnome-shell/misc/page-indicator-hover.svg b/gnome-shell/misc/page-indicator-hover.svg deleted file mode 100755 index 3aad35d..0000000 --- a/gnome-shell/misc/page-indicator-hover.svg +++ /dev/null @@ -1,67 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="18" - height="18" - id="svg5266" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="page-indicator-hover.svg"> - <defs - id="defs5268" /> - <sodipodi:namedview - id="base" - pagecolor="#cacaca" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:zoom="16" - inkscape:cx="-0.24251901" - inkscape:cy="12.653928" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:grid-bbox="true" - inkscape:document-units="px" - inkscape:window-width="1366" - inkscape:window-height="720" - inkscape:window-x="0" - inkscape:window-y="23" - inkscape:window-maximized="1"> - <inkscape:grid - type="xygrid" - id="grid4134" /> - </sodipodi:namedview> - <metadata - id="metadata5271"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - id="layer1" - inkscape:label="Layer 1" - inkscape:groupmode="layer" - transform="translate(0,2)"> - <circle - style="opacity:1;fill:#ffffff;fill-opacity:0.54901963;stroke:none;stroke-opacity:0.70588235" - id="path4136" - cx="9" - cy="7" - r="4" /> - </g> -</svg> diff --git a/gnome-shell/misc/page-indicator-inactive.svg b/gnome-shell/misc/page-indicator-inactive.svg deleted file mode 100755 index a3e418b..0000000 --- a/gnome-shell/misc/page-indicator-inactive.svg +++ /dev/null @@ -1,67 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="18" - height="18" - id="svg5266" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="page-indicator-inactive.svg"> - <defs - id="defs5268" /> - <sodipodi:namedview - id="base" - pagecolor="#cacaca" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:zoom="16" - inkscape:cx="-0.24251901" - inkscape:cy="12.653928" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:grid-bbox="true" - inkscape:document-units="px" - inkscape:window-width="1366" - inkscape:window-height="720" - inkscape:window-x="0" - inkscape:window-y="23" - inkscape:window-maximized="1"> - <inkscape:grid - type="xygrid" - id="grid4134" /> - </sodipodi:namedview> - <metadata - id="metadata5271"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - id="layer1" - inkscape:label="Layer 1" - inkscape:groupmode="layer" - transform="translate(0,2)"> - <circle - style="opacity:1;fill:#ffffff;fill-opacity:0.31455398;stroke:none;stroke-opacity:0.70588235" - id="path4136" - cx="9" - cy="7" - r="4" /> - </g> -</svg> diff --git a/gnome-shell/misc/process-working.svg b/gnome-shell/misc/process-working.svg deleted file mode 100755 index 43ffcca..0000000 --- a/gnome-shell/misc/process-working.svg +++ /dev/null @@ -1,811 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns: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" - id="svg5369" - version="1.1" - inkscape:version="0.48.5 r10040" - width="96" - height="48" - sodipodi:docname="process-working.svg" - style="display:inline"> - <metadata - id="metadata5375"> - <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="defs5373"> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient35326" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <linearGradient - id="linearGradient8231-1-4-4-1"> - <stop - id="stop8233-28-5-27-1" - offset="0" - style="stop-color:#ffffff;stop-opacity:0" /> - <stop - style="stop-color:#ffffff;stop-opacity:0.15428571" - offset="0.31861392" - id="stop8235-7-3-94-3" /> - <stop - id="stop8237-7-8-20-2" - offset="0.54270232" - style="stop-color:#ffffff;stop-opacity:0.33714285" /> - <stop - id="stop8239-2-9-1-9" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient35230" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <linearGradient - id="linearGradient5767-6"> - <stop - id="stop5769-0" - offset="0" - style="stop-color:#bebebe;stop-opacity:0" /> - <stop - style="stop-color:#ffffff;stop-opacity:0" - offset="0.31861392" - id="stop5771-1" /> - <stop - id="stop5773-7" - offset="0.75051737" - style="stop-color:#ffffff;stop-opacity:0.42857143" /> - <stop - id="stop5775-8" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient10255" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <linearGradient - id="linearGradient10257"> - <stop - id="stop10259" - offset="0" - style="stop-color:#ffffff;stop-opacity:0" /> - <stop - style="stop-color:#ffffff;stop-opacity:0.15428571" - offset="0.31861392" - id="stop10261" /> - <stop - id="stop10263" - offset="0.54270232" - style="stop-color:#ffffff;stop-opacity:0.33714285" /> - <stop - id="stop10265" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient10267" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <linearGradient - id="linearGradient10269"> - <stop - id="stop10271" - offset="0" - style="stop-color:#bebebe;stop-opacity:0" /> - <stop - style="stop-color:#ffffff;stop-opacity:0" - offset="0.31861392" - id="stop10273" /> - <stop - id="stop10275" - offset="0.75051737" - style="stop-color:#ffffff;stop-opacity:0.42857143" /> - <stop - id="stop10277" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient10279" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <linearGradient - id="linearGradient10281"> - <stop - id="stop10283" - offset="0" - style="stop-color:#ffffff;stop-opacity:0" /> - <stop - style="stop-color:#ffffff;stop-opacity:0.15428571" - offset="0.31861392" - id="stop10285" /> - <stop - id="stop10287" - offset="0.54270232" - style="stop-color:#ffffff;stop-opacity:0.33714285" /> - <stop - id="stop10289" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient10291" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <linearGradient - id="linearGradient10293"> - <stop - id="stop10295" - offset="0" - style="stop-color:#bebebe;stop-opacity:0" /> - <stop - style="stop-color:#ffffff;stop-opacity:0" - offset="0.31861392" - id="stop10297" /> - <stop - id="stop10299" - offset="0.75051737" - style="stop-color:#ffffff;stop-opacity:0.42857143" /> - <stop - id="stop10301" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient10303" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <linearGradient - id="linearGradient10305"> - <stop - id="stop10307" - offset="0" - style="stop-color:#ffffff;stop-opacity:0" /> - <stop - style="stop-color:#ffffff;stop-opacity:0.15428571" - offset="0.31861392" - id="stop10309" /> - <stop - id="stop10311" - offset="0.54270232" - style="stop-color:#ffffff;stop-opacity:0.33714285" /> - <stop - id="stop10313" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient10315" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <linearGradient - id="linearGradient10317"> - <stop - id="stop10319" - offset="0" - style="stop-color:#bebebe;stop-opacity:0" /> - <stop - style="stop-color:#ffffff;stop-opacity:0" - offset="0.31861392" - id="stop10321" /> - <stop - id="stop10323" - offset="0.75051737" - style="stop-color:#ffffff;stop-opacity:0.42857143" /> - <stop - id="stop10325" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient10327" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <linearGradient - id="linearGradient10329"> - <stop - id="stop10331" - offset="0" - style="stop-color:#ffffff;stop-opacity:0" /> - <stop - style="stop-color:#ffffff;stop-opacity:0.15428571" - offset="0.31861392" - id="stop10333" /> - <stop - id="stop10335" - offset="0.54270232" - style="stop-color:#ffffff;stop-opacity:0.33714285" /> - <stop - id="stop10337" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient10339" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <linearGradient - id="linearGradient10341"> - <stop - id="stop10343" - offset="0" - style="stop-color:#bebebe;stop-opacity:0" /> - <stop - style="stop-color:#ffffff;stop-opacity:0" - offset="0.31861392" - id="stop10345" /> - <stop - id="stop10347" - offset="0.75051737" - style="stop-color:#ffffff;stop-opacity:0.42857143" /> - <stop - id="stop10349" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient10351" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <linearGradient - id="linearGradient10353"> - <stop - id="stop10355" - offset="0" - style="stop-color:#ffffff;stop-opacity:0" /> - <stop - style="stop-color:#ffffff;stop-opacity:0.15428571" - offset="0.31861392" - id="stop10357" /> - <stop - id="stop10359" - offset="0.54270232" - style="stop-color:#ffffff;stop-opacity:0.33714285" /> - <stop - id="stop10361" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient10363" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <linearGradient - id="linearGradient10365"> - <stop - id="stop10367" - offset="0" - style="stop-color:#bebebe;stop-opacity:0" /> - <stop - style="stop-color:#ffffff;stop-opacity:0" - offset="0.31861392" - id="stop10369" /> - <stop - id="stop10371" - offset="0.75051737" - style="stop-color:#ffffff;stop-opacity:0.42857143" /> - <stop - id="stop10373" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient10375" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <linearGradient - id="linearGradient10377"> - <stop - id="stop10379" - offset="0" - style="stop-color:#ffffff;stop-opacity:0" /> - <stop - style="stop-color:#ffffff;stop-opacity:0.15428571" - offset="0.31861392" - id="stop10381" /> - <stop - id="stop10383" - offset="0.54270232" - style="stop-color:#ffffff;stop-opacity:0.33714285" /> - <stop - id="stop10385" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient10387" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <linearGradient - id="linearGradient10389"> - <stop - id="stop10391" - offset="0" - style="stop-color:#bebebe;stop-opacity:0" /> - <stop - style="stop-color:#ffffff;stop-opacity:0" - offset="0.31861392" - id="stop10393" /> - <stop - id="stop10395" - offset="0.75051737" - style="stop-color:#ffffff;stop-opacity:0.42857143" /> - <stop - id="stop10397" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient10399" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <linearGradient - id="linearGradient10401"> - <stop - id="stop10403" - offset="0" - style="stop-color:#ffffff;stop-opacity:0" /> - <stop - style="stop-color:#ffffff;stop-opacity:0.15428571" - offset="0.31861392" - id="stop10405" /> - <stop - id="stop10407" - offset="0.54270232" - style="stop-color:#ffffff;stop-opacity:0.33714285" /> - <stop - id="stop10409" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient10411" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <linearGradient - id="linearGradient10413"> - <stop - id="stop10415" - offset="0" - style="stop-color:#bebebe;stop-opacity:0" /> - <stop - style="stop-color:#ffffff;stop-opacity:0" - offset="0.31861392" - id="stop10417" /> - <stop - id="stop10419" - offset="0.75051737" - style="stop-color:#ffffff;stop-opacity:0.42857143" /> - <stop - id="stop10421" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient10423" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <linearGradient - id="linearGradient10425"> - <stop - id="stop10427" - offset="0" - style="stop-color:#ffffff;stop-opacity:0" /> - <stop - style="stop-color:#ffffff;stop-opacity:0.15428571" - offset="0.31861392" - id="stop10429" /> - <stop - id="stop10431" - offset="0.54270232" - style="stop-color:#ffffff;stop-opacity:0.33714285" /> - <stop - id="stop10433" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient10435" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <linearGradient - id="linearGradient10437"> - <stop - id="stop10439" - offset="0" - style="stop-color:#bebebe;stop-opacity:0" /> - <stop - style="stop-color:#ffffff;stop-opacity:0" - offset="0.31861392" - id="stop10441" /> - <stop - id="stop10443" - offset="0.75051737" - style="stop-color:#ffffff;stop-opacity:0.42857143" /> - <stop - id="stop10445" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient10709" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient10711" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8231-1-4-4-1" - id="radialGradient10713" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.229454,-1.2865389,1.2087442,2.0939897,-228.90301,-208.08725)" - cx="-0.067823187" - cy="188.51917" - fx="-0.067823187" - fy="188.51917" - r="27.330345" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5767-6" - id="radialGradient10715" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1252013,-0.60470548,0.56813832,1.0568583,-107.67128,-11.948108)" - cx="0.053942412" - cy="189.15244" - fx="0.053942412" - fy="189.15244" - r="27.330345" /> - </defs> - <sodipodi:namedview - pagecolor="#808080" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1975" - inkscape:window-height="1098" - id="namedview5371" - showgrid="true" - borderlayer="true" - inkscape:showpageshadow="false" - inkscape:zoom="5.6568542" - inkscape:cx="40.82607" - inkscape:cy="30.594699" - inkscape:window-x="2560" - inkscape:window-y="33" - inkscape:window-maximized="0" - inkscape:current-layer="layer2" - inkscape:snap-bbox="true" - inkscape:snap-nodes="false"> - <inkscape:grid - type="xygrid" - id="grid11933" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - </sodipodi:namedview> - <g - inkscape:groupmode="layer" - id="layer1" - inkscape:label="tiles" - style="display:none"> - <rect - style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="rect12451" - width="24" - height="24" - x="0" - y="0" /> - <rect - y="24" - x="0" - height="24" - width="24" - id="rect12453" - style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> - <rect - y="0" - x="24" - height="24" - width="24" - id="rect12455" - style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> - <rect - style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="rect12457" - width="24" - height="24" - x="24" - y="24" /> - <rect - style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="rect12459" - width="24" - height="24" - x="48" - y="0" /> - <rect - y="24" - x="48" - height="24" - width="24" - id="rect12461" - style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> - <rect - y="0" - x="72" - height="24" - width="24" - id="rect12463" - style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> - <rect - style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="rect12465" - width="24" - height="24" - x="72" - y="24" /> - </g> - <g - inkscape:groupmode="layer" - id="layer2" - inkscape:label="spinner"> - <g - transform="matrix(0.43142675,0,0,0.43298814,218.13188,-592.92581)" - id="g10450-5-3" - style="display:inline"> - <path - inkscape:export-ydpi="90" - inkscape:export-xdpi="90" - inkscape:export-filename="/home/hbons/Moblin/git/carrick-ng/data/icons/network-connecting.png" - sodipodi:open="true" - sodipodi:end="4.712389" - sodipodi:start="0.23191105" - sodipodi:type="arc" - style="fill:none;stroke:url(#radialGradient10713);stroke-width:12.18051815;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" - id="path10452-5" - sodipodi:cx="-25.809397" - sodipodi:cy="179.43886" - sodipodi:rx="22.98097" - sodipodi:ry="22.98097" - d="m -3.4436513,184.72075 c -2.9171108,12.35226 -15.2953817,20.00096 -27.6476417,17.08385 -12.35226,-2.91711 -20.00096,-15.29538 -17.083849,-27.64764 2.449452,-10.372 11.708437,-17.69907 22.365746,-17.69907" - transform="matrix(-0.16397381,0.61157081,-0.61162275,-0.16377992,-372.32298,1442.5061)" /> - <path - transform="matrix(-0.63300818,0.01438356,-0.01458424,-0.63300359,-491.4014,1510.996)" - d="m -3.4436513,184.72075 c -2.9171108,12.35226 -15.2953817,20.00096 -27.6476417,17.08385 -12.35226,-2.91711 -20.00096,-15.29538 -17.083849,-27.64764 2.449452,-10.372 11.708437,-17.69907 22.365746,-17.69907" - sodipodi:ry="22.98097" - sodipodi:rx="22.98097" - sodipodi:cy="179.43886" - sodipodi:cx="-25.809397" - id="path10454-7" - style="fill:none;stroke:url(#radialGradient10715);stroke-width:12.18051815;stroke-linecap:butt;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" - sodipodi:type="arc" - sodipodi:start="0.23191105" - sodipodi:end="4.712389" - sodipodi:open="true" - inkscape:export-filename="/home/hbons/Moblin/git/carrick-ng/data/icons/network-connecting.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" /> - </g> - <use - x="0" - y="0" - xlink:href="#g10450-5-3" - id="use13294" - transform="matrix(0.70710678,0.70710679,-0.70710679,0.70710678,35.986458,-4.9737924)" - width="96" - height="48" /> - <use - x="0" - y="0" - xlink:href="#use13294" - id="use13314" - transform="matrix(0.70710678,0.70710679,-0.70710679,0.70710678,43.036943,-21.933639)" - width="96" - height="48" /> - <use - x="0" - y="0" - xlink:href="#use13314" - id="use13334" - transform="matrix(0.70710678,0.70710679,-0.70710679,0.70710678,50.085328,-38.904987)" - width="96" - height="48" /> - <use - x="0" - y="0" - xlink:href="#use13334" - id="use13354" - transform="matrix(0.70710678,0.70710679,-0.70710679,0.70710678,-38.894841,-31.888724)" - width="96" - height="48" /> - <use - x="0" - y="0" - xlink:href="#use13354" - id="use13374" - transform="matrix(0.70710678,0.70710679,-0.70710679,0.70710678,52.971072,2.0670843)" - width="96" - height="48" /> - <use - x="0" - y="0" - xlink:href="#use13374" - id="use13394" - transform="matrix(0.70710678,0.70710679,-0.70710679,0.70710678,60.017834,-14.929741)" - width="96" - height="48" /> - <use - x="0" - y="0" - xlink:href="#use13394" - id="use13414" - transform="matrix(0.86602541,0.50000001,-0.50000001,0.86602541,50.044124,-25.16226)" - width="96" - height="48" /> - </g> -</svg> diff --git a/gnome-shell/misc/ws-switch-arrow-down.png b/gnome-shell/misc/ws-switch-arrow-down.png Binary files differdeleted file mode 100644 index a674ad5..0000000 --- a/gnome-shell/misc/ws-switch-arrow-down.png +++ /dev/null diff --git a/gnome-shell/misc/ws-switch-arrow-up.png b/gnome-shell/misc/ws-switch-arrow-up.png Binary files differdeleted file mode 100644 index 1b6f611..0000000 --- a/gnome-shell/misc/ws-switch-arrow-up.png +++ /dev/null diff --git a/gnome-shell/parse-sass.sh b/gnome-shell/parse-sass.sh deleted file mode 100755 index 34eb227..0000000 --- a/gnome-shell/parse-sass.sh +++ /dev/null @@ -1,3 +0,0 @@ -#! /bin/bash - -bundle exec sass --update --style=nested --sourcemap=none . diff --git a/gnome-shell/switch/switch-off.svg b/gnome-shell/switch/switch-off.svg deleted file mode 100644 index 908e1af..0000000 --- a/gnome-shell/switch/switch-off.svg +++ /dev/null @@ -1,201 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="52" - height="24" - id="svg7539" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="switch-off.svg"> - <defs - id="defs7541"> - <linearGradient - id="linearGradient4695-1-4-3-5-0-6"> - <stop - id="stop4697-9-9-7-0-1-5" - style="stop-color:#000000;stop-opacity:1;" - offset="0" /> - <stop - id="stop4699-5-8-9-0-4-0" - style="stop-color:#000000;stop-opacity:0" - offset="1" /> - </linearGradient> - <linearGradient - id="linearGradient3768-6"> - <stop - style="stop-color:#0f0f0f;stop-opacity:1;" - offset="0" - id="stop3770-0" /> - <stop - id="stop3778-6" - offset="0.078125" - style="stop-color:#171717;stop-opacity:1;" /> - <stop - style="stop-color:#171717;stop-opacity:1;" - offset="0.97355771" - id="stop3774-2" /> - <stop - style="stop-color:#1b1b1b;stop-opacity:1;" - offset="1" - id="stop3776-2" /> - </linearGradient> - <linearGradient - id="linearGradient3969-0-4"> - <stop - style="stop-color:#353537;stop-opacity:1;" - offset="0" - id="stop3971-2-6" /> - <stop - style="stop-color:#4d4f52;stop-opacity:1;" - offset="1" - id="stop3973-0-1" /> - </linearGradient> - <linearGradient - id="linearGradient3938"> - <stop - id="stop3940" - offset="0" - style="stop-color:#ffffff;stop-opacity:0;" /> - <stop - id="stop3942" - offset="1" - style="stop-color:#ffffff;stop-opacity:0.54901963;" /> - </linearGradient> - <linearGradient - id="linearGradient6523"> - <stop - id="stop6525" - offset="0" - style="stop-color:#1a1a1a;stop-opacity:1;" /> - <stop - id="stop6527" - offset="1" - style="stop-color:#1a1a1a;stop-opacity:0;" /> - </linearGradient> - <linearGradient - id="linearGradient3938-6"> - <stop - id="stop3940-4" - offset="0" - style="stop-color:#bebebe;stop-opacity:1;" /> - <stop - id="stop3942-8" - offset="1" - style="stop-color:#ffffff;stop-opacity:1;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="8.2495794" - inkscape:cx="26.503493" - inkscape:cy="2.8843151" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:grid-bbox="true" - inkscape:document-units="px" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1032" - inkscape:window-x="0" - inkscape:window-y="23" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid3019" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" - originx="-4" - originy="2.6171874e-06" /> - </sodipodi:namedview> - <metadata - id="metadata7544"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - id="layer1" - inkscape:label="Layer 1" - inkscape:groupmode="layer" - transform="translate(-120,91.999997)"> - <g - transform="translate(-885,-420)" - style="display:inline;opacity:1" - id="switch" - inkscape:label="#g4820"> - <g - id="layer1-9" - inkscape:label="Layer 1" - transform="matrix(-1,0,0,1,1177,420)"> - <g - style="display:inline" - transform="translate(120,-116.99998)" - inkscape:label="Layer 1" - id="switch-active-2"> - <g - id="g3900-12" - transform="translate(0,-1004.3622)"> - <rect - style="display:inline;opacity:0;fill:#434343;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect5465-3-32" - width="52" - height="24" - x="0" - y="1029.3622" /> - <rect - style="fill:#cfd6e6;fill-opacity:1;fill-rule:nonzero;stroke:none" - id="rect2987-07" - width="50" - height="20" - x="1" - y="1031.3622" - ry="11" - rx="11" /> - <circle - style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" - id="path3759-7" - cx="41" - cy="1041.3622" - r="9" /> - </g> - </g> - </g> - <path - inkscape:connector-curvature="0" - d="m 1043.0028,337 0.75,0 c 0.01,-9e-5 0.016,-3.5e-4 0.023,0 0.1912,0.008 0.3824,0.0964 0.5156,0.23437 l 1.711,1.71094 1.7343,-1.71094 c 0.1993,-0.17287 0.335,-0.22912 0.5157,-0.23437 l 0.75,0 0,0.75 c 0,0.21485 -0.026,0.41298 -0.1875,0.5625 l -1.711,1.71093 1.6875,1.6875 c 0.1412,0.14113 0.211,0.34009 0.211,0.53907 l 0,0.75 -0.75,0 c -0.199,-10e-6 -0.398,-0.0698 -0.5391,-0.21094 l -1.7109,-1.71094 -1.711,1.71094 c -0.1411,0.14114 -0.3401,0.21094 -0.539,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.07,-0.39794 0.2109,-0.53907 l 1.7109,-1.6875 -1.7109,-1.71093 c -0.1581,-0.14598 -0.2274,-0.35194 -0.2109,-0.5625 l 0,-0.75 z" - id="path10839-9-8-2-2-5" - style="color:#bebebe;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.6;fill:#5c616c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> - </g> - </g> -</svg> diff --git a/gnome-shell/switch/switch-on.svg b/gnome-shell/switch/switch-on.svg deleted file mode 100644 index f7b1bfc..0000000 --- a/gnome-shell/switch/switch-on.svg +++ /dev/null @@ -1,220 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="52" - height="24" - id="svg7539" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="switch-on.svg"> - <defs - id="defs7541"> - <linearGradient - id="linearGradient4695-1-4-3-5-0-6"> - <stop - id="stop4697-9-9-7-0-1-5" - style="stop-color:#000000;stop-opacity:1;" - offset="0" /> - <stop - id="stop4699-5-8-9-0-4-0" - style="stop-color:#000000;stop-opacity:0" - offset="1" /> - </linearGradient> - <linearGradient - id="linearGradient3768-6"> - <stop - style="stop-color:#0f0f0f;stop-opacity:1;" - offset="0" - id="stop3770-0" /> - <stop - id="stop3778-6" - offset="0.078125" - style="stop-color:#171717;stop-opacity:1;" /> - <stop - style="stop-color:#171717;stop-opacity:1;" - offset="0.97355771" - id="stop3774-2" /> - <stop - style="stop-color:#1b1b1b;stop-opacity:1;" - offset="1" - id="stop3776-2" /> - </linearGradient> - <linearGradient - id="linearGradient3969-0-4"> - <stop - style="stop-color:#353537;stop-opacity:1;" - offset="0" - id="stop3971-2-6" /> - <stop - style="stop-color:#4d4f52;stop-opacity:1;" - offset="1" - id="stop3973-0-1" /> - </linearGradient> - <linearGradient - id="linearGradient3938"> - <stop - id="stop3940" - offset="0" - style="stop-color:#ffffff;stop-opacity:0;" /> - <stop - id="stop3942" - offset="1" - style="stop-color:#ffffff;stop-opacity:0.54901963;" /> - </linearGradient> - <linearGradient - id="linearGradient6523"> - <stop - id="stop6525" - offset="0" - style="stop-color:#1a1a1a;stop-opacity:1;" /> - <stop - id="stop6527" - offset="1" - style="stop-color:#1a1a1a;stop-opacity:0;" /> - </linearGradient> - <linearGradient - id="linearGradient3938-6"> - <stop - id="stop3940-4" - offset="0" - style="stop-color:#bebebe;stop-opacity:1;" /> - <stop - id="stop3942-8" - offset="1" - style="stop-color:#ffffff;stop-opacity:1;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="8.2495794" - inkscape:cx="26.503493" - inkscape:cy="31.976708" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:grid-bbox="true" - inkscape:document-units="px" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:window-width="1920" - inkscape:window-height="1032" - inkscape:window-x="0" - inkscape:window-y="23" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid3019" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" - originx="-4" - originy="2.6171874e-06" /> - </sodipodi:namedview> - <metadata - id="metadata7544"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - id="layer1" - inkscape:label="Layer 1" - inkscape:groupmode="layer" - transform="translate(-120,91.999997)"> - <g - transform="translate(-885,-450)" - style="display:inline;opacity:1" - id="switch-active-2" - inkscape:label="#g4829"> - <g - id="layer1-9-0" - inkscape:label="Layer 1" - transform="translate(885,450)" - style="display:inline;opacity:1"> - <g - style="display:inline" - transform="translate(120,-116.99998)" - inkscape:label="Layer 1" - id="switch-active-8"> - <g - id="g3900-1-87" - transform="translate(0,-1004.3622)"> - <rect - style="display:inline;opacity:0;fill:#434343;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect5465-3-3" - width="52" - height="24" - x="0" - y="1029.3622" /> - <rect - style="fill:#5294e2;fill-opacity:1;fill-rule:nonzero;stroke:none" - id="rect2987-0-8" - width="50" - height="20" - x="1" - y="1031.3622" - ry="11" - rx="11" /> - <circle - style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" - id="path3759-0" - cx="41" - cy="1041.3622" - r="9" /> - </g> - </g> - </g> - <g - transform="translate(-1.0003162,0)" - id="g4816"> - <rect - transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)" - ry="0.66666085" - rx="0.66666085" - y="-456.09485" - x="977.54999" - height="1.9999826" - width="5" - id="rect3977-39-2" - style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;stroke:none" /> - <rect - transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)" - ry="0" - y="-462.09485" - x="980.54999" - height="7.9999828" - width="2" - id="rect3979-7-0" - style="display:inline;opacity:1;fill:#ffffff;fill-opacity:1;stroke:none" /> - </g> - </g> - </g> -</svg> |