Blob Blame History Raw
From c1e6ea231d866f7e23740a5264defef13af8003a Mon Sep 17 00:00:00 2001
From: Jakub Steiner <jimmac@gmail.com>
Date: Tue, 14 Jan 2014 17:00:23 +0100
Subject: [PATCH] classic: shade panel in overview

- rather than using the top bar styling (negative space),
  base the overview panel on the classic grey and "darken"
  for overview
---
 data/gnome-classic.css | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 deletions(-)

diff --git a/data/gnome-classic.css b/data/gnome-classic.css
index d77fe30..5ff2125 100644
--- a/data/gnome-classic.css
+++ b/data/gnome-classic.css
@@ -6,7 +6,7 @@
 */
 
 #panel {
-    background-color: #e9e9e9 !important;
+    background-color: #e9e9e9;
     background-gradient-direction: vertical;
     background-gradient-end: #d0d0d0;
     border-top-color: #666; /* we don't support non-uniform border-colors and
@@ -21,10 +21,8 @@
 }
 
   #panel:overview {
-    background-color: #000 !important;
-    background-gradient-end: #000 !important;
-    border-top-color: #000;
-    border-bottom: 1px solid #000 !important;
+    background-color: #a9a9a9;
+    background-gradient-end: #797979;
 }
 
   #panel.lock-screen {
@@ -50,11 +48,15 @@
 }
 
 .panel-button {
-    color: #555 !important;
+    color: #555;
     -natural-hpadding: 6px !important;
     -minimum-hpadding: 3px !important;
   }
 
+  #panel:overview .panel-button {
+    color: #333;
+  }
+
   #panel:overview .panel-button,
   #panel.lock-screen .panel-button,
   #panel.unlock-screen .panel-button {
-- 
1.8.4.2