Firefox-UI-Fix/src/utils/_option.scss
2021-12-28 16:13:01 +09:00

20 lines
557 B
SCSS

$tabProton: "userChrome.tab.proton";
$builtInContrast: "userChrome.theme.built_in_contrast";
$compatibility: "userChrome.theme.compatibility";
$compatibilityTheme: "userChrome.theme.compatibility.theme";
$compatibilityOS: "userChrome.theme.compatibility.os";
$systemDefault: "userChrome.theme.system_default";
$fullyColor: "userChrome.theme.fully_color";
@mixin Option($optionName) {
@supports -moz-bool-pref("#{$optionName}") {
@content;
}
}
@mixin NotOption($optionName) {
@supports not -moz-bool-pref("#{$optionName}") {
@content;
}
}