Polish web chat presentation

This commit is contained in:
Yichen Jiang
2026-07-30 19:30:58 +08:00
parent 3921610f5b
commit b121adcf1a
23 files changed
+201 -87

No files matched your search

@@ -3,22 +3,54 @@
}
.toggle {
font-size: 12px;
line-height: 18px;
display: inline-flex;
align-items: center;
min-height: 24px;
font-size: 14px;
line-height: 24px;
color: var(--dsw-alias-label-secondary);
padding: 2px 6px;
padding: 0;
border: none;
background: transparent;
cursor: pointer;
border-radius: 6px;
}
.toggle:hover {
background: var(--dsw-alias-interactive-bg-hover);
.leading {
position: relative;
flex: none;
width: 16px;
height: 16px;
display: inline-flex;
align-items: center;
justify-content: center;
margin-right: 6px;
color: var(--dsw-alias-label-tertiary);
}
.iconIdle {
display: inline-flex;
opacity: 1;
transition: opacity 100ms ease;
}
.chevronHover {
position: absolute;
inset: 0;
margin: auto;
opacity: 0;
transition: opacity 100ms ease;
}
.toggle:hover .iconIdle {
opacity: 0;
}
.toggle:hover .chevronHover {
opacity: 1;
}
.body {
margin: 4px 0 0;
margin: 4px 0 0 22px;
padding: 8px;
max-height: 200px;
overflow: auto;