diff options
| author | (quasar) nebula <qznebula@protonmail.com> | 2026-03-31 07:26:39 -0300 |
|---|---|---|
| committer | (quasar) nebula <qznebula@protonmail.com> | 2026-03-31 07:26:39 -0300 |
| commit | ba948a6b11f5b9bf5396a0af7fe7f92def711c8f (patch) | |
| tree | 073667f4a2e7f11ccc4bd1a7c0b4ce44e490612a /src/static/css | |
| parent | 0822def5f08ec34fe5638e50015190b8aca633bf (diff) | |
css: fix hrefless link hover
Diffstat (limited to 'src/static/css')
| -rw-r--r-- | src/static/css/miscellany.css | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/static/css/miscellany.css b/src/static/css/miscellany.css index b2647a73..70120a33 100644 --- a/src/static/css/miscellany.css +++ b/src/static/css/miscellany.css @@ -174,14 +174,6 @@ a.series { font-style: oblique; } - - a:not([href]) { - cursor: default; - } - - a:not([href]):hover { - text-decoration: none; - } } @Layer interaction { @@ -200,6 +192,14 @@ text-decoration: underline; text-decoration-style: solid !important; } + + a:not([href]) { + cursor: default; + } + + a:not([href]):hover { + text-decoration: none; + } } /* Links with symbols */ |