-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
Fix back button tooltip #51725
Fix back button tooltip #51725
Conversation
Size Change: -3 B (0%) Total Size: 1.42 MB
ℹ️ View Unchanged
|
Flaky tests detected in 07eca49044ca377a67e5f9ba8fa445c7e6c2a57b. 🔍 Workflow run URL: https://github.com/WordPress/gutenberg/actions/runs/5331419262
|
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.
It works for me.
07eca49
to
02070ff
Compare
This PR introduces a regression, as the toottip was made visible for accessibility reasons in #49657 / #49659 Icon buttons must always visually expose their accessible name. Tooltips have this specific purpose. The fact that when clicking with the mouse the tooltip looks somehow 'disconnected' from the button is because there's no visible focus style. When navigating the menu and a new level is displayed, the back button receives focus. Since it is focused, it is expected that it shows a focus style and a tooltip. Instead, this expected behavior is altered because of visual reasons:
Probbly, the best solution would be to not set focus on the Back button when navigating, in the first place. Focus should always go to a meaningful place but not unexpectedly alter other aspects of the UI. I see there's a broader ongoing discussion now on #51762 and a better solution could be implemented byt not setting focus on the back button, see #51762 (comment) I'd encourage to opt for that approach. Lastly, I'd like to kindly as to mark an issue or PR with the accessibility label when it touces important accessibility features like focus, tooltips, and the like. Thanks. |
What?
Fix an issue where when navigating the site view, the a "Back" tooltip sits around the back button despite the mouse being nowhere near:
Why?
To add consistency with Global Styles:
Here's after:
Testing Instructions
Test navigating the site view and observe that tooltips lingering.