From 60704d22c0af18a8d85c1c0d81c2246cbf39aa48 Mon Sep 17 00:00:00 2001 From: Claude Agent Date: Fri, 27 Mar 2026 11:52:37 +0000 Subject: [PATCH] =?UTF-8?q?style(design):=20FINDING-002=20=E2=80=94=20add?= =?UTF-8?q?=20glow=20to=20SKIPPED/yellow=20dots?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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) --- api/app/static/css/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/app/static/css/style.css b/api/app/static/css/style.css index dee9ac2..3d69691 100644 --- a/api/app/static/css/style.css +++ b/api/app/static/css/style.css @@ -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); }