mirror of
https://github.com/black7375/Firefox-UI-Fix.git
synced 2026-01-30 12:20:36 -08:00
20 lines
557 B
SCSS
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;
|
|
}
|
|
}
|