diff options
author | Vsevolod Stakhov <vsevolod@rspamd.com> | 2024-12-10 19:16:21 +0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-10 19:16:21 +0600 |
commit | 35bb4b244d64b2c3ffd4fa6345d1349e4b5564be (patch) | |
tree | d354bc6f38d286bd6d5e8626d8e251af8a090e8e /interface/css/rspamd.css | |
parent | 4c978e0512acc7793a88ea9fa0388e847d9faff5 (diff) | |
parent | b7da3792b8abd47bf262f9fdc3bb89f6b424ac77 (diff) | |
download | rspamd-35bb4b244d64b2c3ffd4fa6345d1349e4b5564be.tar.gz rspamd-35bb4b244d64b2c3ffd4fa6345d1349e4b5564be.zip |
Merge pull request #5241 from moisseev/webui
[WebUI] Rework symbol description display on hover
Diffstat (limited to 'interface/css/rspamd.css')
-rw-r--r-- | interface/css/rspamd.css | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/interface/css/rspamd.css b/interface/css/rspamd.css index e7c1e91b8..896f92008 100644 --- a/interface/css/rspamd.css +++ b/interface/css/rspamd.css @@ -265,6 +265,19 @@ table#symbolsTable input[type="number"] { background-color: #cddbff; } +/* For symbol description display on hover/focus */ +.symbol-default.has-description:not(:focus) strong { + text-decoration: underline dotted; +} +.symbol-description { + display: none; + color: #484848; +} +.symbol-default:hover .symbol-description, +.symbol-default:focus .symbol-description { + display: unset; +} + .map-link { display: block; color: #0088cc; |