Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

lit styles when render root is lightdom

So I have the following styles:

  static styles = [css, icons];

Then I set the renderRoot to lightdom:

protected createRenderRoot(): Element | ShadowRoot {
    return this;
}

With this the style is not applied and I have to manually add:

render() {
  return html`
 <style>
       ${css.cssText}
       ${icons.cssText}
 </style>

If I remove the createRenderRoot, the styles work without setting the <style> tag in the render function.

Can anyone tell me what I've done wrong? Or why this is happening?

like image 215
Marc Rasmussen Avatar asked May 04 '26 18:05

Marc Rasmussen


1 Answers

The default behavior of lit's createRenderRoot is to create a shadow root and add the styles set in the static styles property to said shadow root.

So, when you override createRenderRoot to use this as the root (ergo, not use shadow DOM at all) you are also removing the code that would add the styles too.

The main reason for this is that styles can only be scoped if they're inside shadow DOM. Adding them to a custom element not using shadow DOM would also make those styles apply to any other node that matched the CSS selectors used.

This basically leaves you with two options:

  1. Keep using only light DOM and move your styles to global stylesheets in a CSS file.
  2. Use shadow DOM

More info: https://lit.dev/docs/components/shadow-dom/#implementing-createrenderroot

like image 193
Alan Dávalos Avatar answered May 06 '26 09:05

Alan Dávalos



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!