Inject Stylus into shadowRoots

inject styles of stylus-addon in shadowRoot

Autor
hdyzen
Denně instalací
0
Celkem instalací
0
Hodnocení
0 0 0
Verze
1.1
Vytvořeno
29. 06. 2025
Aktualizováno
25. 07. 2025
Size
1,6 KB
Licence
GPL-3.0-only
Spustit na
všech stránkách

Inject Stylus into shadowRoots

This userscript injects styles from the Stylus extension directly into shadowRoot instances, allowing you to style the content of web components.


How to style content inside a shadowRoot

:host

To apply styles only to the content within a shadowRoot, use the :host pseudo-selector in your Stylus styles. :host refers to the element that contains the shadowRoot (the shadow host).

/* All elements */
* {
  border: 1px violet;
}
/* Only elements inside the shadowRoot */
:host * {
  border: 1px solid mediumpurple;
}

Similar forms:

长期地址
遇到问题?请前往 GitHub 提 Issues。