diff options
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 { |