perf(ui): window chat + lazy tool output

This commit is contained in:
Peter Steinberger
2026-01-08 04:32:48 +00:00
parent 55c8b8182c
commit 6a684fdf6c
5 changed files with 148 additions and 11 deletions

View File

@@ -883,6 +883,34 @@
color: var(--muted);
}
.chat-tool-card__details {
margin-top: 6px;
}
.chat-tool-card__summary {
font-family: var(--font-mono);
font-size: 11px;
color: var(--muted);
cursor: pointer;
list-style: none;
display: inline-flex;
align-items: center;
gap: 6px;
}
.chat-tool-card__summary::-webkit-details-marker {
display: none;
}
.chat-tool-card__summary-meta {
color: var(--muted);
opacity: 0.8;
}
.chat-tool-card__details[open] .chat-tool-card__summary {
color: var(--chat-text);
}
.chat-tool-card__output {
margin-top: 6px;
font-family: var(--font-mono);