From 116a8034ebe0b2843ab88099d2388130e269f9ca Mon Sep 17 00:00:00 2001 From: Satyajit Sahoo Date: Mon, 1 Jul 2013 01:15:03 +0530 Subject: [PATCH] Inherit colors from parent, fixes overlay-scrollbar bug --- gtk-3.0/gtk-widgets.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/gtk-3.0/gtk-widgets.css b/gtk-3.0/gtk-widgets.css index afda929..ec51274 100644 --- a/gtk-3.0/gtk-widgets.css +++ b/gtk-3.0/gtk-widgets.css @@ -73,6 +73,13 @@ GtkClutterOffscreen { color: @theme_fg_color; } + +* { + /* inherit colors from parent */ + color: inherit; + background-color: inherit; +} + *:selected, *:selected:focus { background-color: @theme_selected_bg_color;