diff options
author | lukefromdc <[email protected]> | 2016-04-12 23:08:50 -0400 |
---|---|---|
committer | lukefromdc <[email protected]> | 2016-04-12 23:08:50 -0400 |
commit | 3d9c5edb5a9a44bf0f38009d07193e77367c1594 (patch) | |
tree | 0e95df2cd2f8ce516f4f6b345ed7e40f97f1b6ab | |
parent | 2a7db1b58f7b4b2667eca62b08ff9a345bcd9574 (diff) | |
download | mate-themes-3d9c5edb5a9a44bf0f38009d07193e77367c1594.tar.bz2 mate-themes-3d9c5edb5a9a44bf0f38009d07193e77367c1594.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), |