diff options
author | raveit65 <[email protected]> | 2017-12-25 18:44:56 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2017-12-25 18:59:58 +0100 |
commit | 4d493750d5f97fa239b87f38a6f7bd80dd879666 (patch) | |
tree | 53af4972067f6d04d14932a171a25757ad1192a0 | |
parent | 4d887eec1a3b08037d5042692dd754dd2c92b334 (diff) | |
download | mate-themes-4d493750d5f97fa239b87f38a6f7bd80dd879666.tar.bz2 mate-themes-4d493750d5f97fa239b87f38a6f7bd80dd879666.tar.xz |
BlackMATE: write the border on scrollbar trough
This is better that writing the border on scrollbar itself.
Otherwise the scrollbar isn't clickable at window edge for
maximised windows.
Partially fix for
https://github.com/mate-desktop/mate-desktop/issues/291
-rw-r--r-- | desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css b/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css index 23852930..65a9eb06 100644 --- a/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css @@ -1756,19 +1756,15 @@ linkbutton button:active:hover { scrollbar { background-image: none; background-color: @less_dark_color; - border-style: solid; + border-style: none; } scrollbar.vertical { - border-style: solid; - border-width: 0px 0px 0px 1px; - border-color: shade (@theme_bg_color, 0.94); + border-style: none; } scrollbar.horizontal { - border-style: solid; - border-width: 1px 0px 0px 0px; - border-color: shade (@theme_bg_color, 0.94); + border-style: none; } scrollbar junction { /* the small square between scrollbars!!! */ @@ -1785,18 +1781,22 @@ scrollbar.vertical trough { background-image: linear-gradient(to right, @scrollbar_trough, shade (@scrollbar_trough, 1.08)); - border-style: none; + border-style: solid; border-radius: 0; border-image: none; + border-width: 0px 0px 0px 1px; + border-color: shade (@theme_bg_color, 0.94); } scrollbar.horizontal trough { background-image: linear-gradient(to bottom, @scrollbar_trough, shade (@scrollbar_trough, 1.08)); - border-style: none; + border-style: solid; border-radius: 0; border-image: none; + border-width: 1px 0px 0px 0px; + border-color: shade (@theme_bg_color, 0.94); } scrollbar button, |