From a681b52bbbd265dd63c9fd090c1c108bd64af55b Mon Sep 17 00:00:00 2001 From: raveit65 Date: Mon, 25 Dec 2017 18:44:56 +0100 Subject: 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 --- desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css | 18 +++++++++--------- 1 file 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 b574a4e5..2ae5d351 100644 --- a/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css @@ -1781,19 +1781,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!!! */ @@ -1810,18 +1806,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, -- cgit v1.2.1