mirror of
https://github.com/black7375/Firefox-UI-Fix.git
synced 2026-01-30 04:10:32 -08:00
Add: Option - system default theme
This commit is contained in:
parent
37643c447b
commit
aac7d92899
3 changed files with 7 additions and 3 deletions
|
|
@ -16,7 +16,9 @@
|
|||
}
|
||||
|
||||
/** System Default Theme ******************************************************/
|
||||
@import "theme/system_default_theme";
|
||||
@include Option($systemDefault) {
|
||||
@import "theme/system_default_theme";
|
||||
}
|
||||
|
||||
/** Fully Theme Mode **********************************************************/
|
||||
/* Default Themes
|
||||
|
|
|
|||
|
|
@ -1,9 +1,10 @@
|
|||
$tabProton: "userChrome.tab.proton";
|
||||
|
||||
$builtInContrast: "userChrome.theme.builtInContrast";
|
||||
$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";
|
||||
|
||||
@mixin Option($optionName) {
|
||||
@supports -moz-bool-pref("#{$optionName}") {
|
||||
|
|
|
|||
3
user.js
3
user.js
|
|
@ -36,10 +36,11 @@ user_pref("userChrome.panel.proton", true); // Original, Proton
|
|||
// user_pref("userChrome.panel.photon", true); // Photon
|
||||
|
||||
// == Theme Default Settings ===================================================
|
||||
user_pref("userChrome.theme.builtInContrast", true);
|
||||
user_pref("userChrome.theme.built_in_contrast", true);
|
||||
user_pref("userChrome.theme.compatibility", true);
|
||||
user_pref("userChrome.theme.compatibility.theme", true);
|
||||
user_pref("userChrome.theme.compatibility.os", true);
|
||||
user_pref("userChrome.theme.system_default", true);
|
||||
|
||||
// ** Useful Options ***********************************************************
|
||||
// Integrated calculator at urlbar
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue