themes: Define top menubar menu backgrounds

Previously, the "menuitem menuitem" style was cascading down
to the top menubar's subitems. This patch explicitly defines the
CSS to match the 2.10 style and prevent cascading.
This commit is contained in:
Alx Sa 2024-09-01 11:59:57 +00:00
parent 1c8a3f36bb
commit 9b917b8dfb
1 changed files with 12 additions and 1 deletions

View File

@ -550,7 +550,18 @@ menuitem menuitem {
/* A top (File, Edit) menubar item when its menu is expanded. */
menubar > menuitem:hover {
color: @fg-color;
background: @extreme-selected-color;
background: @extreme-bg-color;
}
/* Top menubar subitem style */
menubar menu menuitem {
color: @fg-color;
background-color: @bg-color;
}
menubar menu menuitem:hover {
color: @fg-color;
background-color: @extreme-bg-color;
}
menuitem *:hover {