feat(OrderLookupForm): use theme-aware gradient for branding column#67
Merged
garrity-miepub merged 1 commit intomainfrom Feb 3, 2026
Merged
feat(OrderLookupForm): use theme-aware gradient for branding column#67garrity-miepub merged 1 commit intomainfrom
garrity-miepub merged 1 commit intomainfrom
Conversation
Replace hardcoded blue gradient with CSS custom properties that respect the active brand theme: - Use --mieweb-primary-600 to --mieweb-primary-900 for gradient - Gradient now changes with BlueHive (cyan), WebChart (orange), etc. - Provides consistent brand experience across all themes
Deploying ui with
|
| Latest commit: |
e8738e7
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://7dbd4390.ui-6d0.pages.dev |
| Branch Preview URL: | https://feature-order-lookup-updtes.ui-6d0.pages.dev |
There was a problem hiding this comment.
Pull request overview
This pull request replaces a hardcoded blue gradient background in the OrderLookupForm component's branding column with theme-aware CSS custom properties that automatically adapt to the active brand theme.
Changes:
- Converted hardcoded Tailwind gradient classes (
bg-gradient-to-br from-blue-600 to-blue-800 dark:from-blue-800 dark:to-blue-950) to an inline style using CSS custom properties - The gradient now uses
var(--mieweb-primary-600)andvar(--mieweb-primary-900)with appropriate fallback values - Removed dark mode specific gradient classes as the CSS custom properties handle theme variations
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
Replace hardcoded blue gradient with CSS custom properties that respect the active brand theme:
order-lookup.mov