mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-08-16 04:05:15 +00:00
* style(web-shell): polish chat UI * fix(web-shell): address chat polish review feedback --------- Co-authored-by: ytahdn <ytahdn@gmail.com>
39 lines
571 B
CSS
39 lines
571 B
CSS
.message {
|
|
margin: 0 0 12px 14px;
|
|
padding: 2px 0;
|
|
}
|
|
|
|
.header {
|
|
display: flex;
|
|
align-items: baseline;
|
|
gap: 6px;
|
|
width: 100%;
|
|
padding: 0;
|
|
margin-bottom: 4px;
|
|
background: none;
|
|
border: none;
|
|
cursor: pointer;
|
|
text-align: left;
|
|
font: inherit;
|
|
}
|
|
|
|
.chevron {
|
|
flex-shrink: 0;
|
|
width: 12px;
|
|
color: var(--muted-foreground);
|
|
}
|
|
|
|
.title {
|
|
color: var(--foreground);
|
|
font-weight: 600;
|
|
}
|
|
|
|
.header:hover .title {
|
|
color: var(--agent-blue-500);
|
|
}
|
|
|
|
.progress {
|
|
color: var(--muted-foreground);
|
|
font-size: 12px;
|
|
font-variant-numeric: tabular-nums;
|
|
}
|