diff options
author | raveit65 <[email protected]> | 2016-03-01 22:19:32 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-03-01 22:19:32 +0100 |
commit | aa0f308425142e9c36c2b87c97fe9934f67f4a3f (patch) | |
tree | d510fcf46afb3f598bc2cdb26bd44f9a35ea5a30 /desktop-themes | |
parent | 1976ab6aa44123440d1cce7923ac3f379309a34c (diff) | |
download | mate-themes-aa0f308425142e9c36c2b87c97fe9934f67f4a3f.tar.bz2 mate-themes-aa0f308425142e9c36c2b87c97fe9934f67f4a3f.tar.xz |
Clean up (disabled) scrollbar button logic
Thanks to raveit65 for this suggestion, it is proven to work in my own theme and will be enabled here if I can get those 4 svg files uploaded
Diffstat (limited to 'desktop-themes')
-rw-r--r-- | desktop-themes/BlackMATE/gtk-3.0/gtk-widgets-assets-dark.css | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets-assets-dark.css b/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets-assets-dark.css index 117ecd5c..196a8a02 100644 --- a/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets-assets-dark.css +++ b/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets-assets-dark.css @@ -426,3 +426,27 @@ notebook tab.left:active { notebook tab.right:active { border-image: url("assets/tab-right-active-border.svg") 3 3 3 0 / 3px 3px 3px 0px stretch; } + +/********************* + * Scrollbar buttons * + *********************/ + +/* cannot add these yet to the GIT repo, but they are needed to fix wrong arrow orientation + caused by BUG in gtk3.19 */ + +scrollbar.vertical button:first-child { + -gtk-icon-source: -gtk-scaled(url("assets/scrollbar-arrow-up.svg")); +} + +scrollbar.vertical button:last-child { + -gtk-icon-source: -gtk-scaled(url("assets/scrollbar-arrow-down.svg")); +} + +scrollbar.horizontal button:first-child { + -gtk-icon-source: -gtk-scaled(url("assets/scrollbar-arrow-left.svg")); +} + +scrollbar.horizontal button:last-child { + -gtk-icon-source: -gtk-scaled(url("assets/scrollbar-arrow-right.svg")); +} + |