fix: stabilize datasource progress and websocket flow

This commit is contained in:
linkong
2026-04-01 12:04:28 +08:00
parent 126d4dadb7
commit b8f70f8b71
11 changed files with 408 additions and 134 deletions

View File

@@ -281,6 +281,47 @@ body {
gap: 8px;
}
.data-source-bulk-toolbar__stat-pill {
display: inline-flex;
align-items: baseline;
gap: 8px;
padding: 6px 10px;
border: 1px solid #e5e7eb;
border-radius: 999px;
background: #ffffff;
color: #475467;
line-height: 1;
}
.data-source-bulk-toolbar__stat-pill strong {
color: #111827;
font-size: 13px;
font-weight: 700;
}
.data-source-bulk-toolbar__stat-label {
font-size: 12px;
color: #667085;
}
.data-source-bulk-toolbar__stat-pill--success {
border-color: #b7eb8f;
background: #f6ffed;
}
.data-source-bulk-toolbar__stat-pill--success strong {
color: #237804;
}
.data-source-bulk-toolbar__stat-pill--danger {
border-color: #ffccc7;
background: #fff2f0;
}
.data-source-bulk-toolbar__stat-pill--danger strong {
color: #cf1322;
}
.data-source-bulk-toolbar__progress {
display: flex;
flex-direction: column;