about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorJosh Rickmar <jrick@devio.us>2012-07-17 12:06:16 -0400
committerJosh Rickmar <jrick@devio.us>2012-07-17 12:06:16 -0400
commit66b82fd8d1294fa8cedc75c2e56bb27b7fb24203 (patch)
tree35da1e674e03eb6d4fee52a3d6c5d3886e43debd
parentae6bacac46deba4fdcad6a933c0890b680970c9b (diff)
downloadxombrero-66b82fd8d1294fa8cedc75c2e56bb27b7fb24203.tar.gz
This CSS needed to be more specific, or else the color names were not
being respected for the statusbar eventbox and the statusbar was not
being colored properly.
-rw-r--r--xombrero.css12
1 files changed, 8 insertions, 4 deletions
diff --git a/xombrero.css b/xombrero.css
index fb4ea54..3f587b9 100644
--- a/xombrero.css
+++ b/xombrero.css
@@ -54,22 +54,26 @@
 	background-color: rgba(0, 0, 0, 0);
 }
 
-#red {
+GtkEventBox#red,
+.entry#red {
 	background-image: none;
 	background-color: @red;
 }
 
-#yellow {
+GtkEventBox#yellow,
+.entry#yellow {
 	background-image: none;
 	background-color: @yellow;
 }
 
-#green {
+GtkEventBox#green,
+.entry#green {
 	background-image: none;
 	background-color: @green;
 }
 
-#blue {
+GtkEventBox#blue,
+.entry#blue {
 	background-image: none;
 	background-color: @blue;
 }