Re: [w3c/webcomponents] Provide a lightweight mechanism to add styles to a custom element (#468)

@domenic So the `*` selector in 

```js
customElements.define("my-button", MyButton, { styles: `
  * { display: inline-block; }
  *[disabled] { color: gray; }
`);
```

only selects the custom element that the style is defined on?

---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/webcomponents/issues/468#issuecomment-216063972

Received on Sunday, 1 May 2016 18:54:41 UTC