From f9ad051367a427b607b6490e2d34287534529593 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20K=C3=BCmmerlin?= Date: Wed, 24 Jan 2018 22:07:36 +0100 Subject: [PATCH] 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 2bb18b04..db71e0df 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 b4c3de10..63302e7c 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%); } + } +}