Test style for debugging conversion to userscript

It was brought to my attention that some style stopped working as userscript…

Per 09-02-2024. Zie de nieuwste versie.

/* ==UserStyle==
@name           Test style for debugging conversion to userscript
@namespace      github.com/openstyles/stylus
@version        4.0.0
@license        CC0
@description    It was brought to my attention that some style stopped working as userscript…
==/UserStyle== */

/*
Global part, no nesting but slightly insane selector:
*/
*:not(#u#n#r#o#u#n#d):not(input[type="radio" i]),
*:not(#u#n#r#o#u#n#d):not(input[type="radio" i])::before,
*:not(#u#n#r#o#u#n#d):not(input[type="radio" i])::after {
  color: green;
}

@-moz-document domain("greasyfork.org") {
/*
Local part with nesting:
*/
 :root {
  & p { color: red; }
 }
}