add inbox view

This commit is contained in:
2026-05-20 21:12:05 +03:00
parent 5db63d6907
commit 72172dbb1c
5 changed files with 84 additions and 18 deletions

View File

@@ -625,6 +625,33 @@ form.full-width {
justify-content: space-evenly;
}
details {
summary {
cursor: pointer;
display: flex;
align-items: center;
flex-wrap: wrap;
& :last-child {
margin-left: auto;
}
}
&:not([open]) summary::before {
content: '▶';
padding-inline: var(--base-padding);
}
&[open] summary::before {
content: '▼';
padding-inline: var(--base-padding);
}
}
details.separated {
margin: 0.5em 0;
}
/* babycode tags */
.inline-code {
background-color: var(--code-bg-color);
@@ -768,10 +795,6 @@ pre code {
.il { color: #A5D6FF } /* Literal.Number.Integer.Long */
}
summary {
cursor: pointer;
}
p {
margin: 0.5em 0;
}