classic: make notifications legible again

https://gitlab.gnome.org/GNOME/gnome-shell-extensions/issues/41

As requested in discussion about !26, this is resolved by
switching to a light background.
This commit is contained in:
Jonas Kümmerlin
2018-01-28 01:15:10 +01:00
parent ae65a82fdd
commit f9ad051367
2 changed files with 17 additions and 0 deletions
+8
View File
@@ -1958,3 +1958,11 @@ StScrollBar {
.message-list-clear-button.button {
color: #2e3436; }
.notification-banner {
background-color: #ededed !important;
color: #2e3436; }
.notification-banner .notification-button {
background-color: #e0e0e0; }
.notification-banner .notification-button:hover, .notification-banner .notification-buttonfocus {
background-color: #e8e8e8; }
+9
View File
@@ -90,3 +90,12 @@ $variant: 'light';
.message-list-clear-button.button {
color: $fg_color
}
.notification-banner {
background-color: $bg_color !important;
color: $fg_color;
.notification-button {
background-color: darken($bg_color,5%);
&:hover, &focus { background-color: darken($bg_color,2%); }
}
}