From 24a054658cf2d91b9e355f8b00dae97a5dd99e0c Mon Sep 17 00:00:00 2001 From: Jakob Lechner Date: Thu, 30 May 2024 01:26:08 +0200 Subject: [PATCH] Add tweaks for loction bar --- users/jalr/modules/firefox/userChrome.css | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/users/jalr/modules/firefox/userChrome.css b/users/jalr/modules/firefox/userChrome.css index dcc6b2b..21743cf 100644 --- a/users/jalr/modules/firefox/userChrome.css +++ b/users/jalr/modules/firefox/userChrome.css @@ -218,4 +218,23 @@ url(chrome://browser/content/browser.xhtml) { } /*** End of: Megabar Styler One-Offs ***/ + + /* Hide "Firefox Suggest" in location bar search results */ + .urlbarView-row[label="Firefox Suggest"]::before { + display: none !important + } + .urlbarView-row[label] { + margin-block-start: 4px !important; + } + + /* Hide search button in location bar */ + #identity-box[pageproxystate=invalid] > .identity-box-button, + .searchbar-search-button { + display: none + } + + /* Hide search placeholder in location bar */ + #urlbar-input::placeholder { + color: transparent; + } }