diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2024-10-19 14:47:54 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2024-11-02 22:12:50 -0300 |
commit | df119fccb34e6912535ff6b9920826d9bfc54e59 (patch) | |
tree | a7cf241acf72ef9e3963ebb4a812fe577dcef690 /src/static | |
parent | 9bf9996d6f9eec874b3d1c2f4e4cafbc687c3f18 (diff) |
css: fix dot-underline cue showing on interpage dot switcher
Diffstat (limited to 'src/static')
-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 754f0184..aa41746b 100644 --- a/src/static/css/site.css +++ b/src/static/css/site.css @@ -856,12 +856,12 @@ a:not([href]):hover { font-weight: 800; } -.dot-switcher > span:not(.current) a { +.dot-switcher.intrapage > span:not(.current) a { text-decoration: underline; text-decoration-style: dotted; } -.dot-switcher > span.current a { +.dot-switcher.intrapage > span.current a { /* Keeping cursor: pointer (the default) is intentional here. */ text-decoration: none !important; } |