summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCosimo Cecchi <cosimoc@gnome.org>2013-04-15 18:25:20 -0400
committerCosimo Cecchi <cosimoc@gnome.org>2013-04-15 18:37:26 -0400
commit88305ef4e222ec3ffe8bf97eda66f5ce8417412c (patch)
tree773f9fe4c672528489de76c0f8f06524408930a8
parent2d5b6b9d983b66200229f19b4ba2cb5d2b46b56b (diff)
downloadgnome-themes-standard-88305ef4e222ec3ffe8bf97eda66f5ce8417412c.tar.gz
gtk3: add a workaround for Evolution's GtkHTML backdrop style
GtkHTML was ported from GtkStyle to GtkStyleContext, but its code still manually fetches colors from GTK_STATE_FLAG_ACTIVE to signify selected+backdrop text. Add a workaround for this case.
-rw-r--r--themes/Adwaita/gtk-3.0/gtk-widgets.css4
1 files changed, 3 insertions, 1 deletions
diff --git a/themes/Adwaita/gtk-3.0/gtk-widgets.css b/themes/Adwaita/gtk-3.0/gtk-widgets.css
index 7e8b35e9..2463e915 100644
--- a/themes/Adwaita/gtk-3.0/gtk-widgets.css
+++ b/themes/Adwaita/gtk-3.0/gtk-widgets.css
@@ -502,7 +502,9 @@ GtkTreeView.separator:backdrop,
background-color: @theme_unfocused_selected_bg_color
}
-/* needed for webkit/GtkStyle compatibility */
+/* needed for webkit/GtkStyle/Evolution compatibility */
+GtkHTML:active,
+GtkHTML:active:backdrop,
.entry:active,
.entry:active:backdrop {
color: @theme_unfocused_selected_fg_color;