diff options
author | Wolfgang Ulbrich <[email protected]> | 2016-02-05 22:01:49 +0100 |
---|---|---|
committer | Wolfgang Ulbrich <[email protected]> | 2016-02-05 22:02:50 +0100 |
commit | 365ab029c0d15c01bad534eb4fd6271f2481c26b (patch) | |
tree | 3c263941a4d2ff02ffef0faec537a7dd999dc725 | |
parent | f5c8a6ff0c7021aaa3382b13d1816d243b846bca (diff) | |
download | mate-themes-365ab029c0d15c01bad534eb4fd6271f2481c26b.tar.bz2 mate-themes-365ab029c0d15c01bad534eb4fd6271f2481c26b.tar.xz |
GTK+-3.20 BlueMenta: fix jumping separator in list views + color fix
-rw-r--r-- | desktop-themes/BlueMenta/gtk-3.0/gtk-widgets.css | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/desktop-themes/BlueMenta/gtk-3.0/gtk-widgets.css b/desktop-themes/BlueMenta/gtk-3.0/gtk-widgets.css index 722e72b4..d67dd879 100644 --- a/desktop-themes/BlueMenta/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/BlueMenta/gtk-3.0/gtk-widgets.css @@ -234,7 +234,8 @@ GtkStatusbar .frame.flat .button.flat { border-radius: 0; } -treeview view separator, +treeview.view separator, +treeview.view .separator, /* why ?*/ treeview separator, separator, separator:hover, @@ -243,7 +244,12 @@ GtkTreeView.separator, .separator, .separator:hover { color: @view_separators; - background-color: transparent; + background-color: @view_separators; +} + +/*Keep treeviews from jumping, separators drawn at 0 by default until hovered*/ +treeview.view.separator { + min-height: 2px; } .toolbar separator, |