Include Listings in TOC

This commit is contained in:
2026-05-07 14:16:18 +02:00
parent 1e54ec1f16
commit 80b93127dc
2 changed files with 25 additions and 20 deletions
+15 -10
View File
@@ -251,22 +251,22 @@ main {
.listing {
border: 1px solid var(--secondary);
}
.listing-header {
padding: 0.5rem 1rem;
font-size: 0.8rem;
text-transform: uppercase;
letter-spacing: 0.05em;
main > h2 {
color: var(--text);
border-bottom: 1px solid var(--secondary);
margin: 1.25rem 0 0.5rem;
line-height: 1.3;
font-size: 1.4rem;
}
.listing-item {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.6rem 1rem;
border-top: 1px solid var(--secondary);
font-size: 0.95rem;
}
.listing-item + .listing-item {
border-top: 1px solid var(--secondary);
}
.listing-item:hover {
background: var(--bg-panel-hover);
}
@@ -277,9 +277,7 @@ main {
}
.listing-item a {
flex: 1;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
overflow-wrap: anywhere;
color: inherit;
}
.listing-item .meta {
@@ -862,4 +860,11 @@ hr {
.modal-header {
cursor: default;
}
.listing-item {
flex-wrap: wrap;
}
.listing-item .meta {
flex-basis: 100%;
padding-left: calc(1.25rem + 0.75rem);
}
}