feat: milestone enhancements - tabs, task/support/meeting types, progress, status

This commit is contained in:
Zhi
2026-03-12 14:25:44 +00:00
parent 00d824c71c
commit 3055be860d
5 changed files with 204 additions and 37 deletions

View File

@@ -201,3 +201,12 @@ dd { font-size: .9rem; }
.btn-secondary { background: none; border: 1px solid var(--border); color: var(--text); padding: 6px 12px; border-radius: 6px; cursor: pointer; }
.btn-danger { background: var(--danger); color: #fff; border: none; padding: 6px 12px; border-radius: 6px; cursor: pointer; }
.btn-danger:hover { opacity: .9; }
/* Tabs */
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--border); margin-bottom: 16px; }
.tab { background: none; border: none; padding: 10px 16px; color: var(--text-dim); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; }
.tab:hover { color: var(--text); }
.tab.active { color: var(--accent); border-bottom-color: var(--accent); }
.tab-content { margin-top: 16px; }