Disallow standard properties inside :root
rules.
禁止在 :root
中出现标准属性。
:root { color: #333 }
/** ↑ ↑
* This selector and these types of standard properties */
This rule ignores $sass
and @less
variables.
该规则忽略 $sass
和 @less
变量。
true
The following patterns are considered warnings:
以下模式被认为是个警告:
:root { color: pink; }
a, :root { top: 0; }
The following patterns are not considered warnings:
以下模式正常:
:root { --foo: 0; }
a, :root { --foo: 0; }