diff options
author | raveit65 <[email protected]> | 2017-12-25 18:44:56 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2017-12-25 19:03:17 +0100 |
commit | c40042925a7c7421781c981b9d485a35674a1023 (patch) | |
tree | 0a5eb8601df5517ecdd49026c6ae6341d434f76a | |
parent | b83c93fbcb22b8988dcd2a109354e6be7f7018e7 (diff) | |
download | mate-themes-c40042925a7c7421781c981b9d485a35674a1023.tar.bz2 mate-themes-c40042925a7c7421781c981b9d485a35674a1023.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 7d2fe5c6..92e0f82e 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, |