Re: [csswg-drafts] [css-pseudo] Custom properties on :root (#6641)

Found two breakages:

Kotlin Docs: https://kotlinlang.org/docs/whatsnew1820.html.
```css
:root {
  --wh-color-primary-t-fog: ...;
}

...

.article ::selection {
  background-color: rgba(107,87,255,.2);
  background-color: var(--wh-color-primary-t-fog)
}
```

Lark Docs (requires registration): http://www.larksuite.com/space/home.

```css
::root {
  --primary-pri-500-raw: ...;
} 

...

::selection {
  background: rgba(var(--primary-pri-500-raw),.34)
}
```


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


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

Received on Thursday, 20 April 2023 03:18:10 UTC