-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Improved contrast and font size in the search input. - Tweaked colors and font sizes to meet WCAG requirements. - Adjusted the behavior of the select input for better accessibility. - Marked decorative elements with `role="presentation"` for screen readers.
- Loading branch information
Showing
12 changed files
with
70 additions
and
43 deletions.
There are no files selected for viewing
Submodule web-common
updated
16 files
+15 −0 | .github/workflows/ci.yml | |
+1 −1 | .nvmrc | |
+1 −12 | components/button.jsx | |
+12 −3 | components/dropdown.jsx | |
+66 −8 | components/icon.jsx | |
+185 −170 | components/select.jsx | |
+2 −1 | hooks/index.js | |
+2 −2 | hooks/use-focus-manager.js | |
+11 −0 | hooks/use-force-update.js | |
+2,407 −11,140 | package-lock.json | |
+22 −22 | package.json | |
+18 −22 | scss/_icon.scss | |
+5 −1 | scss/_select.scss | |
+8 −5 | scss/abstracts/_defaults.scss | |
+15 −0 | test/dropdown.test.jsx | |
+171 −7 | test/select.test.jsx |
This file contains 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 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 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 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 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 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 |
---|---|---|
|
@@ -39,7 +39,8 @@ | |
} | ||
|
||
a { | ||
color: mix($link-color, $shade-0, 40%); | ||
color: #a6c3ff; | ||
text-decoration: underline; | ||
} | ||
|
||
p { | ||
|
This file contains 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 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 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 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 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