mirror of
https://github.com/black7375/Firefox-UI-Fix.git
synced 2026-01-11 03:32:48 -08:00
33 lines
1 KiB
SCSS
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;
|
|
}
|
|
}
|