add bookmarks view

This commit is contained in:
2026-06-02 17:58:06 +03:00
parent edfa2e232f
commit 2c8bc6dca8
15 changed files with 223 additions and 46 deletions

View File

@@ -465,7 +465,7 @@ footer {
gap: var(--base-padding);
}
.thread-actions {
.subheader-actions {
display: flex;
flex-wrap: wrap;
gap: var(--base-padding);
@@ -662,12 +662,12 @@ details {
}
}
&:not([open]) summary::before {
&:not([open]) > summary::before {
content: '▶';
padding-inline: var(--base-padding);
}
&[open] summary::before {
&[open] > summary::before {
content: '▼';
padding-inline: var(--base-padding);
}
@@ -677,6 +677,10 @@ details.separated {
margin: 0.5em 0;
}
details.inner {
margin-inline: var(--base-padding);
}
.avatar-form {
display: flex;
gap: var(--huge-padding);
@@ -724,6 +728,25 @@ details.separated {
}
}
table {
border-collapse: collapse;
width: 100%;
&.three-cols > thead > tr > th {
&:nth-child(1) {
width: 70%;
}
&:nth-child(2) {
width: 25%;
}
&:nth-child(3) {
width: 15%;
}
}
}
/* babycode tags */
.inline-code {