v1.3.9 — 任务面板加宽到1000px + 横向表格布局 + 空分组自动隐藏

This commit is contained in:
mac
2026-06-16 10:28:48 +08:00
parent 386f780d00
commit 853344fb26
2 changed files with 12 additions and 10 deletions

View File

@@ -499,7 +499,7 @@ td {
padding-top: 48px; overflow-y: auto;
}
.task-panel {
background: #18191c; border-radius: 12px; width: 800px; max-width: 94vw;
background: #18191c; border-radius: 12px; width: 1000px; max-width: 96vw;
box-shadow: 0 24px 80px rgba(0,0,0,0.4); margin-bottom: 48px;
}
.task-header {
@@ -529,15 +529,16 @@ td {
}
.task-group-list { display: flex; flex-direction: column; }
.task-row {
display: flex; align-items: flex-start; gap: 10px;
padding: 10px 14px; border-top: 1px solid #24272d;
display: flex; align-items: center; gap: 16px;
padding: 10px 16px; border-top: 1px solid #24272d;
}
.task-dot { display: flex; color: #4b4d54; padding-top: 2px; flex-shrink: 0; }
.task-main { flex: 1; min-width: 0; }
.task-name { color: #c5c6ca; font-size: 13px; display: block; }
.task-desc { color: #5a5c63; font-size: 12px; display: block; margin-top: 3px; }
.task-right { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; flex-shrink: 0; }
.task-owner, .task-date { color: #898b94; font-size: 12px; white-space: nowrap; }
.task-row:hover { background: #1a1c21; }
.task-dot { display: flex; color: #4b4d54; flex-shrink: 0; }
.task-main { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.task-name { color: #c5c6ca; font-size: 13px; }
.task-desc { color: #5a5c63; font-size: 12px; }
.task-col { color: #898b94; font-size: 12px; white-space: nowrap; width: 100px; text-align: right; }
.task-col-badge { color: #898b94; font-size: 12px; white-space: nowrap; width: 80px; text-align: right; }
.task-none { color: #4b4d54; font-size: 13px; padding: 12px 14px; text-align: center; border-top: 1px solid #24272d; }
.task-form {
background: #141518; border: 1px solid #2a2d34; border-radius: 8px;