diff --git a/chrome/compact_urlbar_megabar.css b/chrome/compact_urlbar_megabar.css index cd2bbd3..3d45cc0 100644 --- a/chrome/compact_urlbar_megabar.css +++ b/chrome/compact_urlbar_megabar.css @@ -6,10 +6,10 @@ See the above repository for updates as well as full license text. */ margin-inline-start: 0px !important; width: 100% !important; left: 0 !important; - top: calc((var(--urlbar-toolbar-height) - var(--urlbar-height)) / 2 ) !important; + top: calc((var(--urlbar-container-height) - var(--urlbar-height)) / 2 ) !important; } #urlbar[breakout]:not([open]){ - bottom: calc((var(--urlbar-toolbar-height) - var(--urlbar-height)) / 2) !important; + bottom: calc((var(--urlbar-container-height) - var(--urlbar-height)) / 2) !important; } .urlbarView{ margin-inline: 0 !important; diff --git a/chrome/multi-row_main_toolbar.css b/chrome/multi-row_main_toolbar.css index e9fd52c..1a116b9 100644 --- a/chrome/multi-row_main_toolbar.css +++ b/chrome/multi-row_main_toolbar.css @@ -26,7 +26,7 @@ See the above repository for updates as well as full license text. */ } #urlbar{ - --urlbar-toolbar-height: var(--uc-multirow-toolbar-height) !important; + --urlbar-container-height: var(--uc-multirow-toolbar-height) !important; } #nav-bar-customization-target > [flex]{ flex-grow: 2 } diff --git a/chrome/multi-row_tabs_below_content.css b/chrome/multi-row_tabs_below_content.css index ec6e4d2..2735d87 100644 --- a/chrome/multi-row_tabs_below_content.css +++ b/chrome/multi-row_tabs_below_content.css @@ -69,7 +69,7 @@ See the above repository for updates as well as full license text. */ display: none !important; } /* Fix incorrect vertical alignment with megabar */ - #urlbar[breakout]{ --urlbar-toolbar-height: var(--multirow-toolbar-height) !important; } + #urlbar[breakout]{ --urlbar-container-height: var(--multirow-toolbar-height) !important; } /* Fix customization view */ #customization-panelWrapper > .panel-arrowbox > .panel-arrow{ margin-inline-end: initial !important; } diff --git a/chrome/navbar_tabs_oneliner_menu_buttons_on_right.css b/chrome/navbar_tabs_oneliner_menu_buttons_on_right.css index 30c4273..1f9c2aa 100644 --- a/chrome/navbar_tabs_oneliner_menu_buttons_on_right.css +++ b/chrome/navbar_tabs_oneliner_menu_buttons_on_right.css @@ -43,7 +43,7 @@ Window controls will be all wrong without it padding-block: 0 !important; } :root[uidensity="compact"] #urlbar{ - --urlbar-toolbar-height: var(--uc-toolbar-height) !important; + --urlbar-container-height: var(--uc-toolbar-height) !important; } /* prevent urlbar overflow on narrow windows */ diff --git a/chrome/navbar_tabs_oneliner_tabs_on_left.css b/chrome/navbar_tabs_oneliner_tabs_on_left.css index e4f376c..204c8d4 100644 --- a/chrome/navbar_tabs_oneliner_tabs_on_left.css +++ b/chrome/navbar_tabs_oneliner_tabs_on_left.css @@ -36,7 +36,7 @@ Window controls will be all wrong without it padding-block: 0 !important; } :root[uidensity="compact"] #urlbar{ - --urlbar-toolbar-height: var(--uc-toolbar-height) !important; + --urlbar-container-height: var(--uc-toolbar-height) !important; } /* prevent urlbar overflow on narrow windows */ diff --git a/chrome/urlbar_popup_full_width.css b/chrome/urlbar_popup_full_width.css index f408443..e706088 100644 --- a/chrome/urlbar_popup_full_width.css +++ b/chrome/urlbar_popup_full_width.css @@ -39,7 +39,7 @@ See the above repository for updates as well as full license text. */ left: 0 !important; width: 100vw !important; border-width: 1px 0; - top: var(--urlbar-toolbar-height); + top: var(--urlbar-container-height); background-color: var(--toolbar-field-focus-background-color, inherit); z-index: 4; box-shadow: 0 1px 4px rgba(0,0,0,.05);