Re: [csswg-drafts] Mixing :is() (or equivalent) with pseudo-elements (#9702)

@yisibl That should already be doable as

```css
input[type=range] {
  &::-moz-range-track, &::-webkit-slider-runnable-track {
    background: #ddd;
  }
}
```

Or #7346 proposes

```css
input[type=range] :> :is(-moz-range-track, -webkit-slider-runnable-track) {
    background: #ddd;
}
```

-- 
GitHub Notification of comment by Loirooriol
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/9702#issuecomment-1884157968 using your GitHub account


-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config

Received on Wednesday, 10 January 2024 04:04:57 UTC