mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-08-20 22:25:30 +00:00
* style(web-shell): polish chat UI * fix(web-shell): address chat polish review feedback --------- Co-authored-by: ytahdn <ytahdn@gmail.com>
54 lines
869 B
CSS
54 lines
869 B
CSS
.panel {
|
|
display: flex;
|
|
width: min(100%, var(--chat-regular-content-width, 1000px));
|
|
flex-direction: column;
|
|
gap: 2px;
|
|
padding: 12px 16px;
|
|
border: 1px solid var(--border);
|
|
border-radius: 8px;
|
|
color: var(--foreground);
|
|
background: var(--background);
|
|
font-family: var(--font-mono);
|
|
font-size: 13px;
|
|
line-height: 1.45;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
.title {
|
|
margin-bottom: 8px;
|
|
color: var(--agent-blue-500);
|
|
font-weight: 700;
|
|
}
|
|
|
|
.row {
|
|
display: grid;
|
|
width: 100%;
|
|
grid-template-columns: 20ch minmax(0, 1fr);
|
|
align-items: baseline;
|
|
gap: 8px;
|
|
}
|
|
|
|
.rowGap {
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.label {
|
|
color: var(--agent-blue-500);
|
|
font-weight: 700;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.value {
|
|
color: var(--foreground);
|
|
word-break: break-all;
|
|
}
|
|
|
|
.accent {
|
|
color: var(--agent-blue-500);
|
|
}
|
|
|
|
@media (max-width: 720px) {
|
|
.panel {
|
|
font-size: 12px;
|
|
}
|
|
}
|