summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlukefromdc <[email protected]>2016-03-04 14:20:27 -0500
committerlukefromdc <[email protected]>2016-03-04 14:20:27 -0500
commitcdb2a5e4b879935fcd5e73db7d444754d93707d4 (patch)
tree8d0ca625a29622cce2ae83a809fb968689482511
parent23fd760563237748546ba05df9499cb8ad44ad7f (diff)
downloadmate-themes-cdb2a5e4b879935fcd5e73db7d444754d93707d4.tar.bz2
mate-themes-cdb2a5e4b879935fcd5e73db7d444754d93707d4.tar.xz
Fix wrong orientation scrollbar buttons
Code cut and pasted from green-submarine, it works.
-rw-r--r--desktop-themes/BlackMATE/gtk-3.0/gtk-widgets-assets-dark.css24
1 files changed, 12 insertions, 12 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 b97eccd6..701681d2 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
@@ -434,22 +434,22 @@ notebook tab.right:checked {
/*********************
* 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.up {
+ -gtk-icon-source: -gtk-icontheme("pan-up-symbolic");
+ -gtk-icon-effect: highlight;
}
-scrollbar.vertical button:last-child {
- -gtk-icon-source: -gtk-scaled(url("assets/scrollbar-arrow-down.svg"));
+scrollbar.vertical button.down {
+ -gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
+ -gtk-icon-effect: highlight;
}
-scrollbar.horizontal button:first-child {
- -gtk-icon-source: -gtk-scaled(url("assets/scrollbar-arrow-left.svg"));
+scrollbar.horizontal button.up {
+ -gtk-icon-source: -gtk-icontheme("pan-start-symbolic");
+ -gtk-icon-effect: highlight;
}
-scrollbar.horizontal button:last-child {
- -gtk-icon-source: -gtk-scaled(url("assets/scrollbar-arrow-right.svg"));
+scrollbar.horizontal button.down {
+ -gtk-icon-source: -gtk-icontheme("pan-end-symbolic");
+ -gtk-icon-effect: highlight;
}
-*/