qwen-code/packages/web-shell/client/components/messages/PlanMessage.module.css
ytahdn a384c4a21a
feat(web-shell): polish chat UI (#5893)
* style(web-shell): polish chat UI

* fix(web-shell): address chat polish review feedback

---------

Co-authored-by: ytahdn <ytahdn@gmail.com>
2026-06-26 15:38:23 +00:00

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;
}