diff options
author | raveit65 <[email protected]> | 2015-10-12 20:50:05 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2015-10-12 20:50:53 +0200 |
commit | c299c3798f9d5be072103106119adbdd76ef4a2b (patch) | |
tree | 29cf1da5511085eb1751ff4c5015b366bc6957aa /desktop-themes/Green-Submarine | |
parent | 5809bb26214da9c867f72aab8661ef1817a5061c (diff) | |
download | mate-themes-c299c3798f9d5be072103106119adbdd76ef4a2b.tar.bz2 mate-themes-c299c3798f9d5be072103106119adbdd76ef4a2b.tar.xz |
GTK3 Submarine themes: adjust GtkScale
Diffstat (limited to 'desktop-themes/Green-Submarine')
-rw-r--r-- | desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css | 26 |
1 files changed, 20 insertions, 6 deletions
diff --git a/desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css b/desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css index 3627fd91..9ed1519f 100644 --- a/desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/Green-Submarine/gtk-3.0/gtk-widgets.css @@ -606,29 +606,42 @@ GtkLevelBar.vertical { .scale.slider.fine-tune:active:hover,
.scale.slider.fine-tune.horizontal:active,
.scale.slider.fine-tune.horizontal:active:hover {
- background-size: 80%;
+ background-size: 98%;
background-repeat: no-repeat;
background-position: center;
}
.toolbar .scale.trough,
.scale.trough {
- margin: 7px 0;
+ border-radius: 8px;
+ border-style: solid;
+ border-width: 1px;
background-image: -gtk-gradient (linear,
left top,
left bottom,
from (alpha (#000, 0.20)),
color-stop (0.20, alpha (#000, 0.16)),
to (alpha (#000, 0.06)));
- border-style: none;
- border-width: 0px;
- border-radius: 8px;
box-shadow: inset 1px 1px alpha(#000, 0.08),
inset -1px -1px alpha(#000, 0.08);
}
+.scale.trough {
+ margin: 6px 0;
+}
+
+.scale.trough.vertical {
+ margin: 0 6px;
+}
+
+.scale.trough,
.scale.trough.vertical {
- margin: 0 7px;
+ border-color: @scale_border_b;
+}
+
+.scale.trough.highlight,
+.scale.trough.highlight.vertical {
+ border-style: none;
}
.scale.trough,
@@ -647,6 +660,7 @@ GtkLevelBar.vertical { left bottom,
from (alpha (#000, 0.03)),
to (alpha (#000, 0.03)));
+ border-style: none;
}
.scale.progressbar {
|