From a863f41268fdcd2fede6bb5f286fae562ab88efc Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Sun, 22 Nov 2020 15:44:47 +0100 Subject: [PATCH] urlbar: don't do extra extension to left and right Remove the rule that makes it go 50px to the left and 20px to the right. While this added some more space for editing the URL, it looked weird. After having used it for a while, I think it's better to remove this again. --- src/userChrome/urlbar.css | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/userChrome/urlbar.css b/src/userChrome/urlbar.css index e196aea..8fcf914 100644 --- a/src/userChrome/urlbar.css +++ b/src/userChrome/urlbar.css @@ -41,9 +41,3 @@ #urlbar[focused] #pageActionButton { display: none; } - -/* Focused urlbar: use almost full screen width (let it cover buttons left and right, which are not useful when editing the URL) */ -#nav-bar[urlbar-exceeds-toolbar-bounds] #urlbar-container { - margin-left: -50px !important; - margin-right: -25px !important; -}