Polish static UI flows

This commit is contained in:
iye
2026-05-28 12:29:12 +08:00
parent 5edfa05369
commit bbe29622c2
45 changed files with 2187 additions and 813 deletions
+18
View File
@@ -157,7 +157,25 @@
.history-card .placeholder { width: 78px; height: 78px; }
/* ─── 列表视图 · 表格 ─── */
#task-list-view {
background: var(--surface);
border: 1px solid var(--border-muted);
border-radius: var(--r-md);
overflow: hidden;
}
#task-list-view[hidden] { display: none; }
#task-list-view table.t {
border: 0;
border-radius: 0;
background: transparent;
}
#task-list-view table.t thead th {
background: var(--background-lighter);
border-bottom-color: var(--border-muted);
}
#task-list-view table.t tbody td {
border-bottom: 0;
}
.task-name-cell { display: flex; align-items: center; gap: 12px; }
.task-thumb { width: 40px; height: 40px; flex-shrink: 0; border-radius: var(--r-sm); }
.task-name { font-weight: 600; color: var(--accent-black); font-size: 13.5px; }