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:
parent
19ab03e69f
commit
cd2d3bef85
1 changed files with 2 additions and 2 deletions
|
|
@ -565,12 +565,12 @@ menubar > menuitem:hover {
|
|||
}
|
||||
|
||||
/* Top menubar subitem style */
|
||||
menubar menu menuitem {
|
||||
menu menuitem {
|
||||
color: @fg-color;
|
||||
background-color: @bg-color;
|
||||
}
|
||||
|
||||
menubar menu menuitem:hover {
|
||||
menu menuitem:hover {
|
||||
color: @fg-color;
|
||||
background-color: @extreme-bg-color;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue