mirror of
https://github.com/black7375/Firefox-UI-Fix.git
synced 2025-12-05 18:20:44 -08:00
Fix: Tabbar - Hidden tabbar #1029
TODO: [tabsinitlebar] -> [customtitlebar] migration
This commit is contained in:
parent
f4ed175838
commit
a42a815892
3 changed files with 277 additions and 163 deletions
294
css/leptonChrome.css
generated
294
css/leptonChrome.css
generated
|
|
@ -5530,21 +5530,26 @@
|
||||||
:root[inFullscreen]:not([macOSNativeFullscreen]) #menubar-items {
|
:root[inFullscreen]:not([macOSNativeFullscreen]) #menubar-items {
|
||||||
visibility: collapse !important;
|
visibility: collapse !important;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar,
|
||||||
:root[tabsintitlebar] #toolbar-menubar,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar,
|
||||||
:root[tabsintitlebar] #TabsToolbar {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar {
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar:-moz-window-inactive,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar:-moz-window-inactive,
|
||||||
:root[tabsintitlebar] #toolbar-menubar:-moz-window-inactive,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar:-moz-window-inactive,
|
||||||
:root[tabsintitlebar] #TabsToolbar:-moz-window-inactive {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar:-moz-window-inactive {
|
||||||
opacity: 1 !important;
|
opacity: 1 !important;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar:-moz-window-inactive .titlebar-buttonbox,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar:-moz-window-inactive .titlebar-buttonbox,
|
||||||
:root[tabsintitlebar] #toolbar-menubar:-moz-window-inactive .titlebar-buttonbox,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar:-moz-window-inactive .titlebar-buttonbox,
|
||||||
:root[tabsintitlebar] #TabsToolbar:-moz-window-inactive .titlebar-buttonbox {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar:-moz-window-inactive .titlebar-buttonbox {
|
||||||
opacity: var(--inactive-titlebar-opacity);
|
opacity: var(--inactive-titlebar-opacity);
|
||||||
}
|
}
|
||||||
|
@supports not -moz-bool-pref("userChrome.tabbar.on_bottom") {
|
||||||
|
:root:is([tabsintitlebar], [customtitlebar]) #nav-bar > .titlebar-buttonbox-container {
|
||||||
|
display: flex !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
/* At Activated Menubar */
|
/* At Activated Menubar */
|
||||||
:root:not([chromehidden~="menubar"], [sizemode="fullscreen"])
|
:root:not([chromehidden~="menubar"], [sizemode="fullscreen"])
|
||||||
|
|
@ -5689,21 +5694,26 @@
|
||||||
:root[inFullscreen]:not([macOSNativeFullscreen]) #menubar-items {
|
:root[inFullscreen]:not([macOSNativeFullscreen]) #menubar-items {
|
||||||
visibility: collapse !important;
|
visibility: collapse !important;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar,
|
||||||
:root[tabsintitlebar] #toolbar-menubar,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar,
|
||||||
:root[tabsintitlebar] #TabsToolbar {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar {
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar:-moz-window-inactive,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar:-moz-window-inactive,
|
||||||
:root[tabsintitlebar] #toolbar-menubar:-moz-window-inactive,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar:-moz-window-inactive,
|
||||||
:root[tabsintitlebar] #TabsToolbar:-moz-window-inactive {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar:-moz-window-inactive {
|
||||||
opacity: 1 !important;
|
opacity: 1 !important;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar:-moz-window-inactive .titlebar-buttonbox,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar:-moz-window-inactive .titlebar-buttonbox,
|
||||||
:root[tabsintitlebar] #toolbar-menubar:-moz-window-inactive .titlebar-buttonbox,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar:-moz-window-inactive .titlebar-buttonbox,
|
||||||
:root[tabsintitlebar] #TabsToolbar:-moz-window-inactive .titlebar-buttonbox {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar:-moz-window-inactive .titlebar-buttonbox {
|
||||||
opacity: var(--inactive-titlebar-opacity);
|
opacity: var(--inactive-titlebar-opacity);
|
||||||
}
|
}
|
||||||
|
@supports not -moz-bool-pref("userChrome.tabbar.on_bottom") {
|
||||||
|
:root:is([tabsintitlebar], [customtitlebar]) #nav-bar > .titlebar-buttonbox-container {
|
||||||
|
display: flex !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
/* At Activated Menubar */
|
/* At Activated Menubar */
|
||||||
:root:not([chromehidden~="menubar"], [sizemode="fullscreen"])
|
:root:not([chromehidden~="menubar"], [sizemode="fullscreen"])
|
||||||
|
|
@ -5845,21 +5855,26 @@
|
||||||
:root[inFullscreen]:not([macOSNativeFullscreen]) #menubar-items {
|
:root[inFullscreen]:not([macOSNativeFullscreen]) #menubar-items {
|
||||||
visibility: collapse !important;
|
visibility: collapse !important;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar,
|
||||||
:root[tabsintitlebar] #toolbar-menubar,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar,
|
||||||
:root[tabsintitlebar] #TabsToolbar {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar {
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar:-moz-window-inactive,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar:-moz-window-inactive,
|
||||||
:root[tabsintitlebar] #toolbar-menubar:-moz-window-inactive,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar:-moz-window-inactive,
|
||||||
:root[tabsintitlebar] #TabsToolbar:-moz-window-inactive {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar:-moz-window-inactive {
|
||||||
opacity: 1 !important;
|
opacity: 1 !important;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar:-moz-window-inactive .titlebar-buttonbox,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar:-moz-window-inactive .titlebar-buttonbox,
|
||||||
:root[tabsintitlebar] #toolbar-menubar:-moz-window-inactive .titlebar-buttonbox,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar:-moz-window-inactive .titlebar-buttonbox,
|
||||||
:root[tabsintitlebar] #TabsToolbar:-moz-window-inactive .titlebar-buttonbox {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar:-moz-window-inactive .titlebar-buttonbox {
|
||||||
opacity: var(--inactive-titlebar-opacity);
|
opacity: var(--inactive-titlebar-opacity);
|
||||||
}
|
}
|
||||||
|
@supports not -moz-bool-pref("userChrome.tabbar.on_bottom") {
|
||||||
|
:root:is([tabsintitlebar], [customtitlebar]) #nav-bar > .titlebar-buttonbox-container {
|
||||||
|
display: flex !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
/* At Activated Menubar */
|
/* At Activated Menubar */
|
||||||
:root:not([chromehidden~="menubar"], [sizemode="fullscreen"])
|
:root:not([chromehidden~="menubar"], [sizemode="fullscreen"])
|
||||||
|
|
@ -6019,21 +6034,26 @@
|
||||||
:root[inFullscreen]:not([macOSNativeFullscreen]) #menubar-items {
|
:root[inFullscreen]:not([macOSNativeFullscreen]) #menubar-items {
|
||||||
visibility: collapse !important;
|
visibility: collapse !important;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar,
|
||||||
:root[tabsintitlebar] #toolbar-menubar,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar,
|
||||||
:root[tabsintitlebar] #TabsToolbar {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar {
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar:-moz-window-inactive,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar:-moz-window-inactive,
|
||||||
:root[tabsintitlebar] #toolbar-menubar:-moz-window-inactive,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar:-moz-window-inactive,
|
||||||
:root[tabsintitlebar] #TabsToolbar:-moz-window-inactive {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar:-moz-window-inactive {
|
||||||
opacity: 1 !important;
|
opacity: 1 !important;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar:-moz-window-inactive .titlebar-buttonbox,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar:-moz-window-inactive .titlebar-buttonbox,
|
||||||
:root[tabsintitlebar] #toolbar-menubar:-moz-window-inactive .titlebar-buttonbox,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar:-moz-window-inactive .titlebar-buttonbox,
|
||||||
:root[tabsintitlebar] #TabsToolbar:-moz-window-inactive .titlebar-buttonbox {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar:-moz-window-inactive .titlebar-buttonbox {
|
||||||
opacity: var(--inactive-titlebar-opacity);
|
opacity: var(--inactive-titlebar-opacity);
|
||||||
}
|
}
|
||||||
|
@supports not -moz-bool-pref("userChrome.tabbar.on_bottom") {
|
||||||
|
:root:is([tabsintitlebar], [customtitlebar]) #nav-bar > .titlebar-buttonbox-container {
|
||||||
|
display: flex !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media screen and (max-width: 1100px) {
|
@media screen and (max-width: 1100px) {
|
||||||
|
|
@ -6182,21 +6202,26 @@
|
||||||
:root[inFullscreen]:not([macOSNativeFullscreen]) #menubar-items {
|
:root[inFullscreen]:not([macOSNativeFullscreen]) #menubar-items {
|
||||||
visibility: collapse !important;
|
visibility: collapse !important;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar,
|
||||||
:root[tabsintitlebar] #toolbar-menubar,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar,
|
||||||
:root[tabsintitlebar] #TabsToolbar {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar {
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar:-moz-window-inactive,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar:-moz-window-inactive,
|
||||||
:root[tabsintitlebar] #toolbar-menubar:-moz-window-inactive,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar:-moz-window-inactive,
|
||||||
:root[tabsintitlebar] #TabsToolbar:-moz-window-inactive {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar:-moz-window-inactive {
|
||||||
opacity: 1 !important;
|
opacity: 1 !important;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar:-moz-window-inactive .titlebar-buttonbox,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar:-moz-window-inactive .titlebar-buttonbox,
|
||||||
:root[tabsintitlebar] #toolbar-menubar:-moz-window-inactive .titlebar-buttonbox,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar:-moz-window-inactive .titlebar-buttonbox,
|
||||||
:root[tabsintitlebar] #TabsToolbar:-moz-window-inactive .titlebar-buttonbox {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar:-moz-window-inactive .titlebar-buttonbox {
|
||||||
opacity: var(--inactive-titlebar-opacity);
|
opacity: var(--inactive-titlebar-opacity);
|
||||||
}
|
}
|
||||||
|
@supports not -moz-bool-pref("userChrome.tabbar.on_bottom") {
|
||||||
|
:root:is([tabsintitlebar], [customtitlebar]) #nav-bar > .titlebar-buttonbox-container {
|
||||||
|
display: flex !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
/* At Activated Menubar */
|
/* At Activated Menubar */
|
||||||
:root:not([chromehidden~="menubar"], [sizemode="fullscreen"])
|
:root:not([chromehidden~="menubar"], [sizemode="fullscreen"])
|
||||||
|
|
@ -6340,21 +6365,26 @@
|
||||||
:root[inFullscreen]:not([macOSNativeFullscreen]) #menubar-items {
|
:root[inFullscreen]:not([macOSNativeFullscreen]) #menubar-items {
|
||||||
visibility: collapse !important;
|
visibility: collapse !important;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar,
|
||||||
:root[tabsintitlebar] #toolbar-menubar,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar,
|
||||||
:root[tabsintitlebar] #TabsToolbar {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar {
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar:-moz-window-inactive,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar:-moz-window-inactive,
|
||||||
:root[tabsintitlebar] #toolbar-menubar:-moz-window-inactive,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar:-moz-window-inactive,
|
||||||
:root[tabsintitlebar] #TabsToolbar:-moz-window-inactive {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar:-moz-window-inactive {
|
||||||
opacity: 1 !important;
|
opacity: 1 !important;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar:-moz-window-inactive .titlebar-buttonbox,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar:-moz-window-inactive .titlebar-buttonbox,
|
||||||
:root[tabsintitlebar] #toolbar-menubar:-moz-window-inactive .titlebar-buttonbox,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar:-moz-window-inactive .titlebar-buttonbox,
|
||||||
:root[tabsintitlebar] #TabsToolbar:-moz-window-inactive .titlebar-buttonbox {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar:-moz-window-inactive .titlebar-buttonbox {
|
||||||
opacity: var(--inactive-titlebar-opacity);
|
opacity: var(--inactive-titlebar-opacity);
|
||||||
}
|
}
|
||||||
|
@supports not -moz-bool-pref("userChrome.tabbar.on_bottom") {
|
||||||
|
:root:is([tabsintitlebar], [customtitlebar]) #nav-bar > .titlebar-buttonbox-container {
|
||||||
|
display: flex !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
/* At Activated Menubar */
|
/* At Activated Menubar */
|
||||||
:root:not([chromehidden~="menubar"], [sizemode="fullscreen"])
|
:root:not([chromehidden~="menubar"], [sizemode="fullscreen"])
|
||||||
|
|
@ -19873,22 +19903,32 @@
|
||||||
:root[inFullscreen]:not([macOSNativeFullscreen]) #menubar-items {
|
:root[inFullscreen]:not([macOSNativeFullscreen]) #menubar-items {
|
||||||
visibility: collapse !important;
|
visibility: collapse !important;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar,
|
||||||
:root[tabsintitlebar] #toolbar-menubar,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar,
|
||||||
:root[tabsintitlebar] #TabsToolbar {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar {
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar:-moz-window-inactive,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar:-moz-window-inactive,
|
||||||
:root[tabsintitlebar] #toolbar-menubar:-moz-window-inactive,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar:-moz-window-inactive,
|
||||||
:root[tabsintitlebar] #TabsToolbar:-moz-window-inactive {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar:-moz-window-inactive {
|
||||||
opacity: 1 !important;
|
opacity: 1 !important;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar:-moz-window-inactive .titlebar-buttonbox,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar:-moz-window-inactive .titlebar-buttonbox,
|
||||||
:root[tabsintitlebar] #toolbar-menubar:-moz-window-inactive .titlebar-buttonbox,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar:-moz-window-inactive .titlebar-buttonbox,
|
||||||
:root[tabsintitlebar] #TabsToolbar:-moz-window-inactive .titlebar-buttonbox {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar:-moz-window-inactive .titlebar-buttonbox {
|
||||||
opacity: var(--inactive-titlebar-opacity);
|
opacity: var(--inactive-titlebar-opacity);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@media (-moz-bool-pref: "userChrome.tabbar.on_bottom") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (not (-moz-bool-pref: "userChrome.tabbar.one_liner")) and (-moz-bool-pref: "userChrome.tabbar.on_bottom") and (-moz-bool-pref: "userChrome.hidden.tabbar") and (not (-moz-bool-pref: "userChrome.tabbar.on_bottom")),
|
||||||
|
(-moz-bool-pref: "userChrome.tabbar.on_bottom") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (not (-moz-bool-pref: "userChrome.tabbar.one_liner")) and (-moz-bool-pref: "userChrome.hidden.tabbar") and (-moz-bool-pref: "userChrome.hidden.tabbar") and (not (-moz-bool-pref: "userChrome.tabbar.on_bottom")),
|
||||||
|
(-moz-bool-pref: "userChrome.tabbar.one_liner") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (not (-moz-bool-pref: "userChrome.tabbar.one_liner")) and (-moz-bool-pref: "userChrome.tabbar.on_bottom") and (-moz-bool-pref: "userChrome.hidden.tabbar") and (not (-moz-bool-pref: "userChrome.tabbar.on_bottom")),
|
||||||
|
(-moz-bool-pref: "userChrome.tabbar.one_liner") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (not (-moz-bool-pref: "userChrome.tabbar.one_liner")) and (-moz-bool-pref: "userChrome.hidden.tabbar") and (-moz-bool-pref: "userChrome.hidden.tabbar") and (not (-moz-bool-pref: "userChrome.tabbar.on_bottom")),
|
||||||
|
(-moz-bool-pref: "userChrome.hidden.tabbar") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (not (-moz-bool-pref: "userChrome.tabbar.one_liner")) and (-moz-bool-pref: "userChrome.tabbar.on_bottom") and (-moz-bool-pref: "userChrome.hidden.tabbar") and (not (-moz-bool-pref: "userChrome.tabbar.on_bottom")),
|
||||||
|
(-moz-bool-pref: "userChrome.hidden.tabbar") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (not (-moz-bool-pref: "userChrome.tabbar.one_liner")) and (-moz-bool-pref: "userChrome.hidden.tabbar") and (-moz-bool-pref: "userChrome.hidden.tabbar") and (not (-moz-bool-pref: "userChrome.tabbar.on_bottom")) {
|
||||||
|
:root:is([tabsintitlebar], [customtitlebar]) #nav-bar > .titlebar-buttonbox-container {
|
||||||
|
display: flex !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
@media (-moz-bool-pref: "userChrome.tabbar.on_bottom") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (not (-moz-bool-pref: "userChrome.tabbar.one_liner")) and (-moz-bool-pref: "userChrome.tabbar.on_bottom"),
|
@media (-moz-bool-pref: "userChrome.tabbar.on_bottom") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (not (-moz-bool-pref: "userChrome.tabbar.one_liner")) and (-moz-bool-pref: "userChrome.tabbar.on_bottom"),
|
||||||
(-moz-bool-pref: "userChrome.tabbar.on_bottom") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (not (-moz-bool-pref: "userChrome.tabbar.one_liner")) and (-moz-bool-pref: "userChrome.hidden.tabbar"),
|
(-moz-bool-pref: "userChrome.tabbar.on_bottom") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (not (-moz-bool-pref: "userChrome.tabbar.one_liner")) and (-moz-bool-pref: "userChrome.hidden.tabbar"),
|
||||||
(-moz-bool-pref: "userChrome.tabbar.one_liner") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (not (-moz-bool-pref: "userChrome.tabbar.one_liner")) and (-moz-bool-pref: "userChrome.tabbar.on_bottom"),
|
(-moz-bool-pref: "userChrome.tabbar.one_liner") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (not (-moz-bool-pref: "userChrome.tabbar.one_liner")) and (-moz-bool-pref: "userChrome.tabbar.on_bottom"),
|
||||||
|
|
@ -20079,22 +20119,29 @@
|
||||||
:root[inFullscreen]:not([macOSNativeFullscreen]) #menubar-items {
|
:root[inFullscreen]:not([macOSNativeFullscreen]) #menubar-items {
|
||||||
visibility: collapse !important;
|
visibility: collapse !important;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar,
|
||||||
:root[tabsintitlebar] #toolbar-menubar,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar,
|
||||||
:root[tabsintitlebar] #TabsToolbar {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar {
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar:-moz-window-inactive,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar:-moz-window-inactive,
|
||||||
:root[tabsintitlebar] #toolbar-menubar:-moz-window-inactive,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar:-moz-window-inactive,
|
||||||
:root[tabsintitlebar] #TabsToolbar:-moz-window-inactive {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar:-moz-window-inactive {
|
||||||
opacity: 1 !important;
|
opacity: 1 !important;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar:-moz-window-inactive .titlebar-buttonbox,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar:-moz-window-inactive .titlebar-buttonbox,
|
||||||
:root[tabsintitlebar] #toolbar-menubar:-moz-window-inactive .titlebar-buttonbox,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar:-moz-window-inactive .titlebar-buttonbox,
|
||||||
:root[tabsintitlebar] #TabsToolbar:-moz-window-inactive .titlebar-buttonbox {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar:-moz-window-inactive .titlebar-buttonbox {
|
||||||
opacity: var(--inactive-titlebar-opacity);
|
opacity: var(--inactive-titlebar-opacity);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@media (-moz-bool-pref: "userChrome.tabbar.on_bottom") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (not (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive")) and (-moz-bool-pref: "userChrome.tabbar.one_liner.tabbar_first") and (-moz-bool-pref: "userChrome.hidden.tabbar") and (not (-moz-bool-pref: "userChrome.tabbar.on_bottom")),
|
||||||
|
(-moz-bool-pref: "userChrome.tabbar.one_liner") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (not (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive")) and (-moz-bool-pref: "userChrome.tabbar.one_liner.tabbar_first") and (-moz-bool-pref: "userChrome.hidden.tabbar") and (not (-moz-bool-pref: "userChrome.tabbar.on_bottom")),
|
||||||
|
(-moz-bool-pref: "userChrome.hidden.tabbar") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (not (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive")) and (-moz-bool-pref: "userChrome.tabbar.one_liner.tabbar_first") and (-moz-bool-pref: "userChrome.hidden.tabbar") and (not (-moz-bool-pref: "userChrome.tabbar.on_bottom")) {
|
||||||
|
:root:is([tabsintitlebar], [customtitlebar]) #nav-bar > .titlebar-buttonbox-container {
|
||||||
|
display: flex !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
@media (-moz-bool-pref: "userChrome.tabbar.on_bottom") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (not (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive")) and (-moz-bool-pref: "userChrome.tabbar.one_liner.tabbar_first"),
|
@media (-moz-bool-pref: "userChrome.tabbar.on_bottom") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (not (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive")) and (-moz-bool-pref: "userChrome.tabbar.one_liner.tabbar_first"),
|
||||||
(-moz-bool-pref: "userChrome.tabbar.one_liner") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (not (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive")) and (-moz-bool-pref: "userChrome.tabbar.one_liner.tabbar_first"),
|
(-moz-bool-pref: "userChrome.tabbar.one_liner") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (not (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive")) and (-moz-bool-pref: "userChrome.tabbar.one_liner.tabbar_first"),
|
||||||
(-moz-bool-pref: "userChrome.hidden.tabbar") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (not (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive")) and (-moz-bool-pref: "userChrome.tabbar.one_liner.tabbar_first") {
|
(-moz-bool-pref: "userChrome.hidden.tabbar") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (not (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive")) and (-moz-bool-pref: "userChrome.tabbar.one_liner.tabbar_first") {
|
||||||
|
|
@ -20279,22 +20326,29 @@
|
||||||
:root[inFullscreen]:not([macOSNativeFullscreen]) #menubar-items {
|
:root[inFullscreen]:not([macOSNativeFullscreen]) #menubar-items {
|
||||||
visibility: collapse !important;
|
visibility: collapse !important;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar,
|
||||||
:root[tabsintitlebar] #toolbar-menubar,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar,
|
||||||
:root[tabsintitlebar] #TabsToolbar {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar {
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar:-moz-window-inactive,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar:-moz-window-inactive,
|
||||||
:root[tabsintitlebar] #toolbar-menubar:-moz-window-inactive,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar:-moz-window-inactive,
|
||||||
:root[tabsintitlebar] #TabsToolbar:-moz-window-inactive {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar:-moz-window-inactive {
|
||||||
opacity: 1 !important;
|
opacity: 1 !important;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar:-moz-window-inactive .titlebar-buttonbox,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar:-moz-window-inactive .titlebar-buttonbox,
|
||||||
:root[tabsintitlebar] #toolbar-menubar:-moz-window-inactive .titlebar-buttonbox,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar:-moz-window-inactive .titlebar-buttonbox,
|
||||||
:root[tabsintitlebar] #TabsToolbar:-moz-window-inactive .titlebar-buttonbox {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar:-moz-window-inactive .titlebar-buttonbox {
|
||||||
opacity: var(--inactive-titlebar-opacity);
|
opacity: var(--inactive-titlebar-opacity);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@media (-moz-bool-pref: "userChrome.tabbar.on_bottom") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (not (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive")) and (-moz-bool-pref: "layout.css.osx-font-smoothing.enabled") and (-moz-bool-pref: "userChrome.hidden.tabbar") and (not (-moz-bool-pref: "userChrome.tabbar.on_bottom")),
|
||||||
|
(-moz-bool-pref: "userChrome.tabbar.one_liner") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (not (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive")) and (-moz-bool-pref: "layout.css.osx-font-smoothing.enabled") and (-moz-bool-pref: "userChrome.hidden.tabbar") and (not (-moz-bool-pref: "userChrome.tabbar.on_bottom")),
|
||||||
|
(-moz-bool-pref: "userChrome.hidden.tabbar") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (not (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive")) and (-moz-bool-pref: "layout.css.osx-font-smoothing.enabled") and (-moz-bool-pref: "userChrome.hidden.tabbar") and (not (-moz-bool-pref: "userChrome.tabbar.on_bottom")) {
|
||||||
|
:root:is([tabsintitlebar], [customtitlebar]) #nav-bar > .titlebar-buttonbox-container {
|
||||||
|
display: flex !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
@media (-moz-bool-pref: "userChrome.tabbar.on_bottom") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (not (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive")) and (-moz-bool-pref: "layout.css.osx-font-smoothing.enabled"),
|
@media (-moz-bool-pref: "userChrome.tabbar.on_bottom") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (not (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive")) and (-moz-bool-pref: "layout.css.osx-font-smoothing.enabled"),
|
||||||
(-moz-bool-pref: "userChrome.tabbar.one_liner") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (not (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive")) and (-moz-bool-pref: "layout.css.osx-font-smoothing.enabled"),
|
(-moz-bool-pref: "userChrome.tabbar.one_liner") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (not (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive")) and (-moz-bool-pref: "layout.css.osx-font-smoothing.enabled"),
|
||||||
(-moz-bool-pref: "userChrome.hidden.tabbar") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (not (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive")) and (-moz-bool-pref: "layout.css.osx-font-smoothing.enabled") {
|
(-moz-bool-pref: "userChrome.hidden.tabbar") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (not (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive")) and (-moz-bool-pref: "layout.css.osx-font-smoothing.enabled") {
|
||||||
|
|
@ -20533,22 +20587,32 @@
|
||||||
:root[inFullscreen]:not([macOSNativeFullscreen]) #menubar-items {
|
:root[inFullscreen]:not([macOSNativeFullscreen]) #menubar-items {
|
||||||
visibility: collapse !important;
|
visibility: collapse !important;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar,
|
||||||
:root[tabsintitlebar] #toolbar-menubar,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar,
|
||||||
:root[tabsintitlebar] #TabsToolbar {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar {
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar:-moz-window-inactive,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar:-moz-window-inactive,
|
||||||
:root[tabsintitlebar] #toolbar-menubar:-moz-window-inactive,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar:-moz-window-inactive,
|
||||||
:root[tabsintitlebar] #TabsToolbar:-moz-window-inactive {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar:-moz-window-inactive {
|
||||||
opacity: 1 !important;
|
opacity: 1 !important;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar:-moz-window-inactive .titlebar-buttonbox,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar:-moz-window-inactive .titlebar-buttonbox,
|
||||||
:root[tabsintitlebar] #toolbar-menubar:-moz-window-inactive .titlebar-buttonbox,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar:-moz-window-inactive .titlebar-buttonbox,
|
||||||
:root[tabsintitlebar] #TabsToolbar:-moz-window-inactive .titlebar-buttonbox {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar:-moz-window-inactive .titlebar-buttonbox {
|
||||||
opacity: var(--inactive-titlebar-opacity);
|
opacity: var(--inactive-titlebar-opacity);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@media screen and (-moz-bool-pref: "userChrome.tabbar.on_bottom") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive") and (-moz-bool-pref: "userChrome.tabbar.on_bottom") and (max-width: 1100px) and (-moz-bool-pref: "userChrome.hidden.tabbar") and (not (-moz-bool-pref: "userChrome.tabbar.on_bottom")),
|
||||||
|
screen and (-moz-bool-pref: "userChrome.tabbar.on_bottom") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive") and (-moz-bool-pref: "userChrome.hidden.tabbar") and (max-width: 1100px) and (-moz-bool-pref: "userChrome.hidden.tabbar") and (not (-moz-bool-pref: "userChrome.tabbar.on_bottom")),
|
||||||
|
screen and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive") and (-moz-bool-pref: "userChrome.tabbar.on_bottom") and (max-width: 1100px) and (-moz-bool-pref: "userChrome.hidden.tabbar") and (not (-moz-bool-pref: "userChrome.tabbar.on_bottom")),
|
||||||
|
screen and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive") and (-moz-bool-pref: "userChrome.hidden.tabbar") and (max-width: 1100px) and (-moz-bool-pref: "userChrome.hidden.tabbar") and (not (-moz-bool-pref: "userChrome.tabbar.on_bottom")),
|
||||||
|
screen and (-moz-bool-pref: "userChrome.hidden.tabbar") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive") and (-moz-bool-pref: "userChrome.tabbar.on_bottom") and (max-width: 1100px) and (-moz-bool-pref: "userChrome.hidden.tabbar") and (not (-moz-bool-pref: "userChrome.tabbar.on_bottom")),
|
||||||
|
screen and (-moz-bool-pref: "userChrome.hidden.tabbar") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive") and (-moz-bool-pref: "userChrome.hidden.tabbar") and (max-width: 1100px) and (-moz-bool-pref: "userChrome.hidden.tabbar") and (not (-moz-bool-pref: "userChrome.tabbar.on_bottom")) {
|
||||||
|
:root:is([tabsintitlebar], [customtitlebar]) #nav-bar > .titlebar-buttonbox-container {
|
||||||
|
display: flex !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
@media screen and (-moz-bool-pref: "userChrome.tabbar.on_bottom") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive") and (-moz-bool-pref: "userChrome.tabbar.on_bottom") and (max-width: 1100px),
|
@media screen and (-moz-bool-pref: "userChrome.tabbar.on_bottom") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive") and (-moz-bool-pref: "userChrome.tabbar.on_bottom") and (max-width: 1100px),
|
||||||
screen and (-moz-bool-pref: "userChrome.tabbar.on_bottom") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive") and (-moz-bool-pref: "userChrome.hidden.tabbar") and (max-width: 1100px),
|
screen and (-moz-bool-pref: "userChrome.tabbar.on_bottom") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive") and (-moz-bool-pref: "userChrome.hidden.tabbar") and (max-width: 1100px),
|
||||||
screen and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive") and (-moz-bool-pref: "userChrome.tabbar.on_bottom") and (max-width: 1100px),
|
screen and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive") and (-moz-bool-pref: "userChrome.tabbar.on_bottom") and (max-width: 1100px),
|
||||||
|
|
@ -20739,22 +20803,29 @@
|
||||||
:root[inFullscreen]:not([macOSNativeFullscreen]) #menubar-items {
|
:root[inFullscreen]:not([macOSNativeFullscreen]) #menubar-items {
|
||||||
visibility: collapse !important;
|
visibility: collapse !important;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar,
|
||||||
:root[tabsintitlebar] #toolbar-menubar,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar,
|
||||||
:root[tabsintitlebar] #TabsToolbar {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar {
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar:-moz-window-inactive,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar:-moz-window-inactive,
|
||||||
:root[tabsintitlebar] #toolbar-menubar:-moz-window-inactive,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar:-moz-window-inactive,
|
||||||
:root[tabsintitlebar] #TabsToolbar:-moz-window-inactive {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar:-moz-window-inactive {
|
||||||
opacity: 1 !important;
|
opacity: 1 !important;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar:-moz-window-inactive .titlebar-buttonbox,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar:-moz-window-inactive .titlebar-buttonbox,
|
||||||
:root[tabsintitlebar] #toolbar-menubar:-moz-window-inactive .titlebar-buttonbox,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar:-moz-window-inactive .titlebar-buttonbox,
|
||||||
:root[tabsintitlebar] #TabsToolbar:-moz-window-inactive .titlebar-buttonbox {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar:-moz-window-inactive .titlebar-buttonbox {
|
||||||
opacity: var(--inactive-titlebar-opacity);
|
opacity: var(--inactive-titlebar-opacity);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@media screen and (-moz-bool-pref: "userChrome.tabbar.on_bottom") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive") and (min-width: 1100px) and (-moz-bool-pref: "userChrome.tabbar.one_liner.tabbar_first") and (-moz-bool-pref: "userChrome.hidden.tabbar") and (not (-moz-bool-pref: "userChrome.tabbar.on_bottom")),
|
||||||
|
screen and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive") and (min-width: 1100px) and (-moz-bool-pref: "userChrome.tabbar.one_liner.tabbar_first") and (-moz-bool-pref: "userChrome.hidden.tabbar") and (not (-moz-bool-pref: "userChrome.tabbar.on_bottom")),
|
||||||
|
screen and (-moz-bool-pref: "userChrome.hidden.tabbar") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive") and (min-width: 1100px) and (-moz-bool-pref: "userChrome.tabbar.one_liner.tabbar_first") and (-moz-bool-pref: "userChrome.hidden.tabbar") and (not (-moz-bool-pref: "userChrome.tabbar.on_bottom")) {
|
||||||
|
:root:is([tabsintitlebar], [customtitlebar]) #nav-bar > .titlebar-buttonbox-container {
|
||||||
|
display: flex !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
@media screen and (-moz-bool-pref: "userChrome.tabbar.on_bottom") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive") and (min-width: 1100px) and (-moz-bool-pref: "userChrome.tabbar.one_liner.tabbar_first"),
|
@media screen and (-moz-bool-pref: "userChrome.tabbar.on_bottom") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive") and (min-width: 1100px) and (-moz-bool-pref: "userChrome.tabbar.one_liner.tabbar_first"),
|
||||||
screen and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive") and (min-width: 1100px) and (-moz-bool-pref: "userChrome.tabbar.one_liner.tabbar_first"),
|
screen and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive") and (min-width: 1100px) and (-moz-bool-pref: "userChrome.tabbar.one_liner.tabbar_first"),
|
||||||
screen and (-moz-bool-pref: "userChrome.hidden.tabbar") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive") and (min-width: 1100px) and (-moz-bool-pref: "userChrome.tabbar.one_liner.tabbar_first") {
|
screen and (-moz-bool-pref: "userChrome.hidden.tabbar") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive") and (min-width: 1100px) and (-moz-bool-pref: "userChrome.tabbar.one_liner.tabbar_first") {
|
||||||
|
|
@ -20939,22 +21010,29 @@
|
||||||
:root[inFullscreen]:not([macOSNativeFullscreen]) #menubar-items {
|
:root[inFullscreen]:not([macOSNativeFullscreen]) #menubar-items {
|
||||||
visibility: collapse !important;
|
visibility: collapse !important;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar,
|
||||||
:root[tabsintitlebar] #toolbar-menubar,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar,
|
||||||
:root[tabsintitlebar] #TabsToolbar {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar {
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar:-moz-window-inactive,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar:-moz-window-inactive,
|
||||||
:root[tabsintitlebar] #toolbar-menubar:-moz-window-inactive,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar:-moz-window-inactive,
|
||||||
:root[tabsintitlebar] #TabsToolbar:-moz-window-inactive {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar:-moz-window-inactive {
|
||||||
opacity: 1 !important;
|
opacity: 1 !important;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar:-moz-window-inactive .titlebar-buttonbox,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar:-moz-window-inactive .titlebar-buttonbox,
|
||||||
:root[tabsintitlebar] #toolbar-menubar:-moz-window-inactive .titlebar-buttonbox,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar:-moz-window-inactive .titlebar-buttonbox,
|
||||||
:root[tabsintitlebar] #TabsToolbar:-moz-window-inactive .titlebar-buttonbox {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar:-moz-window-inactive .titlebar-buttonbox {
|
||||||
opacity: var(--inactive-titlebar-opacity);
|
opacity: var(--inactive-titlebar-opacity);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@media screen and (-moz-bool-pref: "userChrome.tabbar.on_bottom") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive") and (min-width: 1100px) and (-moz-bool-pref: "layout.css.osx-font-smoothing.enabled") and (-moz-bool-pref: "userChrome.hidden.tabbar") and (not (-moz-bool-pref: "userChrome.tabbar.on_bottom")),
|
||||||
|
screen and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive") and (min-width: 1100px) and (-moz-bool-pref: "layout.css.osx-font-smoothing.enabled") and (-moz-bool-pref: "userChrome.hidden.tabbar") and (not (-moz-bool-pref: "userChrome.tabbar.on_bottom")),
|
||||||
|
screen and (-moz-bool-pref: "userChrome.hidden.tabbar") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive") and (min-width: 1100px) and (-moz-bool-pref: "layout.css.osx-font-smoothing.enabled") and (-moz-bool-pref: "userChrome.hidden.tabbar") and (not (-moz-bool-pref: "userChrome.tabbar.on_bottom")) {
|
||||||
|
:root:is([tabsintitlebar], [customtitlebar]) #nav-bar > .titlebar-buttonbox-container {
|
||||||
|
display: flex !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
@media screen and (-moz-bool-pref: "userChrome.tabbar.on_bottom") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive") and (min-width: 1100px) and (-moz-bool-pref: "layout.css.osx-font-smoothing.enabled"),
|
@media screen and (-moz-bool-pref: "userChrome.tabbar.on_bottom") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive") and (min-width: 1100px) and (-moz-bool-pref: "layout.css.osx-font-smoothing.enabled"),
|
||||||
screen and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive") and (min-width: 1100px) and (-moz-bool-pref: "layout.css.osx-font-smoothing.enabled"),
|
screen and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive") and (min-width: 1100px) and (-moz-bool-pref: "layout.css.osx-font-smoothing.enabled"),
|
||||||
screen and (-moz-bool-pref: "userChrome.hidden.tabbar") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive") and (min-width: 1100px) and (-moz-bool-pref: "layout.css.osx-font-smoothing.enabled") {
|
screen and (-moz-bool-pref: "userChrome.hidden.tabbar") and (not (-moz-bool-pref: "userChrome.hidden.titlebar_container")) and (-moz-bool-pref: "userChrome.tabbar.one_liner") and (-moz-bool-pref: "userChrome.tabbar.one_liner.responsive") and (min-width: 1100px) and (-moz-bool-pref: "layout.css.osx-font-smoothing.enabled") {
|
||||||
|
|
|
||||||
138
css/leptonChromeESR.css
generated
138
css/leptonChromeESR.css
generated
|
|
@ -5918,21 +5918,26 @@
|
||||||
:root[inFullscreen]:not([macOSNativeFullscreen]) #menubar-items {
|
:root[inFullscreen]:not([macOSNativeFullscreen]) #menubar-items {
|
||||||
visibility: collapse !important;
|
visibility: collapse !important;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar,
|
||||||
:root[tabsintitlebar] #toolbar-menubar,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar,
|
||||||
:root[tabsintitlebar] #TabsToolbar {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar {
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar:-moz-window-inactive,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar:-moz-window-inactive,
|
||||||
:root[tabsintitlebar] #toolbar-menubar:-moz-window-inactive,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar:-moz-window-inactive,
|
||||||
:root[tabsintitlebar] #TabsToolbar:-moz-window-inactive {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar:-moz-window-inactive {
|
||||||
opacity: 1 !important;
|
opacity: 1 !important;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar:-moz-window-inactive .titlebar-buttonbox,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar:-moz-window-inactive .titlebar-buttonbox,
|
||||||
:root[tabsintitlebar] #toolbar-menubar:-moz-window-inactive .titlebar-buttonbox,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar:-moz-window-inactive .titlebar-buttonbox,
|
||||||
:root[tabsintitlebar] #TabsToolbar:-moz-window-inactive .titlebar-buttonbox {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar:-moz-window-inactive .titlebar-buttonbox {
|
||||||
opacity: var(--inactive-titlebar-opacity);
|
opacity: var(--inactive-titlebar-opacity);
|
||||||
}
|
}
|
||||||
|
@supports not -moz-bool-pref("userChrome.tabbar.on_bottom") {
|
||||||
|
:root:is([tabsintitlebar], [customtitlebar]) #nav-bar > .titlebar-buttonbox-container {
|
||||||
|
display: flex !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
/* At Activated Menubar */
|
/* At Activated Menubar */
|
||||||
:root:not([chromehidden~="menubar"], [sizemode="fullscreen"])
|
:root:not([chromehidden~="menubar"], [sizemode="fullscreen"])
|
||||||
|
|
@ -6083,21 +6088,26 @@
|
||||||
:root[inFullscreen]:not([macOSNativeFullscreen]) #menubar-items {
|
:root[inFullscreen]:not([macOSNativeFullscreen]) #menubar-items {
|
||||||
visibility: collapse !important;
|
visibility: collapse !important;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar,
|
||||||
:root[tabsintitlebar] #toolbar-menubar,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar,
|
||||||
:root[tabsintitlebar] #TabsToolbar {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar {
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar:-moz-window-inactive,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar:-moz-window-inactive,
|
||||||
:root[tabsintitlebar] #toolbar-menubar:-moz-window-inactive,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar:-moz-window-inactive,
|
||||||
:root[tabsintitlebar] #TabsToolbar:-moz-window-inactive {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar:-moz-window-inactive {
|
||||||
opacity: 1 !important;
|
opacity: 1 !important;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar:-moz-window-inactive .titlebar-buttonbox,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar:-moz-window-inactive .titlebar-buttonbox,
|
||||||
:root[tabsintitlebar] #toolbar-menubar:-moz-window-inactive .titlebar-buttonbox,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar:-moz-window-inactive .titlebar-buttonbox,
|
||||||
:root[tabsintitlebar] #TabsToolbar:-moz-window-inactive .titlebar-buttonbox {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar:-moz-window-inactive .titlebar-buttonbox {
|
||||||
opacity: var(--inactive-titlebar-opacity);
|
opacity: var(--inactive-titlebar-opacity);
|
||||||
}
|
}
|
||||||
|
@supports not -moz-bool-pref("userChrome.tabbar.on_bottom") {
|
||||||
|
:root:is([tabsintitlebar], [customtitlebar]) #nav-bar > .titlebar-buttonbox-container {
|
||||||
|
display: flex !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
/* At Activated Menubar */
|
/* At Activated Menubar */
|
||||||
:root:not([chromehidden~="menubar"], [sizemode="fullscreen"])
|
:root:not([chromehidden~="menubar"], [sizemode="fullscreen"])
|
||||||
|
|
@ -6245,21 +6255,26 @@
|
||||||
:root[inFullscreen]:not([macOSNativeFullscreen]) #menubar-items {
|
:root[inFullscreen]:not([macOSNativeFullscreen]) #menubar-items {
|
||||||
visibility: collapse !important;
|
visibility: collapse !important;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar,
|
||||||
:root[tabsintitlebar] #toolbar-menubar,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar,
|
||||||
:root[tabsintitlebar] #TabsToolbar {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar {
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar:-moz-window-inactive,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar:-moz-window-inactive,
|
||||||
:root[tabsintitlebar] #toolbar-menubar:-moz-window-inactive,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar:-moz-window-inactive,
|
||||||
:root[tabsintitlebar] #TabsToolbar:-moz-window-inactive {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar:-moz-window-inactive {
|
||||||
opacity: 1 !important;
|
opacity: 1 !important;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar:-moz-window-inactive .titlebar-buttonbox,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar:-moz-window-inactive .titlebar-buttonbox,
|
||||||
:root[tabsintitlebar] #toolbar-menubar:-moz-window-inactive .titlebar-buttonbox,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar:-moz-window-inactive .titlebar-buttonbox,
|
||||||
:root[tabsintitlebar] #TabsToolbar:-moz-window-inactive .titlebar-buttonbox {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar:-moz-window-inactive .titlebar-buttonbox {
|
||||||
opacity: var(--inactive-titlebar-opacity);
|
opacity: var(--inactive-titlebar-opacity);
|
||||||
}
|
}
|
||||||
|
@supports not -moz-bool-pref("userChrome.tabbar.on_bottom") {
|
||||||
|
:root:is([tabsintitlebar], [customtitlebar]) #nav-bar > .titlebar-buttonbox-container {
|
||||||
|
display: flex !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
/* At Activated Menubar */
|
/* At Activated Menubar */
|
||||||
:root:not([chromehidden~="menubar"], [sizemode="fullscreen"])
|
:root:not([chromehidden~="menubar"], [sizemode="fullscreen"])
|
||||||
|
|
@ -6426,21 +6441,26 @@
|
||||||
:root[inFullscreen]:not([macOSNativeFullscreen]) #menubar-items {
|
:root[inFullscreen]:not([macOSNativeFullscreen]) #menubar-items {
|
||||||
visibility: collapse !important;
|
visibility: collapse !important;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar,
|
||||||
:root[tabsintitlebar] #toolbar-menubar,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar,
|
||||||
:root[tabsintitlebar] #TabsToolbar {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar {
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar:-moz-window-inactive,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar:-moz-window-inactive,
|
||||||
:root[tabsintitlebar] #toolbar-menubar:-moz-window-inactive,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar:-moz-window-inactive,
|
||||||
:root[tabsintitlebar] #TabsToolbar:-moz-window-inactive {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar:-moz-window-inactive {
|
||||||
opacity: 1 !important;
|
opacity: 1 !important;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar:-moz-window-inactive .titlebar-buttonbox,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar:-moz-window-inactive .titlebar-buttonbox,
|
||||||
:root[tabsintitlebar] #toolbar-menubar:-moz-window-inactive .titlebar-buttonbox,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar:-moz-window-inactive .titlebar-buttonbox,
|
||||||
:root[tabsintitlebar] #TabsToolbar:-moz-window-inactive .titlebar-buttonbox {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar:-moz-window-inactive .titlebar-buttonbox {
|
||||||
opacity: var(--inactive-titlebar-opacity);
|
opacity: var(--inactive-titlebar-opacity);
|
||||||
}
|
}
|
||||||
|
@supports not -moz-bool-pref("userChrome.tabbar.on_bottom") {
|
||||||
|
:root:is([tabsintitlebar], [customtitlebar]) #nav-bar > .titlebar-buttonbox-container {
|
||||||
|
display: flex !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media screen and (max-width: 1100px) {
|
@media screen and (max-width: 1100px) {
|
||||||
|
|
@ -6596,21 +6616,26 @@
|
||||||
:root[inFullscreen]:not([macOSNativeFullscreen]) #menubar-items {
|
:root[inFullscreen]:not([macOSNativeFullscreen]) #menubar-items {
|
||||||
visibility: collapse !important;
|
visibility: collapse !important;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar,
|
||||||
:root[tabsintitlebar] #toolbar-menubar,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar,
|
||||||
:root[tabsintitlebar] #TabsToolbar {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar {
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar:-moz-window-inactive,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar:-moz-window-inactive,
|
||||||
:root[tabsintitlebar] #toolbar-menubar:-moz-window-inactive,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar:-moz-window-inactive,
|
||||||
:root[tabsintitlebar] #TabsToolbar:-moz-window-inactive {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar:-moz-window-inactive {
|
||||||
opacity: 1 !important;
|
opacity: 1 !important;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar:-moz-window-inactive .titlebar-buttonbox,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar:-moz-window-inactive .titlebar-buttonbox,
|
||||||
:root[tabsintitlebar] #toolbar-menubar:-moz-window-inactive .titlebar-buttonbox,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar:-moz-window-inactive .titlebar-buttonbox,
|
||||||
:root[tabsintitlebar] #TabsToolbar:-moz-window-inactive .titlebar-buttonbox {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar:-moz-window-inactive .titlebar-buttonbox {
|
||||||
opacity: var(--inactive-titlebar-opacity);
|
opacity: var(--inactive-titlebar-opacity);
|
||||||
}
|
}
|
||||||
|
@supports not -moz-bool-pref("userChrome.tabbar.on_bottom") {
|
||||||
|
:root:is([tabsintitlebar], [customtitlebar]) #nav-bar > .titlebar-buttonbox-container {
|
||||||
|
display: flex !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
/* At Activated Menubar */
|
/* At Activated Menubar */
|
||||||
:root:not([chromehidden~="menubar"], [sizemode="fullscreen"])
|
:root:not([chromehidden~="menubar"], [sizemode="fullscreen"])
|
||||||
|
|
@ -6761,21 +6786,26 @@
|
||||||
:root[inFullscreen]:not([macOSNativeFullscreen]) #menubar-items {
|
:root[inFullscreen]:not([macOSNativeFullscreen]) #menubar-items {
|
||||||
visibility: collapse !important;
|
visibility: collapse !important;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar,
|
||||||
:root[tabsintitlebar] #toolbar-menubar,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar,
|
||||||
:root[tabsintitlebar] #TabsToolbar {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar {
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar:-moz-window-inactive,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar:-moz-window-inactive,
|
||||||
:root[tabsintitlebar] #toolbar-menubar:-moz-window-inactive,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar:-moz-window-inactive,
|
||||||
:root[tabsintitlebar] #TabsToolbar:-moz-window-inactive {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar:-moz-window-inactive {
|
||||||
opacity: 1 !important;
|
opacity: 1 !important;
|
||||||
}
|
}
|
||||||
:root[tabsintitlebar] #titlebar:-moz-window-inactive .titlebar-buttonbox,
|
:root:is([tabsintitlebar], [customtitlebar]) #titlebar:-moz-window-inactive .titlebar-buttonbox,
|
||||||
:root[tabsintitlebar] #toolbar-menubar:-moz-window-inactive .titlebar-buttonbox,
|
:root:is([tabsintitlebar], [customtitlebar]) #toolbar-menubar:-moz-window-inactive .titlebar-buttonbox,
|
||||||
:root[tabsintitlebar] #TabsToolbar:-moz-window-inactive .titlebar-buttonbox {
|
:root:is([tabsintitlebar], [customtitlebar]) #TabsToolbar:-moz-window-inactive .titlebar-buttonbox {
|
||||||
opacity: var(--inactive-titlebar-opacity);
|
opacity: var(--inactive-titlebar-opacity);
|
||||||
}
|
}
|
||||||
|
@supports not -moz-bool-pref("userChrome.tabbar.on_bottom") {
|
||||||
|
:root:is([tabsintitlebar], [customtitlebar]) #nav-bar > .titlebar-buttonbox-container {
|
||||||
|
display: flex !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
/* At Activated Menubar */
|
/* At Activated Menubar */
|
||||||
:root:not([chromehidden~="menubar"], [sizemode="fullscreen"])
|
:root:not([chromehidden~="menubar"], [sizemode="fullscreen"])
|
||||||
|
|
|
||||||
|
|
@ -130,7 +130,7 @@ See the above repository for updates as well as full license text. */
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
:root[tabsintitlebar] {
|
:root:is([tabsintitlebar], [customtitlebar]) {
|
||||||
#titlebar,
|
#titlebar,
|
||||||
#toolbar-menubar,
|
#toolbar-menubar,
|
||||||
#TabsToolbar {
|
#TabsToolbar {
|
||||||
|
|
@ -142,6 +142,12 @@ See the above repository for updates as well as full license text. */
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@include NotOption("userChrome.tabbar.on_bottom") {
|
||||||
|
#nav-bar > .titlebar-buttonbox-container {
|
||||||
|
display: flex !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue