diff options
author | lukefromdc <[email protected]> | 2016-06-19 19:19:20 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2016-06-19 19:19:20 -0400 |
commit | a1c1efed4bb6a8164727ff767e59a5014133ffd5 (patch) | |
tree | 9c9929acfc0f228c4776bee69dcc9b278bbf585a /desktop-themes | |
parent | cc7c0678b4ac2be1b8162c174a6992d3177f13c6 (diff) | |
download | mate-themes-a1c1efed4bb6a8164727ff767e59a5014133ffd5.tar.bz2 mate-themes-a1c1efed4bb6a8164727ff767e59a5014133ffd5.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 0941434b..ec580d46 100644 --- a/desktop-themes/BlackMATE/gtk-3.0/mate-applications.css +++ b/desktop-themes/BlackMATE/gtk-3.0/mate-applications.css @@ -243,6 +243,13 @@ padding: 0px; } +/*Keep above from removing padding from menus*/ + +.mate-panel-menu-bar menuitem, +.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; |