- From: Emilio Cobos Álvarez via GitHub <sysbot+gh@w3.org>
- Date: Tue, 17 Oct 2023 14:23:09 +0000
- To: public-css-archive@w3.org
The argument for keeping it could be performance, mostly. E.g., if you do something like:
```css
.foo {
--bar: baz;
@media (a) {
--bar: something-else;
}
--baz: ...;
@media (b) {
--baz: something-else;
}
// Repeat x100 etc
}
```
If we generate a bunch of split rules for anything after an `@media` rule, that can cause useless overhead, which is also surprising.
--
GitHub Notification of comment by emilio
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/8738#issuecomment-1766525743 using your GitHub account
--
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Tuesday, 17 October 2023 14:23:11 UTC