From: Alexander Moisseev Date: Tue, 11 Nov 2025 14:54:46 +0000 (+0300) Subject: [Minor] Restore symbol hover outside status tables X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F5741%2Fhead;p=thirdparty%2Frspamd.git [Minor] Restore symbol hover outside status tables --- 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;