Changeset 0.27.1 (#167)

This commit is contained in:
2026-03-10 17:43:29 +00:00
parent 7e4f1581f2
commit 41be9d6081
16 changed files with 780 additions and 57 deletions

View File

@@ -78,3 +78,46 @@
.badge { font-size: 11px; padding: 2px 8px; border-radius: 10px; background: var(--bg-raised); color: var(--text-2); }
.badge-ok { background: rgba(46, 160, 67, 0.15); color: #2ea043; }
.badge-warn { background: rgba(210, 153, 34, 0.15); color: #d29922; }
/* ── v0.27.0: Workflow stage indicator bar ── */
.workflow-stage-bar {
display: flex;
align-items: center;
gap: 10px;
padding: 6px 16px;
font-size: 12px;
background: var(--bg-surface);
border-bottom: 1px solid var(--border);
color: var(--text-2);
flex-shrink: 0;
}
.wf-bar-steps {
display: flex;
gap: 4px;
align-items: center;
}
.wf-bar-step {
width: 8px; height: 8px;
border-radius: 50%;
background: var(--border);
transition: background 0.2s;
}
.wf-bar-step.completed { background: var(--success); }
.wf-bar-step.current { background: var(--accent); box-shadow: 0 0 0 2px var(--accent-dim); }
.wf-bar-stage-name { font-weight: 600; color: var(--text); }
.wf-bar-status {
font-size: 11px;
padding: 1px 8px;
border-radius: 10px;
}
.wf-bar-status.active { background: var(--accent-dim); color: var(--accent); }
.wf-bar-status.completed { background: var(--success-dim); color: var(--success-light); }
.wf-bar-status.stale { background: var(--warning-dim); color: var(--warning-light); }
.wf-bar-spacer { flex: 1; }
.wf-bar-actions { display: flex; gap: 6px; }
.wf-bar-actions .btn-small { font-size: 11px; padding: 3px 10px; }
/* DnD stage reorder feedback */
.wf-stage-row.dragging { opacity: 0.4; }
.wf-stage-row.drag-over { border-top: 2px solid var(--accent); }