qwen-code/packages/web-shell/client/components/messages/SystemMessage.module.css
ytahdn 4fd72b3ce3
feat(web-shell): polish chat UI and table rendering (#6099)
* feat(web-shell): polish chat UI and table rendering

* fix(web-shell): address review follow-ups

---------

Co-authored-by: ytahdn <ytahdn@gmail.com>
2026-07-01 16:20:19 +08:00

118 lines
2 KiB
CSS

.message {
display: flex;
align-items: flex-start;
gap: 8px;
padding: 4px 0;
font-size: 14px;
color: var(--muted-foreground);
border-radius: 4px;
margin: 0;
}
.flushMessage {
margin-bottom: 0;
}
.message::before {
width: 6px;
height: 6px;
flex: 0 0 auto;
border-radius: 50%;
background: var(--card-foreground);
content: '';
margin-top: 0.55em;
}
.noMarker::before {
display: none;
}
.content {
min-width: 0;
}
.message pre {
display: inline;
margin: 0;
white-space: pre-wrap;
word-wrap: break-word;
}
.message p {
margin: 0 0 8px;
}
.message p:last-child {
margin-bottom: 0;
}
.info {
background: transparent;
border: 0;
}
.recap {
gap: 0;
padding: 8px 12px;
border: 1px solid color-mix(in srgb, var(--agent-blue-500) 22%, var(--border));
border-radius: 8px;
background: color-mix(in srgb, var(--agent-blue-100) 42%, var(--background));
color: var(--agent-blue-500);
}
.recap::before {
display: none;
}
.modelSwitch {
color: var(--foreground);
}
.error {
background: transparent;
border: 0;
color: var(--error-color);
}
.warning {
background: transparent;
border: 0;
color: var(--warning-color);
}
.retryHint {
margin-top: 6px;
font-size: 12px;
color: var(--muted-foreground, #888);
font-style: italic;
}
.retryButton {
background: none;
border: none;
padding: 0;
margin: 0;
color: var(--muted-foreground, #888);
font: inherit;
font-style: italic;
cursor: pointer;
text-decoration: underline;
}
.retryButton:hover {
color: var(--foreground, #fff);
}
/* Right-aligned, subtle marker for a user-cancelled (ESC) stream — reads as a
user-side action and keeps the same divider treatment as a turn status row. */
.cancelled {
display: flex;
justify-content: flex-end;
width: 100%;
border-bottom: 1px solid color-mix(in srgb, var(--border) 58%, transparent);
padding: 10px 0;
margin-bottom: 5px;
font-size: 14px;
line-height: 1.4;
color: var(--muted-foreground);
}