style(design): FINDING-002 — add glow to SKIPPED/yellow dots

DESIGN.md specifies box-shadow glow for SKIPPED status dots:
0 0 6px 2px rgba(202,138,4,0.3). Was missing from .dot-yellow.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Claude Agent
2026-03-27 11:52:37 +00:00
parent aacca13b85
commit 60704d22c0

View File

@@ -421,7 +421,7 @@ input[type="checkbox"] {
flex-shrink: 0;
}
.dot-green { background: var(--success); }
.dot-yellow { background: var(--warning); }
.dot-yellow { background: var(--warning); box-shadow: 0 0 6px 2px rgba(202,138,4,0.3); }
.dot-red { background: var(--error); box-shadow: 0 0 8px 2px rgba(220,38,38,0.35); }
.dot-gray { background: var(--cancelled); }
.dot-blue { background: var(--info); }