feat/frontend-ds-migration #2
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "feat/frontend-ds-migration"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Sidebar: drop the search item from SidebarNav and render it as a separated "Back to search" context switch (border-top mini section, CornerUpLeft icon, collapsed = icon-only + tooltip). Command palette + nav labels go English and the placeholder becomes "Go to…". Shell layout: wrap the Outlet in p-4/md:p-6 inside DashboardPanel, add min-w-0 to <main> (kills horizontal overflow at 768/1024 where flex min-width:auto refused to shrink), and bind the root to h-screen instead of min-h-screen so the DashboardPanel body is the scroll container — with min-h-screen the shell grew with its content, overflow-y-auto never engaged and wheeling stalled short of the bottom of a pager-less table. Locale: add APP_LOCALE = 'en' and thread locale={APP_LOCALE} through RelativeTime so times stop following the browser locale (Flow/JobDetail here; other pages in their own commits). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>The legacy base.css/tokens.css bled into the DS admin shell: a{color:accent} painted sidebar links green, the body radial-gradient showed behind the shell, and :root color-scheme + a prefers-color-scheme media query fought the DS class-based dark toggle. Tag SearchLayout and LoginScreen roots with `zone-legacy` and scope the offending body-level rules (paper bg, gradient, font-size, a{color}, ::selection, :focus-visible, and the dark token overrides) under it; body now carries DS-neutral defaults and color-scheme tracks the DS .dark class. Search/DocPage/Login keep their legacy look. TODO T5 markers left on every scoped block for the final cleanup. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>