diff options
author | Horst3180 | 2015-08-24 14:11:29 +0200 |
---|---|---|
committer | Horst3180 | 2015-08-24 14:11:29 +0200 |
commit | 6258307032baae39d643214eccb52571f300de01 (patch) | |
tree | c7e66018a4005838f36b84caa34d3e3157402767 /common/gnome-shell/3.16/sass | |
parent | 776b2c1ce55c0a865c6abf2cd12464301776f680 (diff) | |
download | solarc-theme-6258307032baae39d643214eccb52571f300de01.tar.gz solarc-theme-6258307032baae39d643214eccb52571f300de01.tar.xz solarc-theme-6258307032baae39d643214eccb52571f300de01.zip |
gnome-shell: make notification banners light
Diffstat (limited to 'common/gnome-shell/3.16/sass')
-rw-r--r-- | common/gnome-shell/3.16/sass/_common.scss | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/common/gnome-shell/3.16/sass/_common.scss b/common/gnome-shell/3.16/sass/_common.scss index 3ecc391..a8c8e00 100644 --- a/common/gnome-shell/3.16/sass/_common.scss +++ b/common/gnome-shell/3.16/sass/_common.scss @@ -53,6 +53,10 @@ stage { transition-duration: 0; border-radius: 2px; + @extend %button; +} + +%button { @include button(normal); &:focus { @include button(focus); } @@ -1736,10 +1740,10 @@ StScrollBar { width: 34em; margin: 5px; padding: 10px; - color: $osd_fg_color; + color: $fg_color; background-color: transparent; border: 1px solid transparent; - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; + border-image: url("#{$asset_path}/menu/menu.svg") 9 9 9 9; .notification-icon { padding: 5px; } @@ -1754,7 +1758,7 @@ StScrollBar { } .notification-button { padding: 4px 4px 5px; - @extend %osd_button; + @extend %button; &:first-child, &:last-child { border-radius: 2px; } } @@ -1765,7 +1769,7 @@ StScrollBar { // Chat Bubbles .chat-body { spacing: 5px; } .chat-response { margin: 5px; } -.chat-log-message { color: $osd_fg_color; } +.chat-log-message { color: $fg_color; } .chat-new-group { padding-top: 1em; } .chat-received { padding-left: 4px; @@ -1774,9 +1778,9 @@ StScrollBar { } StEntry.chat-response { - @include entry(osd); + @include entry(normal); - &:focus { @include entry(osd-focus); } + &:focus { @include entry(focus); } } .chat-sent { @@ -1790,7 +1794,7 @@ StEntry.chat-response { padding-left: 4px; font-size: 9pt; font-weight: bold; - color: transparentize($osd_fg_color, 0.4); + color: transparentize($fg_color, 0.4); &:rtl { padding-left: 0; padding-right: 4px; } } @@ -1805,7 +1809,7 @@ StEntry.chat-response { .hotplug-notification-item { padding: 2px 10px; - @extend %osd_button; + @extend %button; &:focus { padding: 2px 10px; } } |