Joey Arhar
Joey Arhar
Here's what i hear on the existing `` on android talkback with this html: ```html red blue ``` When no items are selected: "multiselectable. none selected. zero selected. listbox." When...
> Does this make sense as the default state though? Yes, I think so
Proposed resolution: Select multiple should support rendering with a button and popup in addition to being rendered as an in-page listbox. Controlling which mode is used should be figured out...
I realize now that my proposed resolution doesn't really answer the question in the OP. I think that the button should always be one button and not have nested buttons...
Proposed resolution: Select multiple should support rendering with a button and popup in addition to being rendered as an in-page listbox. The button should not be a text input and...
Proposed resolution: use tim's proposed colors for base appearance select, with a system color for the popover's background color: ```css select { border: 1px solid currentColor; background-color: color-mix(in lab, currentColor...
@nt1m what do you think we should do? Use transparency and currentColor for the in-page part and system colors for the picker? Or system colors for everything? Or something else?
Thanks! How do these colors look? I made ::picker match the colors used for dialog and popover. ```css /* Rules on select won't apply when select has a child button...
I talked to @nt1m about colors for disabled and here is an option: ```css select:disabled { color: color-mix(in srgb, currentColor 50%, transparent); } ```
We also need colors for options. Similar to buttons, we could have these rules: ```css select option:enabled:hover { background-color: color-mix(in lab, currentColor 20%, transparent); } select option:enabled:active { background-color: color-mix(in...