Fix links messing up count

master
Maik de Kruif 2 weeks ago
parent cf537b1488
commit 1f9042cb72
No known key found for this signature in database
GPG Key ID: DB1A8C782DD43CB3
  1. 24
      themes/maik-blog/assets/scss/_collapsible-block.scss
  2. 2
      themes/maik-blog/layouts/shortcodes/collapsible-block.html

@ -16,8 +16,7 @@
max-height: 80vh; max-height: 80vh;
overflow: auto; overflow: auto;
transition: max-height 0.15s ease, padding-top 0.15s ease, transition: max-height 0.15s ease;
padding-bottom 0.15s ease;
border-bottom-left-radius: 10px; border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px; border-bottom-right-radius: 10px;
@ -28,15 +27,22 @@
background-color: darken($dark-background-secondary, 6%); background-color: darken($dark-background-secondary, 6%);
} }
padding: 0 1em; &-child {
transition: margin 0.15s ease;
&:has(> :last-child:nth-child(1)), margin: 1em;
&:not(:has(*)) {
padding: 1em; .highlight {
margin: 0 -1em;
&:first-child {
margin-top: -1em;
} }
&:has(.highlight) { &:last-child {
padding: 0 !important; margin-bottom: -1em;
}
}
} }
} }
@ -44,8 +50,6 @@
~ .collapsible-block__content { ~ .collapsible-block__content {
max-height: 0; max-height: 0;
padding-top: 0;
padding-bottom: 0;
border-top: none; border-top: none;
overflow: hidden; overflow: hidden;
} }

@ -12,6 +12,8 @@
data-label-collapse="{{ .Get "collapse" | default "▽" }}"></span> data-label-collapse="{{ .Get "collapse" | default "▽" }}"></span>
</label> </label>
<div class="collapsible-block__content"> <div class="collapsible-block__content">
<div class="collapsible-block__content-child">
{{ .Inner | markdownify }} {{ .Inner | markdownify }}
</div> </div>
</div>
</div> </div>

Loading…
Cancel
Save