fix(file-summary): 同步压缩包工作流状态与结果刷新

This commit is contained in:
2026-06-06 19:45:49 +08:00
parent daa0642142
commit 7e561ea213
12 changed files with 560 additions and 32 deletions

View File

@@ -882,7 +882,9 @@ input:focus {
.upload-dropzone span,
.upload-status,
.attachment-item span,
.workflow-card em {
.workflow-card em,
.workflow-card small,
.workflow-error {
color: var(--muted);
font-size: 12px;
}
@@ -949,6 +951,28 @@ input:focus {
font-size: 13px;
}
.node-status div {
display: grid;
min-width: 0;
gap: 2px;
}
.node-status span,
.node-status small,
.workflow-error {
overflow-wrap: anywhere;
word-break: break-word;
}
.workflow-error {
margin: 0;
padding: 8px 10px;
border-radius: 6px;
background: #fff1f0;
color: #b42318;
line-height: 1.5;
}
.status-running,
.status-retrying {
color: var(--accent);