From: Paweł Forysiuk Date: Sun, 12 Aug 2012 14:32:41 +0000 (+0200) Subject: Workaround grey background on inactive buttons with GTK+3 X-Git-Url: https://spindle.queued.net/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6f3eb6fd62a1ab4c4a1c5f9ddf961b9459e49188;p=midori Workaround grey background on inactive buttons with GTK+3 --- diff --git a/data/gtk3.css b/data/gtk3.css index 2a6d8f44..17b3975c 100644 --- a/data/gtk3.css +++ b/data/gtk3.css @@ -19,3 +19,7 @@ GtkOverlay MidoriFindbar { border-width: 0 0 1px 1px; /* top right bottom left */ } +/* Kill grey backround on inactive buttons */ +.button :insensitive { + background-color: @theme_base_color; +}