diff options
author | Wolfgang Ulbrich <[email protected]> | 2016-02-05 22:01:49 +0100 |
---|---|---|
committer | Wolfgang Ulbrich <[email protected]> | 2016-02-05 22:01:49 +0100 |
commit | 5f5b9e32f00bdbb11dbea4df0a9c22ca42927eaf (patch) | |
tree | 5f98b2d85332ff86ec102e4423b8dc7e7870bb1a | |
parent | 5cdf6e536857f3d05d9d298a6d06db281c008146 (diff) | |
download | mate-themes-5f5b9e32f00bdbb11dbea4df0a9c22ca42927eaf.tar.bz2 mate-themes-5f5b9e32f00bdbb11dbea4df0a9c22ca42927eaf.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, |