feat(console): stunning dark-mode redesign with mobile support#112
Merged
Conversation
Redesigns the control-plane console around a dark-first "mission control" visual language (indigo/cyan palette, glass-panel surfaces, Space Grotesk display type, scroll-reveal + micro-interaction motion) built on no new heavy dependency beyond solid-transition-group. - New shared primitives: Reveal (scroll-triggered entrance), GlowDot (live-status indicator), AnimatedNumber (KPI counter), AmbientBackground - Full dark-mode pass across every page, fixing two real pre-existing gaps: PolicyAnalytics/PolicyExplain/DataTable had zero dark-mode support, and the "Health" nav link pointed at a route that didn't exist - MeshGraph: glow edges, node hover highlighting, pan/zoom - Responsive/mobile pass: off-canvas nav drawer replacing the always-fixed sidebar, scrollable tables, wrapping filter bars and modal edge padding, and touch/pinch support for MeshGraph's pan/zoom (previously mouse-only) Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
|
Strix is installed on this repository, but we couldn't run this PR security review because this workspace's trial has ended. Add a card to resume code reviews here. |
vet Summary ReportThis report is generated by vet Policy Checks
Malicious Package AnalysisActive malicious package analysis was disabled. Learn more about enabling active package analysis Malicious Package Analysis Report
Changed PackagesChanged Packages
Policy ViolationsPackages Violating Policy[Npm]
|
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.
Summary
solid-transition-groupis the only addition, used for the wizard's step transitions).Reveal,GlowDot,AnimatedNumber,AmbientBackground) reused across every page instead of bespoke one-offs.PolicyAnalytics/PolicyExplain/DataTablehad zero dark-mode support before this, and the sidebar's "Health" nav link pointed at a route that didn't exist at all — built the page and wired the route.MeshGraphgot glow edges, node hover highlighting, and real pan/zoom (previously static).lg(previously always-fixed, unusable under ~1024px wide), tables scroll horizontally instead of clipping, filter bars and modal dialogs wrap/pad correctly on narrow viewports, andMeshGraph's pan/zoom now works via touch + pinch (it was mouse-only before, built on the Pointer Events API so one code path drives mouse, touch, and pinch).Test plan
npx tsc --noEmitcleannpx vite buildcleannpx vitest run— 37/37 passing (includes a fix toReveal.tsxto guard against environments withoutIntersectionObserver, which the test suite hit onceAlerts/Dashboardstarted using it)prefers-reduced-motionemulation, keyboard focus-ring visibility, and mobile viewport/touch behavior were not visually verified in this session (no browser automation tool available) and should be checked before merge🤖 Generated with Claude Code