-
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
Change font-size-picker markup to use select #16148
Conversation
@tellthemachines thanks for working on this! From an accessibility perspective, everything looks good to me 👍
As explained in related issues, it's important to consider the combination of the legend text and the various input labels. In this specific case, removing "font size" from the labels avoids redundant (and a bit pointless) information to be announced to users, as the group is already named "font size".
Yep, implementations differ and actually the most correct behavior is the Firefox + NVDA one 🙂 The group name should be announced only when entering and exiting the group. Note: the fieldset legend styling should be quickly tested with Internet Explorer 11, as I seem to recall it was a bit difficult to style in that browser. The build fails, not sure why. |
Thanks @afercia for the feedback! I changed the selectors on the e2e tests and now they are passing. |
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.
This looks good to me. I had a few minor comments, but nothing major. Would be good to tidy up the comment above that import, but the other two comments are more subjective.
return ( | ||
<div className={ classnames( 'components-base-control', className ) }> | ||
<div className="components-base-control__field"> | ||
{ label && id && <label className="components-base-control__label" htmlFor={ id }>{ label }</label> } | ||
{ label && id && <label className={ classnames( 'components-base-control__label', hideLabelFromVision && 'screen-reader-text' ) } htmlFor={ id }>{ label }</label> } |
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.
This line is getting quite busy, it would be great to break it up onto multiple lines. The call to classnames could also be written like this, which is a pattern used more commonly across the codebase:
{ classnames( 'components-base-control__label', {
'screen-reader-text': hideLabelFromVision,
} ) }
If the decision is to use a select box then this works. I do wonder what the boundaries are on us styling that though, that's perhaps something to explore going forward. @afercia would you be able to advise on where those boundaries are? |
I actually looked into this briefly a couple weeks ago. This seems to be mosly up to date: https://css-tricks.com/dropdown-default-styling/ In general: Webkit browsers, and Firefox on Mac do not allow much styling. IE, Firefox, and Opera allow you to do a bit of minimal styling on Windows and Linux. (But I imagine that'll change a bit once the next version of IE adopts webkit.) Also, iOS does not allow you to style select fields. I do not have an Android phone handy at the moment, but I do not believe they support styling them either. In short: if we move forward with a select box here, we shouldn't count on styling it. |
While I have never used nor tested it, this select component from Deque's patter library seems to be fully accessible while also allowing for custom styling: https://pattern-library.dequelabs.com/components/selects. Could something like that work for us? |
That looks like an excellent implementation. Still not native though. Off the top of my head, I can spot a couple issues at a first glance:
Maybe @dboudreau can help and give us some updated feedback or point us to someone at deque (when you have a chance, that would be greatly appreciated!). Background: evaluating to use the deque select component in WordPress. |
A custom select component is worth exploring but out of scope for this issue. The decision in #15319 (comment) was to use a native |
Description
Fixes #15319
Changed font-size-picker markup to use fieldset with legend as wrapper and replaced visual dropdown with select.
How has this been tested?
Tested locally on Chrome and on Safari with VoiceOver. Confirmed interaction with controls works as expected. Also tested on Windows with Firefox + NVDA; Noted NVDA doesn't read out the "Font size" legend before each field but only when entering the fieldset; VoiceOver reads it out before each field.
Wondering if it might be worth adding a snapshot and/or an e2e test for this.
Screenshots
Types of changes
Bug fix (non-breaking change which fixes an issue)
font-size-picker
component.base-control
andselect-control
components in order to allow control label to be visually hidden.Checklist: