fix(frontend): 修复会话补充与工作流刷新

This commit is contained in:
2026-06-06 17:56:54 +08:00
parent fa77c68d77
commit 54c37edf19
4 changed files with 132 additions and 10 deletions

View File

@@ -581,18 +581,30 @@ input:focus {
border-radius: 18px;
background: #f8fbff;
line-height: 1.7;
min-width: 0;
max-width: 100%;
overflow-wrap: anywhere;
word-break: break-word;
}
.message-bubble p,
.message-content p {
margin: 0;
line-height: 1.8;
min-width: 0;
max-width: 100%;
overflow-wrap: anywhere;
word-break: break-word;
}
.message-content {
display: grid;
gap: 14px;
line-height: 1.8;
min-width: 0;
max-width: 100%;
overflow-wrap: anywhere;
word-break: break-word;
}
.message-content a {
@@ -963,6 +975,7 @@ input:focus {
border-collapse: collapse;
font-size: 13px;
line-height: 1.6;
table-layout: fixed;
}
.message-bubble th,
@@ -971,6 +984,21 @@ input:focus {
border: 1px solid var(--line);
text-align: left;
vertical-align: top;
overflow-wrap: anywhere;
word-break: break-word;
}
.message-bubble pre {
max-width: 100%;
overflow-x: auto;
white-space: pre-wrap;
overflow-wrap: anywhere;
}
.message-bubble code {
white-space: pre-wrap;
overflow-wrap: anywhere;
word-break: break-word;
}
@media (max-width: 980px) {