themes: Define menubar menuitem padding

Since we did not define the padding between menu items
in the menubar, some system themes caused them to
scrunch together. This patch sets the padding to match the
"default" GTK CSS to ensure there's distance between each
item in the menubar.
This commit is contained in:
Alx Sa 2025-05-22 13:54:24 +00:00
parent 06a0bafe79
commit abfd6cd6dc

View file

@ -686,6 +686,11 @@ menuitem menuitem {
background: @extreme-bg-color;
}
menubar menuitem {
min-height: 16px;
padding: 4px 8px;
}
/* A top (File, Edit) menubar item when its menu is expanded. */
menubar > menuitem:hover {
color: @fg-color;