Fix: Oneliner - userChrome.tab.one_line -> userChrome.tab.one_liner

This commit is contained in:
alstjr7375 2022-07-12 13:31:02 +09:00
parent 0aef856efb
commit 046ab3b64a
4 changed files with 11 additions and 11 deletions

View file

@ -3818,7 +3818,7 @@
}
}
/*= Tab Bar - Oneliner =======================================================*/
@supports -moz-bool-pref("userChrome.tab.one_line") {
@supports -moz-bool-pref("userChrome.tab.one_liner") {
:root {
--uc-navbar-size: 40vw;
--uc-tabbar-size: calc(100vw - var(--uc-navbar-size));
@ -3841,7 +3841,7 @@
display: none !important;
}
@supports not -moz-bool-pref("userChrome.tab.one_line.tabbar_first") {
@supports not -moz-bool-pref("userChrome.tab.one_liner.tabbar_first") {
#TabsToolbar {
margin-inline-start: var(--uc-navbar-size) !important;
}
@ -3854,7 +3854,7 @@
display: none !important;
}
}
@supports -moz-bool-pref("userChrome.tab.one_line.tabbar_first") {
@supports -moz-bool-pref("userChrome.tab.one_liner.tabbar_first") {
#TabsToolbar {
margin-inline-end: var(--uc-navbar-size) !important;
}
@ -3869,7 +3869,7 @@
}
}
/*= Tab Bar - Shared Layout ==================================================*/
@supports -moz-bool-pref("userChrome.tab.on_bottom") or -moz-bool-pref("userChrome.tab.one_line") {
@supports -moz-bool-pref("userChrome.tab.on_bottom") or -moz-bool-pref("userChrome.tab.one_liner") {
@supports -moz-bool-pref("userChrome.tab.on_bottom") or -moz-bool-pref("userChrome.tab.one_line.tabbar_first") {
/*= Windows Control - Move to toolbar ========================================*/
/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/tabs_on_bottom.css made available under Mozilla Public License v. 2.0

View file

@ -24,12 +24,12 @@
}
/*= Tab Bar - Oneliner =======================================================*/
@include Option("userChrome.tab.one_line") {
@import "one_line";
@include Option("userChrome.tab.one_liner") {
@import "one_liner";
}
/*= Tab Bar - Shared Layout ==================================================*/
@include Option("userChrome.tab.on_bottom", "userChrome.tab.one_line") {
@include Option("userChrome.tab.on_bottom", "userChrome.tab.one_liner") {
@import "layout";
}

View file

@ -20,7 +20,7 @@ toolbarspring.chromeclass-toolbar-additional {
display: none !important;
}
@include NotOption("userChrome.tab.one_line.tabbar_first") {
@include NotOption("userChrome.tab.one_liner.tabbar_first") {
#TabsToolbar {
margin-inline-start: var(--uc-navbar-size) !important;
}
@ -31,7 +31,7 @@ toolbarspring.chromeclass-toolbar-additional {
display: none !important;
}
}
@include Option("userChrome.tab.one_line.tabbar_first") {
@include Option("userChrome.tab.one_liner.tabbar_first") {
#TabsToolbar {
margin-inline-end: var(--uc-navbar-size) !important;
}

View file

@ -98,8 +98,8 @@ user_pref("userChrome.tab.bottom_rounded_corner", true);
// user_pref("userChrome.tab.on_bottom", true);
// user_pref("userChrome.tab.on_bottom.above_bookmark", true); // Need on_bottom
// user_pref("userChrome.tab.on_bottom.menubar_on_top", true); // Need on_bottom
// user_pref("userChrome.tab.one_line", true);
// user_pref("userChrome.tab.one_line.tabbar_first", true);
// user_pref("userChrome.tab.one_liner", true);
// user_pref("userChrome.tab.one_liner.tabbar_first", true);
// user_pref("userChrome.tab.as_titlebar", true);
// user_pref("userChrome.tab.always_show_tab_icon", true);
// user_pref("userChrome.tab.close_button_at_pinned", true);