fix(theme): fix dark mode input styling and sidebar layout#127
Merged
Conversation
- Add global form element reset (font/color inherit, transparent bg) so CSS Module tokens take effect on all inputs - Set color-scheme on <html> for native widget dark mode rendering (date pickers, selects, scrollbars) - Add explicit background-color to inputs in WorkItems, WorkItemDetail, TagManagement, Profile, and Auth page CSS modules - Move ThemeToggle and logout out of <nav> into a new sidebar footer - Add project info (version + GitHub link) to sidebar footer - Inject __APP_VERSION__ via webpack DefinePlugin - Restyle ThemeToggle with smaller font and muted opacity to differentiate from navigation links Co-Authored-By: Claude frontend-developer (Opus 4.6) <noreply@anthropic.com>
Contributor
|
🎉 This PR is included in version 1.8.0-beta.22 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
steilerDev
pushed a commit
that referenced
this pull request
Feb 19, 2026
PR #127 moved the Logout button from inside <nav> to a <div> in the sidebar footer, still within <aside>. Update AppShellPage.logout() and sidebar-navigation.spec.ts to scope the locator to this.sidebar instead of this.nav, fixing 56 E2E test failures across all viewports. Co-Authored-By: Claude orchestrator (Opus 4.6) <noreply@anthropic.com>
2 tasks
steilerDev
added a commit
that referenced
this pull request
Feb 19, 2026
PR #127 moved the Logout button from inside <nav> to a <div> in the sidebar footer, still within <aside>. Update AppShellPage.logout() and sidebar-navigation.spec.ts to scope the locator to this.sidebar instead of this.nav, fixing 56 E2E test failures across all viewports. Co-authored-by: Claude frontend-developer (Opus 4.6) <noreply@anthropic.com>
Contributor
|
🎉 This PR is included in version 1.8.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
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
font: inherit; color: inherit; background-color: transparent) and setcolor-schemeon<html>so native widgets (date pickers, selects, scrollbars) render in dark mode. Added explicitbackground-color: var(--color-bg-primary)to all input CSS modules that were missing it.<nav>into a newsidebarFootersection pushed to the bottom viamargin-top: auto. Added project info (version + GitHub link) at the bottom.--font-size-xs), muted opacity (0.7 → 1 on hover), and compact padding to differentiate from nav links.DefinePluginto inject__APP_VERSION__from rootpackage.jsonat build time, with TypeScript declaration and Jest global fallback.Test plan
🤖 Generated with Claude Code