From 703746267855db3a899bea6626a340cdc7e18a70 Mon Sep 17 00:00:00 2001 From: MrOtherGuy Date: Wed, 1 Sep 2021 15:58:37 +0300 Subject: [PATCH] use -webkit-box instead of flex for nav-bar so extension panels can work --- chrome/navbar_below_content.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/chrome/navbar_below_content.css b/chrome/navbar_below_content.css index 3ebbd5a..6f97343 100644 --- a/chrome/navbar_below_content.css +++ b/chrome/navbar_below_content.css @@ -19,12 +19,13 @@ See the above repository for updates as well as full license text. */ #nav-bar{ position: fixed !important; bottom: 0px; - display: flex; + /* For some reason -webkit-box behaves internally like -moz-box, but can be used with fixed position. display: flex would work too but it breaks extension menus. */ + display: -webkit-box; width: 100%; z-index: 1; } - #nav-bar-customization-target{ flex-grow: 1; } + #nav-bar-customization-target{ -webkit-box-flex: 1; } #urlbar[breakout][breakout-extend]{ display: flex !important;