diff options
author | lukefromdc <[email protected]> | 2016-04-12 23:08:50 -0400 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-04-13 17:41:03 +0200 |
commit | 00b1377e81a443acc302d3ad255bea61278d3b26 (patch) | |
tree | 845b4d50a707fcf9c28ae8e0194f71c542ac4365 | |
parent | 81bfd0a184e53814ea5dcace07c338b7941feaff (diff) | |
download | mate-themes-00b1377e81a443acc302d3ad255bea61278d3b26.tar.bz2 mate-themes-00b1377e81a443acc302d3ad255bea61278d3b26.tar.xz |
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.
-rw-r--r-- | desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css | 6 |
1 files changed, 6 insertions, 0 deletions
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), |