front end update:

- chat support markdown
- stop button for chat
- configurable for deepagent
This commit is contained in:
2026-03-07 14:50:01 +08:00
parent 3932d695bf
commit ac99dfd56b
4 changed files with 150 additions and 16 deletions

View File

@@ -618,6 +618,7 @@ button:disabled {
display: grid;
gap: 8px;
grid-template-columns: 1fr auto;
align-items: start;
}
.chat-modal-input textarea {
@@ -628,3 +629,23 @@ button:disabled {
resize: vertical;
}
.chat-modal-actions {
display: flex;
gap: 8px;
height: 100%;
}
.chat-modal-actions button {
height: auto;
white-space: nowrap;
}
.chat-stop-button {
background-color: #dc3545;
color: white;
}
.chat-stop-button:hover {
background-color: #bb2d3b;
}