Blame SOURCES/classic-style-fixes.patch

689e29
From 145845f99ac42d0355752d60bbcf561ce31afb55 Mon Sep 17 00:00:00 2001
689e29
From: =?UTF-8?q?Florian=20M=C3=BCllner?= <fmuellner@gnome.org>
689e29
Date: Wed, 17 Jan 2018 18:26:51 +0100
689e29
Subject: [PATCH 1/3] classic: Fix "Clear All" button readability
689e29
689e29
Most buttons appear in modal dialogs which keep their normal
689e29
appearance in the classic theme, except for the calendar's
689e29
"Clear All" which needs a dark text color to be readable on
689e29
the light background.
689e29
689e29
https://gitlab.gnome.org/GNOME/gnome-shell-extensions/issues/26
689e29
---
689e29
 data/gnome-classic.css  | 3 +++
689e29
 2 files changed, 7 insertions(+)
689e29
689e29
diff --git a/data/gnome-classic.css b/data/gnome-classic.css
689e29
index 4d0d737..be332c9 100644
689e29
--- a/data/gnome-classic.css
689e29
+++ b/data/gnome-classic.css
689e29
@@ -1961,3 +1961,6 @@ StScrollBar {
689e29
 
689e29
 .calendar-day-with-events {
689e29
   background-image: url("calendar-today.svg"); }
689e29
+
689e29
+.message-list-clear-button.button {
689e29
+  color: #2e3436; }
689e29
-- 
689e29
2.14.3
689e29
689e29
689e29
From c882621cb806474c077f1511a0f0cfd87432d4c7 Mon Sep 17 00:00:00 2001
689e29
From: =?UTF-8?q?Jonas=20K=C3=BCmmerlin?= <rgcjonas@gmail.com>
689e29
Date: Wed, 24 Jan 2018 22:07:36 +0100
689e29
Subject: [PATCH 2/3] classic: make notifications legible again
689e29
689e29
https://gitlab.gnome.org/GNOME/gnome-shell-extensions/issues/41
689e29
689e29
As requested in discussion about !26, this is resolved by
689e29
switching to a light background.
689e29
---
689e29
 data/gnome-classic.css  | 8 ++++++++
689e29
 2 files changed, 17 insertions(+)
689e29
689e29
diff --git a/data/gnome-classic.css b/data/gnome-classic.css
689e29
index be332c9..6dad881 100644
689e29
--- a/data/gnome-classic.css
689e29
+++ b/data/gnome-classic.css
689e29
@@ -1964,3 +1964,11 @@ StScrollBar {
689e29
 
689e29
 .message-list-clear-button.button {
689e29
   color: #2e3436; }
689e29
+
689e29
+.notification-banner {
689e29
+  background-color: #ededed !important;
689e29
+  color: #2e3436; }
689e29
+  .notification-banner .notification-button {
689e29
+    background-color: #e0e0e0; }
689e29
+    .notification-banner .notification-button:hover, .notification-banner .notification-buttonfocus {
689e29
+      background-color: #e8e8e8; }
689e29
-- 
689e29
2.14.3
689e29
689e29
689e29
From eac93f3f081306d62d82e8d2e45f73cd38c318b1 Mon Sep 17 00:00:00 2001
689e29
From: =?UTF-8?q?Jonas=20K=C3=BCmmerlin?= <rgcjonas@gmail.com>
689e29
Date: Wed, 24 Jan 2018 22:24:06 +0100
689e29
Subject: [PATCH 3/3] classic: never show drop shadow for panel icons
689e29
689e29
https://gitlab.gnome.org/GNOME/gnome-shell-extensions/issues/39
689e29
---
689e29
 data/gnome-classic.css  | 2 ++
689e29
 2 files changed, 6 insertions(+)
689e29
689e29
diff --git a/data/gnome-classic.css b/data/gnome-classic.css
689e29
index 6dad881..93d84ba 100644
689e29
--- a/data/gnome-classic.css
689e29
+++ b/data/gnome-classic.css
689e29
@@ -1923,6 +1923,8 @@ StScrollBar {
689e29
       width: 0;
689e29
       height: 0;
689e29
       margin: 0; }
689e29
+    #panel .panel-button .system-status-icon {
689e29
+      icon-shadow: none; }
689e29
   #panel .panel-corner,
689e29
   #panel .panel-corner:active,
689e29
   #panel .panel-corner:overview,
689e29
-- 
689e29
2.14.3
689e29