From 6f3eb6fd62a1ab4c4a1c5f9ddf961b9459e49188 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Forysiuk?= Date: Sun, 12 Aug 2012 16:32:41 +0200 Subject: [PATCH] Workaround grey background on inactive buttons with GTK+3 --- data/gtk3.css | 4 ++++ 1 file changed, 4 insertions(+) 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; +}