Feat v0.6.14 visual polish (#49)
All checks were successful
CI/CD / detect-changes (push) Successful in 4s
CI/CD / test-frontend (push) Successful in 5s
CI/CD / test-go-pg (push) Successful in 2m42s
CI/CD / test-sqlite (push) Successful in 3m1s
CI/CD / build-and-deploy (push) Successful in 1m8s

Co-authored-by: Jeffrey Smith <jasafpro@gmail.com>
Co-committed-by: Jeffrey Smith <jasafpro@gmail.com>
This commit was merged in pull request #49.
This commit is contained in:
2026-04-01 13:25:04 +00:00
committed by xcaliber
parent 3af62a9cc5
commit c9b9e68c18
35 changed files with 436 additions and 334 deletions

View File

@@ -10,7 +10,7 @@
gap: 8px;
padding: 8px 10px;
border: 1px solid var(--border);
border-radius: 6px;
border-radius: var(--radius);
margin-bottom: 4px;
background: var(--bg-surface);
cursor: grab;
@@ -35,7 +35,7 @@
.sb-queue-badge {
background: var(--accent);
color: #fff;
border-radius: 10px;
border-radius: var(--radius-lg);
padding: 1px 7px;
font-size: 11px;
font-weight: 600;
@@ -47,7 +47,7 @@
gap: 8px;
padding: 6px 12px;
cursor: pointer;
border-radius: 6px;
border-radius: var(--radius);
font-size: 13px;
transition: background 0.15s;
}
@@ -79,7 +79,7 @@
/* Browse workflows button */
.sb-queue-browse {
display: flex; align-items: center; gap: 8px;
padding: 6px 12px; cursor: pointer; border-radius: 6px;
padding: 6px 12px; cursor: pointer; border-radius: var(--radius);
font-size: 12px; color: var(--text-3); transition: background 0.15s;
}
.sb-queue-browse:hover { background: var(--bg-raised); color: var(--text-2); }
@@ -90,7 +90,7 @@
.wf-browse-dialog { max-height: 300px; overflow-y: auto; }
.wf-browse-row {
display: flex; align-items: center; gap: 8px;
padding: 8px 12px; cursor: pointer; border-radius: 6px;
padding: 8px 12px; cursor: pointer; border-radius: var(--radius);
font-size: 13px; transition: background 0.15s;
}
.wf-browse-row:hover { background: var(--bg-raised); }
@@ -109,7 +109,7 @@
/* ── Admin badges ────────────────────── */
.badge { font-size: 11px; padding: 2px 8px; border-radius: 10px; background: var(--bg-raised); color: var(--text-2); }
.badge { font-size: 11px; padding: 2px 8px; border-radius: var(--radius-lg); 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; }
@@ -143,7 +143,7 @@
.wf-bar-status {
font-size: 11px;
padding: 1px 8px;
border-radius: 10px;
border-radius: var(--radius-lg);
}
.wf-bar-status.active { background: var(--accent-dim); color: var(--accent); }
.wf-bar-status.completed { background: var(--success-dim); color: var(--success-light); }
@@ -164,7 +164,7 @@
gap: 6px;
padding: 6px 8px;
border: 1px solid var(--border);
border-radius: 6px;
border-radius: var(--radius);
margin-bottom: 4px;
background: var(--bg-surface);
flex-wrap: wrap;
@@ -177,7 +177,7 @@
font-size: 12px;
padding: 4px 6px;
border: 1px solid var(--border);
border-radius: 4px;
border-radius: var(--radius-sm);
background: var(--bg);
color: var(--text);
}