Fix dashed border

This commit is contained in:
dwrz
2026-05-22 12:27:24 +00:00
parent 79492c9529
commit a06833bb8b

View File

@@ -113,21 +113,19 @@ body {
/* ==================== */
.collapsible {
border: 1px dashed var(--color-border-light);
border-radius: var(--radius);
border-bottom: 1px dashed var(--color-border-light);
}
.collapsible[open] .collapsible__summary::before {
transform: rotate(90deg);
}
.collapsible:last-of-type:has(~ .message__actions:empty) {
.collapsible:last-of-type {
border-bottom: none;
}
.collapsible__content {
padding: var(--s-2) var(--s-1);
border-top: 1px dashed var(--color-border-light);
}
.collapsible[open] .collapsible__summary::before {
transform: rotate(90deg);
}
.collapsible__content > pre {
@@ -203,19 +201,6 @@ body {
color: var(--color-purple);
}
.collapsible--reasoning:has(+ .collapsible--tool) {
margin-bottom: 0;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
.collapsible--reasoning + .collapsible--tool {
margin-top: 0;
border-top: none;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.collapsible--tool .collapsible__summary .icon {
color: var(--color-orange);
}