themes: Fix menu style on context menus

In 9b917b8d, we defined the background and hover style
for the top menubar context menus. However, this did not
carry over to the menus for the on-canvas context menu.
This patch generalizes the CSS style so it affects both.
This commit is contained in:
Alx Sa 2024-11-23 15:13:53 +00:00
parent 19ab03e69f
commit cd2d3bef85

View file

@ -565,12 +565,12 @@ menubar > menuitem:hover {
} }
/* Top menubar subitem style */ /* Top menubar subitem style */
menubar menu menuitem { menu menuitem {
color: @fg-color; color: @fg-color;
background-color: @bg-color; background-color: @bg-color;
} }
menubar menu menuitem:hover { menu menuitem:hover {
color: @fg-color; color: @fg-color;
background-color: @extreme-bg-color; background-color: @extreme-bg-color;
} }