Re: [csswg-drafts] [css-nesting] Problems with indiscriminately wrapping all parent selectors with `:is()` (#9492)

I think the issue mentioned on the call (and some people didn't really understand) is that:
```css
article, .article { color: red; 
    & * { color: green; }
}
```
maps to
```css
article, .article { color: red; }
:is(article, .article) * {}
```
which has a different specificity from
```css
article, .article { color: red }
article *, .article * { color: green }
```
and I would have expected the latter one, not the first one

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


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

Received on Wednesday, 25 October 2023 16:55:09 UTC