fix: refine web chat session selector

This commit is contained in:
Peter Steinberger
2026-01-02 10:40:24 +01:00
parent e85c15d178
commit 87127fd133
3 changed files with 19 additions and 1 deletions

View File

@@ -214,6 +214,23 @@
outline: none;
}
.field select {
appearance: none;
padding-right: 38px;
background-color: var(--panel-strong);
background-image:
linear-gradient(45deg, transparent 50%, var(--muted) 50%),
linear-gradient(135deg, var(--muted) 50%, transparent 50%),
linear-gradient(to right, transparent, transparent);
background-position:
calc(100% - 18px) 50%,
calc(100% - 12px) 50%,
calc(100% - 38px) 50%;
background-size: 6px 6px, 6px 6px, 1px 60%;
background-repeat: no-repeat;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.field textarea {
font-family: var(--mono);
min-height: 180px;