feat(ui): theme switcher, collapsible sidebar, command palette, toasts#9
Merged
Mola-maker merged 1 commit intomainfrom Apr 21, 2026
Merged
feat(ui): theme switcher, collapsible sidebar, command palette, toasts#9Mola-maker merged 1 commit intomainfrom
Mola-maker merged 1 commit intomainfrom
Conversation
Major visual upgrade to the dashboard (PR-1 of 2). PR-2 will add pipeline drag-drop reordering with dependency validation. New features: 1. Theme system (5 schemes) — parchment / dark / forest / ocean / sunset. CSS-variable driven via [data-theme] on <html>, persisted in localStorage. Smooth 350ms transitions on color properties. 2. Custom background + blur — upload or drag-drop any image; live sliders for blur (0-40px) and opacity (0-100%); applied via a fixed body::before layer so content stays crisp. Surfaces (nav, sidebar, cards, modals) auto-tint with backdrop-filter when a background is active. 3. Collapsible sidebar blocks — sidebar-section converted to accordion-style blocks with animated chevron; open/closed state per block persisted to localStorage. 4. Enhanced animations — running phase cards now pulse with a terracotta-tinted box-shadow; buttons get a material-style ripple on click; data blocks fade-in-up on render. 5. Command palette (Cmd/Ctrl+K) — fuzzy filter over page navigation, pipeline run/stop/refresh, theme switching, clear workspace, and help. Keyboard-navigable (↑↓/Enter/Esc). 6. Toast notification system — stackable bottom-right toasts with level-coded left border (info/success/warn/error), auto-dismiss, click-to-close. Exposed as window.toast(). 7. Keyboard shortcuts — ? opens cheatsheet, / focuses chat, 1-4 switch pages, R refreshes, S toggles sidebar, Esc closes overlays. All additions are localStorage-backed and non-breaking — the default theme remains parchment with no background, behaving identically to before unless the user opts in.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Major visual upgrade to the dashboard (PR-1 of 2). PR-2 will add pipeline drag-drop reordering with dependency validation.
New features:
Theme system (5 schemes) — parchment / dark / forest / ocean / sunset. CSS-variable driven via [data-theme] on , persisted in localStorage. Smooth 350ms transitions on color properties.
Custom background + blur — upload or drag-drop any image; live sliders for blur (0-40px) and opacity (0-100%); applied via a fixed body::before layer so content stays crisp. Surfaces (nav, sidebar, cards, modals) auto-tint with backdrop-filter when a background is active.
Collapsible sidebar blocks — sidebar-section converted to accordion-style blocks with animated chevron; open/closed state per block persisted to localStorage.
Enhanced animations — running phase cards now pulse with a terracotta-tinted box-shadow; buttons get a material-style ripple on click; data blocks fade-in-up on render.
Command palette (Cmd/Ctrl+K) — fuzzy filter over page navigation, pipeline run/stop/refresh, theme switching, clear workspace, and help. Keyboard-navigable (↑↓/Enter/Esc).
Toast notification system — stackable bottom-right toasts with level-coded left border (info/success/warn/error), auto-dismiss, click-to-close. Exposed as window.toast().
Keyboard shortcuts — ? opens cheatsheet, / focuses chat, 1-4 switch pages, R refreshes, S toggles sidebar, Esc closes overlays.
All additions are localStorage-backed and non-breaking — the default theme remains parchment with no background, behaving identically to before unless the user opts in.