From 3d9c5edb5a9a44bf0f38009d07193e77367c1594 Mon Sep 17 00:00:00 2001 From: lukefromdc Date: Tue, 12 Apr 2016 23:08:50 -0400 Subject: BlackMATE: Correct bg of active treeview cells BlackMATE, GTK 3.20: keep active .view color off of treeview cells. Otherwise checkboxes and radio buttons (cells with certain images) can get a square around them with a mismatched background when used in a treeview and matching :active. This affected the mate-volume-control system sound dialog and could also be seen in GTK3-demo. --- desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css b/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css index 5d4a6133..6e502343 100644 --- a/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css @@ -1191,6 +1191,12 @@ row { border-width: 0px; } +/*keep active .view color off of treeview cells using an image */ +.view.cell:selected, +.view.cell:active{ + background-color:transparent; +} + .view .progressbar { background-image: linear-gradient(-45deg, alpha(@progressbar_pattern, 0.09), -- cgit v1.2.1