From cd2d3bef85357e08856140bf475e040dfb7f1d02 Mon Sep 17 00:00:00 2001 From: Alx Sa Date: Sat, 23 Nov 2024 15:13:53 +0000 Subject: [PATCH] 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. --- themes/Default/common.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/themes/Default/common.css b/themes/Default/common.css index 345af4d95f..af3d7b2c72 100644 --- a/themes/Default/common.css +++ b/themes/Default/common.css @@ -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; }