Firefox-UI-Fix/src/utils/_option.scss
2022-01-03 16:27:32 +09:00

33 lines
1 KiB
SCSS

$tabProton: "userChrome.tab.proton";
$tabConnectToWindow: "userChrome.tab.connect_to_window";
$tabBoxShadow: "userChrome.tab.box_shadow";
$tabBottomRoundedCorner: "userChrome.tab.bottom_rounded_corner"
$tabPhotonLikeContextLine: "userChrome.tab.photon_like_contextline";
$compatibilityTheme: "userChrome.compatibility.theme";
$compatibilityOS: "userChrome.compatibility.os";
$builtInContrast: "userChrome.theme.built_in_contrast";
$systemDefault: "userChrome.theme.system_default";
$fullyColor: "userChrome.theme.fully_color";
$darkColor: "userChrome.theme.fully_dark";
$protonChrome: "userChrome.theme.proton_chrome";
$cursor: "userChrome.decoration.cursor";
$fieldBorder: "userChrome.decoration.field_border";
$downloadPanel: "userChrome.decoration.download_panel";
$animate: "userChrome.decoration.animate";
$tabMultiSelected: "userChrome.tab.multi_selected";
@mixin Option($optionName) {
@supports -moz-bool-pref("#{$optionName}") {
@content;
}
}
@mixin NotOption($optionName) {
@supports not -moz-bool-pref("#{$optionName}") {
@content;
}
}