- From: Tab Atkins Jr. via GitHub <sysbot+gh@w3.org>
- Date: Fri, 13 Jan 2023 23:21:03 +0000
- To: public-css-archive@w3.org
You're right, it does change. Specifically,
```css
.a .b , .c .d {
& + & { color: blue; }
}
```
becomes
```css
.a .b + .a .b, .a .b + .c .d, .c .d + .a .b, .c .d + .c .d {
color: blue;
}
```
in Sass.
--
GitHub Notification of comment by tabatkins
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/8310#issuecomment-1382579078 using your GitHub account
--
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Friday, 13 January 2023 23:21:04 UTC