diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2024-04-24 15:55:38 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2024-05-01 07:06:06 -0300 |
commit | a10d7530bb9253e08e32b9a1b1ac3fb2ed15685d (patch) | |
tree | 952d0b9bc273040c82867bbf4483db12e3383e7e /src/static | |
parent | 44461c9f158702cfee48ae3a9339d3aba6de4d63 (diff) |
content: generatePageLayout etc: drop has-divider class
Introduced for blockwrap purposes earlier, but unneeded since we didn't actually use a blockwrap here in the end.
Diffstat (limited to 'src/static')
-rw-r--r-- | src/static/site6.css | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/static/site6.css b/src/static/site6.css index 73721956..b27a1fbb 100644 --- a/src/static/site6.css +++ b/src/static/site6.css @@ -488,13 +488,13 @@ a:not([href]):hover { display: inline-block; } -.nav-links-index .nav-link.has-divider::before, -.nav-links-groups .nav-link.has-divider::before { +.nav-links-index .nav-link:not(:first-child)::before, +.nav-links-groups .nav-link:not(:first-child)::before { content: "\0020\00b7\0020"; font-weight: 800; } -.nav-links-hierarchical .nav-link.has-divider::before { +.nav-links-hierarchical .nav-link:not(:first-child)::before { content: "\0020/\0020"; } |