From c6f93b4c1b6698b95968457a4d321c97099fd5e0 Mon Sep 17 00:00:00 2001 From: Piotr <114903054+elevenhsoft@users.noreply.github.com> Date: Sat, 30 Nov 2024 16:09:44 +0100 Subject: [PATCH] fix: remove nav-bar css rule to fix urlbar visibility --- .../firefox/profile/chrome/userChrome.css | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/data/runtime/firefox/profile/chrome/userChrome.css b/data/runtime/firefox/profile/chrome/userChrome.css index 06245ee..699bbc3 100644 --- a/data/runtime/firefox/profile/chrome/userChrome.css +++ b/data/runtime/firefox/profile/chrome/userChrome.css @@ -1,9 +1,8 @@ -#nav-bar, #identity-box, #tabbrowser-tabs, #TabsToolbar { - visibility: collapse; -} - -#nav-bar * { - visibility: visible !important; +#nav-bar, +#identity-box, +#tabbrowser-tabs, +#TabsToolbar { + visibility: collapse !important; } /************************************/ @@ -123,5 +122,6 @@ https://github.com/stonecrusher/simpleMenuWizard /* Here are context menus of addons */ -#leave_this_dummy_here - { display:none !important; } +#leave_this_dummy_here { + display: none !important; +}