summaryrefslogtreecommitdiff
path: root/desktop-themes
diff options
context:
space:
mode:
authorraveit65 <[email protected]>2017-12-25 18:44:56 +0100
committerraveit65 <[email protected]>2017-12-25 18:44:56 +0100
commita681b52bbbd265dd63c9fd090c1c108bd64af55b (patch)
tree9f11390168eb208f1c67d18fa1c535cedd03734d /desktop-themes
parent427d6c92739624623bb2a2598cb5881016aa0186 (diff)
downloadmate-themes-a681b52bbbd265dd63c9fd090c1c108bd64af55b.tar.bz2
mate-themes-a681b52bbbd265dd63c9fd090c1c108bd64af55b.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
Diffstat (limited to 'desktop-themes')
-rw-r--r--desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css18
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 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,