From ae65a82fdd5ea25742aebe126ddc70e9b7f396f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Wed, 17 Jan 2018 18:26:51 +0100 Subject: [PATCH] classic: Fix "Clear All" button readability Most buttons appear in modal dialogs which keep their normal appearance in the classic theme, except for the calendar's "Clear All" which needs a dark text color to be readable on the light background. https://gitlab.gnome.org/GNOME/gnome-shell-extensions/issues/26 --- data/gnome-classic.css | 3 +++ data/gnome-classic.scss | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/data/gnome-classic.css b/data/gnome-classic.css index 086fa125..2bb18b04 100644 --- a/data/gnome-classic.css +++ b/data/gnome-classic.css @@ -1955,3 +1955,6 @@ StScrollBar { .calendar-day-with-events { background-image: url("calendar-today.svg"); } + +.message-list-clear-button.button { + color: #2e3436; } diff --git a/data/gnome-classic.scss b/data/gnome-classic.scss index 274a3f8b..b4c3de10 100644 --- a/data/gnome-classic.scss +++ b/data/gnome-classic.scss @@ -86,3 +86,7 @@ $variant: 'light'; .calendar-day-with-events { background-image: url("calendar-today.svg"); } + +.message-list-clear-button.button { + color: $fg_color +}