a11y(milestones): full keyboard operability#828
Merged
mikewheeleer merged 1 commit intoJul 26, 2026
Conversation
Add visible focus-visible styles to milestones controls missing rings, and cover tab order plus Enter/Space activation in dedicated tests. Co-authored-by: Cursor <cursoragent@cursor.com>
|
@aburex12345 Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits. You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀 |
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.
Add visible focus-visible styles to milestones controls missing rings, and cover tab order plus Enter/Space activation in dedicated tests.
Description
Milestones controls were keyboard-reachable via native buttons/radios/links, but several interactive elements lacked visible focus styles, so keyboard users could not tell where focus was (WCAG 2.4.7).
This PR adds
focus-visiblerings/outlines to the gaps (sample banner dismiss ×, creation form Cancel/Submit, due-soon dismiss) without changing layout, and adds dedicated keyboard tests for tab order and Enter/Space activation.Closes #618
Type of Change
Pre-flight Checklist
All items must be checked before requesting review.
npm run lintpasses with no errorsnpm testpasses with no failuresnpm run buildcompletes successfullyTesting & Coverage
(run
npm test -- --coverageand check the per-file table)the shared utilities in
src/test-utils/a11y.tsxWhat was tested?
Automated (new suite
src/components/__tests__/MilestonesKeyboard.test.tsx):focus-visible/focus-withinclasses on Add Milestone, sample dismiss ×, Start from scratch, form Cancel/Submit, filter labels, due-soon dismiss + linksCoverage (impacted modules): Statements 95.74%, Lines 95.62%
Full suite: 74 suites / 1279 tests passed.
Full test output
Test Suites: 74 passed, 74 total Tests: 1279 passed, 1279 total Snapshots: 7 passed, 7 total Time: 18.645 s
MilestonesKeyboard suite: 19 passed.
Accessibility & Security Notes
Accessibility
focus-visibleoutlines/rings on controls that previously had hover-only styling.MilestonesKeyboard.test.tsx(plus existing milestones axe coverage). Focus-visible assertions mirror ActionPanel / EmptyState patterns.Security
N/A — no auth, wallet, API, or new user-input handling; styling and a11y tests only.