Align user chat with agent model flow

This commit is contained in:
2026-07-08 12:18:38 +08:00
parent 35011d2679
commit 13185ab42b
3 changed files with 70 additions and 5 deletions

View File

@@ -291,6 +291,33 @@ button:disabled {
white-space: normal;
}
.reasoning-panel {
margin-bottom: 10px;
border: 1px solid #dbe7e3;
border-radius: 12px;
background: #f2f7f5;
color: #496259;
}
.reasoning-panel summary {
min-height: 36px;
display: flex;
align-items: center;
padding: 0 10px;
color: #315d52;
font-size: 13px;
font-weight: 700;
cursor: pointer;
}
.reasoning-content {
max-height: 220px;
overflow-y: auto;
padding: 0 10px 10px;
color: #5d7169;
font-size: 13px;
}
.markdown-content > :first-child {
margin-top: 0;
}