diff options
Diffstat (limited to 'common/gnome-shell/3.18/sass/_common.scss')
-rw-r--r-- | common/gnome-shell/3.18/sass/_common.scss | 76 |
1 files changed, 60 insertions, 16 deletions
diff --git a/common/gnome-shell/3.18/sass/_common.scss b/common/gnome-shell/3.18/sass/_common.scss index 4a65924..057ed37 100644 --- a/common/gnome-shell/3.18/sass/_common.scss +++ b/common/gnome-shell/3.18/sass/_common.scss @@ -30,6 +30,7 @@ $font-family: Futura Bk bt, Cantarell, 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); +$_shell_fg_color: white; stage { font-family: $font-family; @@ -143,7 +144,7 @@ StScrollBar { -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; + -slider-handle-radius: 0px; height: 18px; border: 0 solid transparent; border-right-width: 1px; @@ -353,15 +354,15 @@ StScrollBar { } .modal-dialog-linked-button:last-child { - color: $selected_fg_color; + color: $destructive_fg_color; background-color: $destructive_color; &:hover { - color: $selected_fg_color; + color: $destructive_fg_color; background-color: lighten($destructive_color, 9%); } &:active { - color: $selected_fg_color; + color: $destructive_fg_color; background-color: darken($destructive_color, 5%); } } @@ -546,7 +547,37 @@ StScrollBar { } &-device-icon { icon-size: 64px; } - +} + +// +// Access Dialog +// +.access-dialog { + spacing: 30px; + + &-main-layout { + padding: 12px 20px 0; + spacing: 12px; + } + + &-content { + max-width: 28em; + spacing: 20px; + } + + &-icon { + min-width: 48px; + icon-size: 48px; + } + + &-title { + font-weight: bold; + } + + &-subtitle { + color: $fg_color; + font-weight: bold; + } } // @@ -685,7 +716,7 @@ StScrollBar { min-width: 64px; min-height: 64px; - color: $selected_fg_color; + color: $_shell_fg_color; background: none; border: none; border-radius: 5px; @@ -700,6 +731,10 @@ StScrollBar { border-radius: 2px; color: $selected_bg_color; } + .level-bar { + background-color: $selected_bg_color; + border-radius: 2px; + } } .resize-popup { @@ -731,6 +766,7 @@ StScrollBar { .item-box { padding: 8px; border-radius: 2px; + border: 1px solid transparent; &:outlined { padding: 8px; @@ -765,7 +801,7 @@ StScrollBar { color: $osd_fg_color; &:highlighted { - color: $selected_fg_color; + color: $_shell_fg_color; } } @@ -776,6 +812,11 @@ StScrollBar { } // +//Window Cycler +// +.cycler-highlight { border: 5px solid $selected_bg_color; } + +// // Workspace Switcher // .workspace-switcher { @@ -843,6 +884,8 @@ StScrollBar { // Top Bar // #panel { + $_panel_fg_color: $_shell_fg_color; + font-weight: bold; height: 2.1em; min-height: 27px; @@ -888,7 +931,7 @@ StScrollBar { -natural-hpadding: 10px; -minimum-hpadding: 6px; font-weight: bold; - color: $selected_fg_color; + color: $_panel_fg_color; transition-duration: 100ms; border-bottom-width: 1px; border-color: transparent; @@ -901,7 +944,7 @@ StScrollBar { } &:hover { - color: $selected_fg_color; + color: $_panel_fg_color; background-color: transparentize(black, 0.83); border-bottom-width: 1px; border-color: transparent; @@ -1149,7 +1192,7 @@ StScrollBar { &:hover, &:focus { background-color: transparentize(black, 0.9); } - &:active { + &:active, &:selected { color: $fg_color; background-color: transparentize(black, 0.85); border-width: 0; //avoid jumparound due to today @@ -1521,9 +1564,9 @@ StScrollBar { .list-search-result-content { spacing: 12px; padding: 12px; } -.list-search-result-title { font-size: 1.5em; color: $selected_fg_color; } +.list-search-result-title { font-size: 1.5em; color: $_shell_fg_color; } -.list-search-result-description { color: darken($selected_fg_color, 20%); } +.list-search-result-description { color: darken($_shell_fg_color, 20%); } .search-provider-icon { padding: 15px; } .search-provider-icon-more { @@ -1579,7 +1622,7 @@ StScrollBar { .dash-label { border-radius: 3px; padding: 4px 12px; - color: $selected_fg_color; + color: $_shell_fg_color; background-color: transparentize(black, 0.3); text-align: center; -x-offset: 3px; @@ -1743,7 +1786,7 @@ StScrollBar { } %icon_tile { - color: $selected_fg_color; + color: $_shell_fg_color; border-radius: 2px; padding: 6px; border: 1px solid transparent; @@ -1766,6 +1809,7 @@ StScrollBar { } &:active > .overview-icon, &:checked > .overview-icon { + color: $selected_fg_color; background-color: $selected_bg_color; box-shadow: none; } @@ -2321,7 +2365,7 @@ $legacy_icon_size: 24px; padding-right: .3em; &:hover { - color: $selected_fg_color; + color: $_shell_fg_color; text-shadow: black 0px 2px 2px; } &:selected { @@ -2368,7 +2412,7 @@ $legacy_icon_size: 24px; border: 1px solid gray; padding: 4px; border-radius: 4px; - &:hover { border: 1px solid #fdf6e3; } + &:hover { border: 1px solid #ffffff; } } #lookingGlassExtensions { padding: 4px; } |