mirror of
https://github.com/black7375/Firefox-UI-Fix.git
synced 2026-01-30 12:20:36 -08:00
Add: Option - userChrome.compatibility.os.linux_non_native_titlebar_button
This commit is contained in:
parent
7e38138ef8
commit
ed43d04b8e
3 changed files with 32 additions and 26 deletions
|
|
@ -121,19 +121,21 @@
|
|||
}
|
||||
|
||||
/*= Linux - Titlebar button at lwtheme =====================================*/
|
||||
.titlebar-button:-moz-lwtheme {
|
||||
appearance: auto !important;
|
||||
}
|
||||
.titlebar-min:-moz-lwtheme,
|
||||
.titlebar-max:-moz-lwtheme,
|
||||
.titlebar-restore:-moz-lwtheme,
|
||||
.titlebar-close:-moz-lwtheme {
|
||||
list-style-image: none !important;
|
||||
}
|
||||
.titlebar-button:-moz-lwtheme:hover,
|
||||
.titlebar-button:-moz-lwtheme:hover:active {
|
||||
background-color: unset !important;
|
||||
color: unset !important;
|
||||
@include NotOption("userChrome.compatiblity.os.linux_non_native_titlebar_button") {
|
||||
.titlebar-button:-moz-lwtheme {
|
||||
appearance: auto !important;
|
||||
}
|
||||
.titlebar-min:-moz-lwtheme,
|
||||
.titlebar-max:-moz-lwtheme,
|
||||
.titlebar-restore:-moz-lwtheme,
|
||||
.titlebar-close:-moz-lwtheme {
|
||||
list-style-image: none !important;
|
||||
}
|
||||
.titlebar-button:-moz-lwtheme:hover,
|
||||
.titlebar-button:-moz-lwtheme:hover:active {
|
||||
background-color: unset !important;
|
||||
color: unset !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
2
user.js
2
user.js
|
|
@ -59,6 +59,8 @@ user_pref("userChrome.tab.bottom_rounded_corner", true);
|
|||
// user_pref("userChrome.compatibility.navbar_top_border", true);
|
||||
// user_pref("userChrome.compatibility.dynamic_separator", true); // Need dynamic_seperator
|
||||
|
||||
// user_pref("userChrome.compatiblity.os.linux_non_native_titlebar_button", true);
|
||||
|
||||
// == Theme Custom Settings ====================================================
|
||||
// -- User Chrome --------------------------------------------------------------
|
||||
// user_pref("userChrome.decoration.disable_panel_animate", true);
|
||||
|
|
|
|||
|
|
@ -273,21 +273,23 @@
|
|||
}
|
||||
|
||||
/*= Linux - Titlebar button at lwtheme =====================================*/
|
||||
.titlebar-button:-moz-lwtheme {
|
||||
appearance: auto !important;
|
||||
}
|
||||
@supports not -moz-bool-pref("userChrome.compatiblity.os.linux_non_native_titlebar_button") {
|
||||
.titlebar-button:-moz-lwtheme {
|
||||
appearance: auto !important;
|
||||
}
|
||||
|
||||
.titlebar-min:-moz-lwtheme,
|
||||
.titlebar-max:-moz-lwtheme,
|
||||
.titlebar-restore:-moz-lwtheme,
|
||||
.titlebar-close:-moz-lwtheme {
|
||||
list-style-image: none !important;
|
||||
}
|
||||
.titlebar-min:-moz-lwtheme,
|
||||
.titlebar-max:-moz-lwtheme,
|
||||
.titlebar-restore:-moz-lwtheme,
|
||||
.titlebar-close:-moz-lwtheme {
|
||||
list-style-image: none !important;
|
||||
}
|
||||
|
||||
.titlebar-button:-moz-lwtheme:hover,
|
||||
.titlebar-button:-moz-lwtheme:hover:active {
|
||||
background-color: unset !important;
|
||||
color: unset !important;
|
||||
.titlebar-button:-moz-lwtheme:hover,
|
||||
.titlebar-button:-moz-lwtheme:hover:active {
|
||||
background-color: unset !important;
|
||||
color: unset !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
/*= Linux - Light System Default Theme's Selected Tab ========================*/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue