]> git.ipfire.org Git - thirdparty/rspamd.git/commitdiff
[Minor] Restore symbol hover outside status tables 5741/head
authorAlexander Moisseev <moiseev@mezonplus.ru>
Tue, 11 Nov 2025 14:54:46 +0000 (17:54 +0300)
committerAlexander Moisseev <moiseev@mezonplus.ru>
Tue, 11 Nov 2025 14:54:46 +0000 (17:54 +0300)
interface/css/rspamd.css

index 367b96066cdeba1a7f604704adb0e5715696fcda..662f39ec9bd7f36c4de33e7efd34a176c2879f60 100644 (file)
@@ -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;