Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Schampijer <simon@laptop.org>2012-08-29 09:40:59 (GMT)
committer Simon Schampijer <simon@laptop.org>2012-08-29 11:42:39 (GMT)
commit3b4b687013cfd8a77774cc6cb19c86107c8ffee6 (patch)
tree78802bffb396267a6de35057c141d72373d90b07
parent9aea13169b998785960d99c0264b1b032b1ae2ce (diff)
GtkLabel: make the background transparent
The GtkLabel does respect background css properties now [1][2]. Drawing them transparent by default gives us the same behavior us before. Signed-off-by: Simon Schampijer <simon@laptop.org> Acked-by: Manuel QuiƱones <manuq@laptop.org> [1] http://git.gnome.org/browse/gtk+/commit/?id=03bf85ba07f455a92283a3030fb8441b776b7e38 [2] https://bugzilla.gnome.org/show_bug.cgi?id=670743
-rw-r--r--gtk3/theme/gtk-widgets.css.em4
1 files changed, 4 insertions, 0 deletions
diff --git a/gtk3/theme/gtk-widgets.css.em b/gtk3/theme/gtk-widgets.css.em
index 5549970..96aa3fa 100644
--- a/gtk3/theme/gtk-widgets.css.em
+++ b/gtk3/theme/gtk-widgets.css.em
@@ -138,6 +138,10 @@ icon_large = icon_base * 5
color: @black;
}
+GtkLabel, GtkLabel:insensitive {
+ background-color: transparent;
+}
+
/* Handle this differently? */
.window *:insensitive {
background-color: @panel_grey;