feat(workbench): show progress update time first

This commit is contained in:
caoxiaozhu
2026-06-03 12:28:21 +08:00
parent 27dd2f0a0d
commit 6fc5e66ea1
4 changed files with 70 additions and 6 deletions

View File

@@ -554,7 +554,7 @@
.progress-row {
display: grid;
grid-template-columns: minmax(138px, 0.9fr) minmax(300px, 1.5fr) minmax(92px, auto);
grid-template-columns: minmax(78px, 0.44fr) minmax(138px, 0.86fr) minmax(300px, 1.46fr) minmax(92px, auto);
align-items: center;
gap: 12px;
width: 100%;
@@ -563,6 +563,7 @@
text-align: left;
}
.progress-time,
.progress-identity,
.progress-result {
min-width: 0;
@@ -570,6 +571,28 @@
gap: 2px;
}
.progress-time {
color: var(--workbench-muted);
}
.progress-time time {
min-width: 0;
overflow: hidden;
color: var(--workbench-ink);
font-size: 12px;
font-weight: 850;
line-height: 1.2;
text-overflow: ellipsis;
white-space: nowrap;
}
.progress-time small {
color: var(--workbench-muted);
font-size: 10px;
font-weight: 750;
line-height: 1.2;
}
.progress-result {
justify-items: end;
}