35 lines
1.0 KiB
Diff
35 lines
1.0 KiB
Diff
From babe8815e035e3cfe99b67e4d450676e43db7353 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.scss | 8 +++-----
|
|
1 file changed, 3 insertions(+), 5 deletions(-)
|
|
|
|
diff --git a/data/gnome-classic.scss b/data/gnome-classic.scss
|
|
index 9e23506..e8f4803 100644
|
|
--- a/data/gnome-classic.scss
|
|
+++ b/data/gnome-classic.scss
|
|
@@ -19,11 +19,9 @@ $variant: 'light';
|
|
border-bottom: 1px solid #666;
|
|
app-icon-bottom-clip: 0px;
|
|
&:overview {
|
|
- background-color: #000;
|
|
- background-gradient-end: #000;
|
|
- border-top-color: #000;
|
|
- border-bottom: 1px solid #000;
|
|
- .panel-button { color: #fff; }
|
|
+ background-color: darken($bg_color,5%);
|
|
+ background-gradient-end: darken($bg_color,10%);
|
|
+ .panel-button { color: darken($fg_color,5%); }
|
|
}
|
|
|
|
.panel-button {
|
|
--
|
|
2.21.0
|
|
|