mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-08-21 06:35:07 +00:00
* style(web-shell): polish chat UI * fix(web-shell): address chat polish review feedback --------- Co-authored-by: ytahdn <ytahdn@gmail.com>
55 lines
738 B
CSS
55 lines
738 B
CSS
.status {
|
|
display: flex;
|
|
align-items: baseline;
|
|
gap: 6px;
|
|
min-width: 0;
|
|
color: var(--muted-foreground);
|
|
font-size: 13px;
|
|
}
|
|
|
|
.pending {
|
|
color: var(--muted-foreground);
|
|
}
|
|
|
|
.running {
|
|
color: var(--warning-color);
|
|
}
|
|
|
|
.done {
|
|
color: var(--success-color);
|
|
}
|
|
|
|
.error {
|
|
color: var(--error-color);
|
|
}
|
|
|
|
.icon {
|
|
width: 14px;
|
|
flex-shrink: 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.name {
|
|
color: var(--foreground);
|
|
font-weight: 700;
|
|
}
|
|
|
|
.elapsed {
|
|
color: var(--muted-foreground);
|
|
font-size: 12px;
|
|
}
|
|
|
|
.spinner {
|
|
width: 8px;
|
|
height: 8px;
|
|
border: 1px solid currentColor;
|
|
border-top-color: transparent;
|
|
border-radius: 50%;
|
|
animation: spin 0.8s linear infinite;
|
|
}
|
|
|
|
@keyframes spin {
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|