[gnome-shell-extensions] theme: use white labels for overview
- From: Jakub Steiner <jimmac src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell-extensions] theme: use white labels for overview
- Date: Fri, 6 Mar 2015 16:24:13 +0000 (UTC)
commit 4eceb9443fd841ccd81708431ce3aea70198cfaa
Author: Jakub Steiner <jimmac gmail com>
Date: Fri Mar 6 17:22:16 2015 +0100
theme: use white labels for overview
- restructured selectors to avoid !important
https://bugzilla.gnome.org/show_bug.cgi?id=745732
data/gnome-classic.css | 30 +++++++++++++++---------------
data/gnome-classic.scss | 37 ++++++++++++++++++++-----------------
2 files changed, 35 insertions(+), 32 deletions(-)
---
diff --git a/data/gnome-classic.css b/data/gnome-classic.css
index 7e000bc..184eee6 100644
--- a/data/gnome-classic.css
+++ b/data/gnome-classic.css
@@ -1755,6 +1755,21 @@ StScrollBar {
background-gradient-end: #000;
border-top-color: #000;
border-bottom: 1px solid #000; }
+ #panel:overview .panel-button {
+ color: #fff; }
+ #panel .panel-button {
+ color: #2e3436; }
+ #panel .panel-button:active, #panel .panel-button:overview, #panel .panel-button:focus, #panel
.panel-button:checked {
+ background-color: #4a90d9 !important;
+ color: #ffffff !important;
+ box-shadow: none; }
+ #panel .panel-button:active > .system-status-icon, #panel .panel-button:overview >
.system-status-icon, #panel .panel-button:focus > .system-status-icon, #panel .panel-button:checked >
.system-status-icon {
+ icon-shadow: none; }
+ #panel .panel-corner,
+ #panel .panel-corner:active,
+ #panel .panel-corner:overview,
+ #panel .panel-corner:focus {
+ -panel-corner-radius: 0; }
.tile-preview-left.on-primary,
.tile-preview-right.on-primary,
@@ -1762,21 +1777,6 @@ StScrollBar {
/* keep in sync with -panel-corner-radius */
border-radius: 0; }
-.panel-corner,
-.panel-corner:active,
-.panel-corner:overview,
-.panel-corner:focus {
- -panel-corner-radius: 0 !important; }
-
-.panel-button {
- color: #2e3436 !important; }
- .panel-button:active, .panel-button:overview, .panel-button:focus, .panel-button:checked {
- background-color: #4a90d9 !important;
- color: #ffffff !important;
- box-shadow: none; }
- .panel-button:active > .system-status-icon, .panel-button:overview > .system-status-icon,
.panel-button:focus > .system-status-icon, .panel-button:checked > .system-status-icon {
- icon-shadow: none; }
-
.toggle-switch-us {
background-image: url("classic-toggle-off-us.svg"); }
.toggle-switch-us:checked {
diff --git a/data/gnome-classic.scss b/data/gnome-classic.scss
index 78de820..d7d065b 100644
--- a/data/gnome-classic.scss
+++ b/data/gnome-classic.scss
@@ -22,6 +22,26 @@ $variant: 'light';
background-gradient-end: #000;
border-top-color: #000;
border-bottom: 1px solid #000;
+ .panel-button { color: #fff; }
+ }
+
+ .panel-button {
+ color: $fg_color;
+ &:active, &:overview, &:focus, &:checked {
+ // Trick due to St limitations. It needs a background to draw
+ // a box-shadow
+ background-color: $selected_bg_color !important;
+ color: $selected_fg_color !important;
+ box-shadow: none;
+ & > .system-status-icon { icon-shadow: none; }
+ }
+ }
+
+ .panel-corner,
+ .panel-corner:active,
+ .panel-corner:overview,
+ .panel-corner:focus {
+ -panel-corner-radius: 0;
}
}
@@ -32,24 +52,7 @@ $variant: 'light';
border-radius: 0;
}
-.panel-corner,
-.panel-corner:active,
-.panel-corner:overview,
-.panel-corner:focus {
- -panel-corner-radius: 0 !important;
-}
-.panel-button {
- color: $fg_color !important;
- &:active, &:overview, &:focus, &:checked {
- // Trick due to St limitations. It needs a background to draw
- // a box-shadow
- background-color: $selected_bg_color !important;
- color: $selected_fg_color !important;
- box-shadow: none;
- & > .system-status-icon { icon-shadow: none; }
- }
-}
@each $v in us, intl {
.toggle-switch-#{$v} {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]