-
-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Decrease icon padding size #19
Comments
I found a wee work around. If you go to Mate Tweak, and choose Netbook as the panel layout, and then go back to "Redmond" (menu at the bottom) the "Notification Area" applet now shows running apps: Not sure if this is a bug... but it's a good bug :) Still, would be nice if we can change the padding size with mate-indicator-applet |
Definitely would be useful. |
The layout change on Ubuntu Mate 18.04 does nothing, spacing is still the same on the Netbook layout. Past fixes that involved creating ~/.gtkrc-2.0 are not working either. |
@FaberfoX I use this: .mate-panel-menu-bar menuitem {
padding: 0 2px;
} |
Used |
There is the issue with zero vertical padding - tray context menus padding is affected. |
There is also an issue with padding of global menu applet, because its elements are also affected by |
One way to counter that would be to give the applet a widget name, allowing that to be explicity themed and override the more general .mate-panel-menu-bar menuitem |
@zezic I'm also a fan of global menu and have the same issue with yours. So I dive into the vala-panel-appmenu source code and found the selector they used. So here, in the custom .mate-panel-menu-bar menuitem {
padding: 2px 2px;
}
.-vala-panel-appmenu-private > menuitem {
padding: 2px 6px; /* vertical then horizontal paddings */
} You can increase the 2px vertical padding if your panel height is bigger. |
gotta do it in the theme you're currently using. |
@bechampion Thanks. I will try this out. |
Would it be possible to decrease the icon padding size on the applet?
In
/usr/lib/mate-indicator-applet/mate-indicator-applet-complete
there isGtkMenuItem::horizontal-padding = 0
, however it doesn't seem to have any effect.The text was updated successfully, but these errors were encountered: