diff options
author | lukefromdc <[email protected]> | 2016-03-01 15:08:19 -0500 |
---|---|---|
committer | lukefromdc <[email protected]> | 2016-03-01 15:08:19 -0500 |
commit | d9cc2d3c3b1c60b25087b941966ed87f7476d202 (patch) | |
tree | 43722a32bce31d56fd162b22941809448bbe5228 | |
parent | ce646836918d5f81423af2fdb03b99a85eedc772 (diff) | |
download | mate-themes-d9cc2d3c3b1c60b25087b941966ed87f7476d202.tar.bz2 mate-themes-d9cc2d3c3b1c60b25087b941966ed87f7476d202.tar.xz |
Clean up scale sliders inside notebooks
-rw-r--r-- | desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css | 31 |
1 files changed, 17 insertions, 14 deletions
diff --git a/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css b/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css index b3adc49e..46df0c66 100644 --- a/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css @@ -949,7 +949,8 @@ notebook scale.horizontal trough { @less_dark_color); border-width: 0px; border-radius: 2px; - margin: 8px 0; + margin-left: 8px; + margin-right: 8px; } notebook scale.vertical trough { @@ -960,10 +961,12 @@ notebook scale.vertical trough { shade(@less_dark_color, 1.7)65%, @less_dark_color 65%, @less_dark_color); - margin: 0 8px; + border-width: 0px; + margin-top: 8px; + margin-bottom: 8px; } -notebook scale.horizontal trough { +notebook.horizontal scale trough:disabled { background-image: linear-gradient(to bottom, @less_dark_color, @less_dark_color 35%, @@ -971,10 +974,10 @@ notebook scale.horizontal trough { shade(@less_dark_color, 1.4)65%, @less_dark_color 65%, @less_dark_color); - border-width: 0px; + } -notebook scale trough.vertical:disabled { +notebook.vertical scale trough:disabled { background-image: linear-gradient(to right, @less_dark_color, @less_dark_color 35%, @@ -984,7 +987,7 @@ notebook scale trough.vertical:disabled { @less_dark_color); } -notebook progressbar.trough { +notebook progressbar trough { background-image: linear-gradient(to bottom, shade(@less_dark_color, 0.4), @less_dark_color 50%, @@ -1296,12 +1299,12 @@ scale.vertical mark indicator { scale highlight, scale:hover highlight{ background-image: linear-gradient(to bottom, - @theme_bg_color, - @theme_bg_color 35%, + transparent, + transparent 35%, @link_color 35%, @link_color 65%, - @theme_bg_color 65%, - @theme_bg_color); + transparent 65%, + transparent); border-color: @progressbar_border; background-color: transparent; } @@ -1309,12 +1312,12 @@ scale:hover highlight{ scale.vertical highlight, scale.vertical:hover highlight{ background-image: linear-gradient(to right, - @theme_bg_color, - @theme_bg_color 35%, + transparent, + transparent 35%, @link_color 35%, @link_color 65%, - @theme_bg_color 65%, - @theme_bg_color); + transparent 65%, + transparent); border-color: @progressbar_border; background-color: transparent; } |