#63084 closed defect (bug) (fixed)
Screen reader shortcut hidden in block editor on smaller screens
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | 6.8 | Priority: | normal |
Severity: | normal | Version: | 5.8 |
Component: | Editor | Keywords: | has-patch has-testing-info commit |
Focuses: | accessibility, css | Cc: |
Description
In the viewport range between 600 and 782 pixels, skip links are mostly hidden due to overflow-y: auto
in the block editor (GB28959).
Attachments (4)
Change History (16)
This ticket was mentioned in PR #8493 on WordPress/wordpress-develop by @sabernhardt.
7 weeks ago
#1
- Keywords has-patch added
#2
@
7 weeks ago
Test Report
This report validates that the indicated patch addresses the issue.
Patch tested:
https://github.com/WordPress/wordpress-develop/pull/8493
Environment
OS: macOS 14.6.1
Web Server: PHP.wasm
PHP: 7.4.31-dev
WordPress: 6.8-beta-2
Browser: Chrome Version 133.0.6943.142
Theme: Minimal Child Theme Version 1.0.2
Actual Results
✅ Issue resolved with patch.
#4
@
7 weeks ago
- Milestone changed from Awaiting Review to 6.8
- Owner set to joedolson
- Status changed from new to accepted
It's relatively late in 6.8 to be milestoning this, but I think that the intersection of risk to benefit here justifies it.
@audrasjb commented on PR #8493:
7 weeks ago
#5
The patch tests well on my side. This new ticket is good to ship during 6.8 beta cycle.
@mukesh27 commented on PR #8493:
7 weeks ago
#7
@sabernhardt commented on PR #8493:
7 weeks ago
#8
The Dashboard intentionally has the shortcut link above the admin toolbar (that's why it has a negative margin of 7 pixels minus the toolbar height).
The bug is when the block editor clips the shortcut link(s). If another screen clips it, we could _consider_ changing the negative margins to 7px
at any screen width instead.
#9
@
7 weeks ago
Related Gutenberg issue: https://github.com/WordPress/gutenberg/issues/55931
#10
@
6 weeks ago
- Keywords commit added
I think this is good to go; the issue on the dashboard is quite different, as there's no clipping.
@sabernhardt commented on PR #8493:
5 weeks ago
#12
Committed in r59992
Changes the
top
value to a positive 7 pixels at the(max-width: 782px)
breakpoint within the block editor. With a negative value, it was mostly hidden.I edited
common.css
instead of theedit-post
styles because I did not want to redefine the negative value at(min-width: 782px)
.Before patch, with admin menu showing
With patch, with admin menu showing
Before patch, in Fullscreen mode
With patch, in Fullscreen mode
Trac 63084