- From: Joey Arhar via GitHub <sysbot+gh@w3.org>
- Date: Thu, 24 Oct 2024 15:03:45 +0000
- To: public-css-archive@w3.org
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 10%, transparent);
color: inherit;
}
select:enabled:hover {
background-color: color-mix(in lab, currentColor 20%, transparent);
}
select:enabled:active {
background-color: color-mix(in lab, currentColor 30%, transparent);
}
::picker(select) {
border: 1px solid rgba(0, 0, 0, 0.15);
background-color: Field;
}
```
--
GitHub Notification of comment by josepharhar
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/10909#issuecomment-2435550602 using your GitHub account
--
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Thursday, 24 October 2024 15:03:47 UTC