Test style for debugging conversion to userscript

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

目前為 2024-02-09 提交的版本,檢視 最新版本

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

/*
Global part, with layer:
*/
@layer i_miss_true_user_origin_level_stylesheets {
  :where(input, button, select) {
    border-width: 1px;
  }
}

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