It was brought to my attention that some style stopped working as userscript…
Από την
/* ==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; }
}
}