diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2025-04-16 13:01:57 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2025-04-16 13:01:57 -0300 |
commit | 9ae78692b0d8fa483363aa3c18997e079d67c9d2 (patch) | |
tree | b5c7d5dccbe6e7bb2816f55badc07e25a10637b1 /src | |
parent | af6fb73b40795b7674c6f49dae805994326aaa4f (diff) |
css: fix harsh !important on .{thing-name,wiki-edits}-tooltip
Diffstat (limited to 'src')
-rw-r--r-- | src/static/css/site.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/static/css/site.css b/src/static/css/site.css index 25d9ce47..fce1a2a8 100644 --- a/src/static/css/site.css +++ b/src/static/css/site.css @@ -1119,7 +1119,7 @@ a .normal-content { font-size: 0.9rem; } -li:not(:first-child:last-child) .tooltip, +li:not(:first-child:last-child) .tooltip:where(:not(.cover-artwork .tooltip)), .offset-tooltips > :not(:first-child:last-child) .tooltip { left: 14px; } @@ -1161,7 +1161,7 @@ li:not(:first-child:last-child) .tooltip, .thing-name-tooltip, .wiki-edits-tooltip { padding: 3px 4px 2px 2px; - left: -6px !important; + left: -6px; } .thing-name-tooltip .tooltip-content, |