-
Notifications
You must be signed in to change notification settings - Fork 1
π¨ Palette: μμ΄μ½ μ μ© λ²νΌμ ν΄ν μΆκ° #862
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
Closed
Closed
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,7 @@ | ||
| ## 2024-05-19 - Replace HTML disabled with aria-disabled="true" for Accessible Tooltips | ||
| **Learning:** Native HTML `disabled` attributes completely hide elements from screen readers and block all pointer/hover events, preventing tooltips from functioning for disabled elements. | ||
| **Action:** Replace `disabled` with `aria-disabled="true"`, enforce block click handlers via `e.preventDefault()`, and add a title tooltip directly to the element to maintain full tooltip accessibility and keyboard focus support for visually impaired and mouse users. | ||
|
|
||
| ## 2024-08-16 - Add tooltips to icon-only buttons | ||
| **Learning:** Icon-only buttons often have an `aria-label` for screen reader users, but without a `title` attribute, mouse users hovering over the button receive no visual hint about its function, degrading usability. | ||
| **Action:** Always add a `title` attribute matching the `aria-label` to icon-only buttons to provide native browser tooltips on hover. |
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
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
λ€μ΄ν°λΈ
disabledλ²νΌμμλ μΆκ°νtitleμ΄ λμνμ§ μμ΅λλ€.λΉνμ± μνμμλ μμ΄μ½ λ²νΌμ μ€λͺ μ μ 곡ν΄μΌ ν©λλ€.
apps/desktop/src/features/score/ScoreView.tsx#L198-L201: μμ λ²νΌμaria-disabledμ ν΄λ¦ μ°¨λ¨ λ‘μ§μ μ μ©νκ±°λ νΈλ² κ°λ₯ν λνΌλ₯Ό μΆκ°νμΈμ.apps/desktop/src/features/score/ScoreViewer.tsx#L297-L314: μ΄μ /λ€μ νμ΄μ§ λ²νΌμ λμΌν μ²λ¦¬λ₯Ό μ μ©νμΈμ.μμ λ°©ν₯
π Affects 2 files
apps/desktop/src/features/score/ScoreView.tsx#L198-L201(this comment)apps/desktop/src/features/score/ScoreViewer.tsx#L297-L314π€ Prompt for AI Agents