diff options
author | Horst3180 | 2015-06-12 22:28:24 +0200 |
---|---|---|
committer | Horst3180 | 2015-06-12 22:28:24 +0200 |
commit | 99707d58312f35c062d7d9e8723ca28cb97b561d (patch) | |
tree | 126ba980ebaf49bddb3f248f168fcc6bd879077f /common/gnome-shell/3.16/_common.scss | |
parent | 74f43abb7951ec1ec60aad45f0a720afed128053 (diff) | |
download | solarc-theme-99707d58312f35c062d7d9e8723ca28cb97b561d.tar.gz solarc-theme-99707d58312f35c062d7d9e8723ca28cb97b561d.tar.xz solarc-theme-99707d58312f35c062d7d9e8723ca28cb97b561d.zip |
fix a gnome-shell crash
Diffstat (limited to 'common/gnome-shell/3.16/_common.scss')
-rw-r--r-- | common/gnome-shell/3.16/_common.scss | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/common/gnome-shell/3.16/_common.scss b/common/gnome-shell/3.16/_common.scss index 08a711c..9b17c8d 100644 --- a/common/gnome-shell/3.16/_common.scss +++ b/common/gnome-shell/3.16/_common.scss @@ -1130,11 +1130,22 @@ StScrollBar { } .message { - @include button(normal); padding: 4px; + color: $fg_color; + background-color: $button_bg; + border: 1px solid $button_border; + + &:hover, &:focus { + color: $fg_color; + background-color: $button_bg; + border: 1px solid $selected_bg_color; + } - &:hover, &:focus { @include button(hover); } - &:active { @include button(active); } + &:active { + color: $selected_fg_color; + background-color: $selected_bg_color; + border: 1px solid $selected_bg_color; + } } .message-icon-bin { |