diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2024-12-29 19:01:59 -0400 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2024-12-29 19:01:59 -0400 |
commit | e5eb30bd10728fd730086c41332305593731636c (patch) | |
tree | a5faa3382f4004915a2617329c15fe66aeb9906e /src/static | |
parent | 012e29630fa0bddfd49faf97caf84585109e07ad (diff) |
content, css: commas in additional series nav links
If the CSS works, the CSS works. (Groan)
Diffstat (limited to 'src/static')
-rw-r--r-- | src/static/css/site.css | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/static/css/site.css b/src/static/css/site.css index 56a6ad40..d20a0046 100644 --- a/src/static/css/site.css +++ b/src/static/css/site.css @@ -851,10 +851,18 @@ a:not([href]):hover { } .series-nav-link:not(:first-child)::before { - content: "\0020»\0020"; + content: "\00a0»\00a0"; font-weight: normal; } +.series-nav-link:not(:last-child)::after { + content: ",\00a0"; +} + +.series-nav-link + .series-nav-link::before { + content: ""; +} + .dot-switcher > span:not(:first-child)::before { content: "\0020\00b7\0020"; font-weight: 800; |