-
Notifications
You must be signed in to change notification settings - Fork 1
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
Group checkboxes in dropdowns #2207
Conversation
080b49c
to
46073af
Compare
src/app/theme.ts
Outdated
@@ -9,6 +9,18 @@ export interface ColorSet { | |||
darkest?: string; | |||
} | |||
|
|||
export const hiddenButAccessible = ` |
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.
Nitpicking but visuallyHidden
could be a good name for this
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.
There's a visuallyHidden
in Dropdown (and a contrasting visuallyShown
). Since it uses height/width 0
, it's also hidden from screenreaders. Probably need to rename it to fullyHidden
or something. I'm not entirely clear on what the point of it is, why it's not display: none
.
@RoyEJohnson Could you please resolve the conflicts on this PR |
80e8588
to
c6d66bb
Compare
69cbcb1
to
0ccd721
Compare
DISCO-46