summaryrefslogtreecommitdiffstats
path: root/control-center.css
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2013-12-04 15:36:55 +0100
committerThierry Vignaud <thierry.vignaud@gmail.com>2015-12-20 10:25:03 +0100
commit3b6d208d5d4b9bcfc60192f6d00918e921839a6a (patch)
tree91abb1839b073665ba0c16d61bb6f92f5706150c /control-center.css
parent11fdd1884b3e64d941be8fc617262b33ef0855e1 (diff)
downloadcontrol-center-3b6d208d5d4b9bcfc60192f6d00918e921839a6a.tar
control-center-3b6d208d5d4b9bcfc60192f6d00918e921839a6a.tar.gz
control-center-3b6d208d5d4b9bcfc60192f6d00918e921839a6a.tar.bz2
control-center-3b6d208d5d4b9bcfc60192f6d00918e921839a6a.tar.xz
control-center-3b6d208d5d4b9bcfc60192f6d00918e921839a6a.zip
fix invisible text under the cursor
with theme-galaxy.css, text was rendered white on gray we need to prevent the default rule to be applied (which is useless for us anyway) since it's loaded after our own rules (gtknew('MDV_Notebook') => import_style_ressources()) and set our own colors for normal & hover states
Diffstat (limited to 'control-center.css')
-rw-r--r--control-center.css7
1 files changed, 7 insertions, 0 deletions
diff --git a/control-center.css b/control-center.css
index e5ddf143..6ea3c0ad 100644
--- a/control-center.css
+++ b/control-center.css
@@ -32,3 +32,10 @@ GtkTextView, focus * {
-GtkTreeView-focus-line-width: 0;
}
+#StepsLabel {
+ color: #FFFFFF
+}
+
+#StepsLabel:hover {
+ color: #000000;
+}