Re: [csswg-drafts] [css-nesting-1] Allow conditional nested rules to adopt context (#6483)

request for `agenda+` because we need help resolving some syntax:

**Current**
```css
.foo {
  display: grid;

  @media (orientation: landscape) {
    & {
      grid-auto-flow: column;
    }
  }
}
```

**Proposed**
```css
.foo {
  display: grid;

  @media (orientation: landscape) {
    grid-auto-flow: column;
  }
}
```

It's an exception to the unambiguous `&` pattern established by the nesting 1 spec but also very popular syntactic sugar.

-- 
GitHub Notification of comment by argyleink
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/pull/6483#issuecomment-891359090 using your GitHub account


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

Received on Monday, 2 August 2021 21:53:51 UTC