aboutsummaryrefslogtreecommitdiff
path: root/common/gtk-3.0/3.20/sass
diff options
context:
space:
mode:
authorHorst31802016-03-28 12:09:09 +0200
committerHorst31802016-03-28 12:09:09 +0200
commit351060c53d01be668f84d04c7e7502bfabda1805 (patch)
tree84d8e1b1a247acfc26fa1ea4024082c7d830ce35 /common/gtk-3.0/3.20/sass
parent2b98a03751c84066b9013f57ec9630cfed30ee5f (diff)
downloadsolarc-theme-351060c53d01be668f84d04c7e7502bfabda1805.tar.gz
solarc-theme-351060c53d01be668f84d04c7e7502bfabda1805.tar.xz
solarc-theme-351060c53d01be668f84d04c7e7502bfabda1805.zip
fix menu overflow buttons
Diffstat (limited to 'common/gtk-3.0/3.20/sass')
-rw-r--r--common/gtk-3.0/3.20/sass/_common.scss16
1 files changed, 10 insertions, 6 deletions
diff --git a/common/gtk-3.0/3.20/sass/_common.scss b/common/gtk-3.0/3.20/sass/_common.scss
index 51ee0a7..c20e169 100644
--- a/common/gtk-3.0/3.20/sass/_common.scss
+++ b/common/gtk-3.0/3.20/sass/_common.scss
@@ -1613,20 +1613,24 @@ menu,
}
}
}
- arrow { // overflow buttons
- @extend %undecorated_button;
- border-style: none;
- border-radius: 0;
+ // overflow buttons
+ > arrow {
+ @include button(undecorated);
min-width: 16px;
min-height: 16px;
+ padding: 4px;
+ background-color: $_menu_bg;
+ border-radius: 0;
&.top {
- -gtk-icon-source: -gtk-icontheme('pan-up-symbolic');
+ margin-top: -6px;
border-bottom: 1px solid mix($fg_color, $base_color, 10%);
+ -gtk-icon-source: -gtk-icontheme('pan-up-symbolic');
}
&.bottom {
- -gtk-icon-source: -gtk-icontheme('pan-down-symbolic');
+ margin-bottom: -6px;
border-top: 1px solid mix($fg_color, $base_color, 10%);
+ -gtk-icon-source: -gtk-icontheme('pan-down-symbolic');
}
&:hover { background-color: mix($fg_color, $base_color, 10%); }
&:disabled {