-
Notifications
You must be signed in to change notification settings - Fork 0
Refactor: UI colors for consistency and accessibility #7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,19 +8,19 @@ | |
|
|
||
| .faq-item { | ||
| background: #ffffff; | ||
| border: 1px solid rgba(97, 194, 200, 0.25); | ||
| border: 1px solid #40676B; /* teal-cyan-aqua-600 */ | ||
| border-radius: 0.75rem; | ||
| overflow: hidden; | ||
| transition: border-color 0.2s ease, box-shadow 0.2s ease; | ||
| } | ||
|
|
||
| .faq-item:hover { | ||
| border-color: #d1d5db; | ||
| border-color: #40676B; /* teal-cyan-aqua-600 */ | ||
| } | ||
|
|
||
| .faq-item--open { | ||
| border-color: rgba(97, 194, 200, 0.5); | ||
| box-shadow: 0 4px 16px rgba(97, 194, 200, 0.1); | ||
| border-color: #40676B; /* teal-cyan-aqua-600 */ | ||
| box-shadow: 0 4px 16px rgba(64, 103, 107, 0.1); | ||
| } | ||
|
|
||
| /* Trigger button */ | ||
|
|
@@ -157,7 +157,7 @@ | |
|
|
||
| /* Inline link in header */ | ||
| .faq-inline-link { | ||
| color: #0891b2; | ||
| color: #40676B; | ||
|
Comment on lines
159
to
+160
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🎯 Functional Correctness | 🟡 Minor | ⚡ Quick win Keep the FAQ link readable on hover. The new dark base color is appropriate, but the existing 🤖 Prompt for AI Agents |
||
| text-decoration: underline; | ||
| text-underline-offset: 2px; | ||
| transition: color 0.2s ease; | ||
|
|
||
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎯 Functional Correctness | 🟡 Minor | ⚡ Quick win
Localize the touched user-facing strings.
These Razor segments bypass localization. Use
@L["Key"]or the project’s established localized accessor and add the corresponding resource keys.Features/Landing/Components/HeroWarmTealWash.razor#L22-L22: localizeLess busywork.Features/Landing/Components/Mission.razor#L22-L23: localizeSmart Technology.Features/Landing/Components/Mission.razor#L43-L45: localizeempower businesses.Features/Landing/Components/Services.razor#L22-L22: localizeYou Focus on Growing and Making Money.Layout/Header.razor#L29-L29: localizeLet's Talk.Features/Contact/Components/ContactForm.razor#L9-L9: localizeGet In Touch.📍 Affects 5 files
Features/Landing/Components/HeroWarmTealWash.razor#L22-L22(this comment)Features/Landing/Components/Mission.razor#L22-L23Features/Landing/Components/Mission.razor#L43-L45Features/Landing/Components/Services.razor#L22-L22Layout/Header.razor#L29-L29Features/Contact/Components/ContactForm.razor#L9-L9🤖 Prompt for AI Agents
Source: Coding guidelines