diff options
author | lukefromdc <[email protected]> | 2016-06-19 19:21:41 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2016-06-19 19:21:41 -0400 |
commit | 5d61478cadccd45f29b439ab658b1776128441c0 (patch) | |
tree | 21f739a6f151be78be6ac07a97e383ef06895bcf /desktop-themes | |
parent | c90578d83fe2d5a0567830e5363db7a016ed8aa6 (diff) | |
download | mate-themes-5d61478cadccd45f29b439ab658b1776128441c0.tar.bz2 mate-themes-5d61478cadccd45f29b439ab658b1776128441c0.tar.xz |
BlackMATE GTK3: fix panel right-click menu size
Fix tiny right-click menus on some panel applets on GTK3 panels. Note that this problem came from an earlier fix for panels being spaced 1px away from the edge of the screen, which resulted from a theme default padding of 1px, most themes default to 0px and expand from there
Diffstat (limited to 'desktop-themes')
-rw-r--r-- | desktop-themes/BlackMATE/gtk-3.0/mate-applications.css | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/desktop-themes/BlackMATE/gtk-3.0/mate-applications.css b/desktop-themes/BlackMATE/gtk-3.0/mate-applications.css index 4fa7a16a..7365ff46 100644 --- a/desktop-themes/BlackMATE/gtk-3.0/mate-applications.css +++ b/desktop-themes/BlackMATE/gtk-3.0/mate-applications.css @@ -345,6 +345,13 @@ PanelToplevel.background.horizontal { padding: 0px; } +/*Keep above from removing padding from menus*/ + +.mate-panel-menu-bar GtkMenuItem, +.mate-panel-menu-bar .menuitem{ + padding: 3px 7px; +} + /* workaround to avoid unwanted black frames if switching compositor on/off */ .mate-panel-menu-bar .window-frame.csd.popup { box-shadow: none; |