From 69635625ad995267343e10973fa05cdb2ae240c2 Mon Sep 17 00:00:00 2001 From: Alexander Moisseev Date: Tue, 11 Nov 2025 17:54:46 +0300 Subject: [PATCH] [Minor] Restore symbol hover outside status tables --- interface/css/rspamd.css | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/interface/css/rspamd.css b/interface/css/rspamd.css index 367b96066c..662f39ec9b 100644 --- a/interface/css/rspamd.css +++ b/interface/css/rspamd.css @@ -346,16 +346,24 @@ table#symbolsTable input[type="number"] { .symbol-special { background-color: var(--rspamd-symbol-special-bg); } -.parent:not(.status-table) .symbol-negative:hover { +.symbol-negative:hover { background-color: var(--rspamd-symbol-hover-bg); } -.parent:not(.status-table) .symbol-positive:hover { +.symbol-positive:hover { background-color: var(--rspamd-symbol-hover-bg); } .symbol-special:hover { background-color: var(--rspamd-symbol-hover-bg); } +/* Disable individual cell hover in status tables - use table-hover-cell instead */ +.status-table tbody .symbol-negative:hover { + background-color: var(--rspamd-symbol-negative-bg); +} +.status-table tbody .symbol-positive:hover { + background-color: var(--rspamd-symbol-positive-bg); +} + /* For symbol description display on hover/focus */ .symbol-default.has-description:not(:focus) strong { text-decoration: underline dotted; -- 2.47.3