feat(ui): Enhance Graph and Kanban UX (bb-18e)

- feat(kanban): Add progressive disclosure to task details drawer
- feat(kanban): Fix title layout on mobile (remove flex-row constraint)
- feat(kanban): Add bead count and metadata to epics
- style(globals): Add status color tokens and refined scrollbars
- deps: Add dagre for true DAG layout in graph view
- chore: Update capture scripts
This commit is contained in:
zenchantlive 2026-02-12 23:37:27 -08:00
parent 8490cb1d8c
commit e1f3d48f6e
10 changed files with 5591 additions and 103 deletions

View file

@ -19,7 +19,7 @@ const browser = await chromium.launch({ headless: true });
for (const shot of shots) {
const page = await browser.newPage({ viewport: { width: shot.width, height: shot.height } });
await page.goto(url, { waitUntil: 'networkidle' });
await page.goto(url, { waitUntil: 'domcontentloaded' });
await page.waitForTimeout(700);
await page.screenshot({
path: path.join('artifacts', `kanban-${shot.name}-${mode}.png`),