[gnome-shell-extensions] classic: make notifications legible again



commit f9ad051367a427b607b6490e2d34287534529593
Author: Jonas Kümmerlin <rgcjonas gmail com>
Date:   Wed Jan 24 22:07:36 2018 +0100

    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.

 data/gnome-classic.css  | 8 ++++++++
 data/gnome-classic.scss | 9 +++++++++
 2 files changed, 17 insertions(+)
---
diff --git a/data/gnome-classic.css b/data/gnome-classic.css
index 2bb18b0..db71e0d 100644
--- a/data/gnome-classic.css
+++ b/data/gnome-classic.css
@@ -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; }
diff --git a/data/gnome-classic.scss b/data/gnome-classic.scss
index b4c3de1..63302e7 100644
--- a/data/gnome-classic.scss
+++ b/data/gnome-classic.scss
@@ -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%); }
+  }
+}


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]