From 1a0ba21cc62068f79fe168c7c8d39cdecb54d59e Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Thu, 18 Nov 2021 20:52:40 +0100 Subject: [PATCH] userChrome/urlbar: big search results on top (MR 19) Cover the whole page, make it scrollable. Much more enjoyable to use. --- src/userChrome/urlbar.css | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/userChrome/urlbar.css b/src/userChrome/urlbar.css index ec143ae..4624beb 100644 --- a/src/userChrome/urlbar.css +++ b/src/userChrome/urlbar.css @@ -50,4 +50,22 @@ #identity-icon-label { display: none; } + + /* Move urlbar results to cover the whole displayed website, instead of + * being below the urlbar. */ + .urlbarView { + position: fixed !important; + inset: 0px 0px 84px 0px; + width: 100% !important; + + background: var(--arrowpanel-background); + + margin: 0px !important; + margin-inline: 0px !important; + border-inline: 0px !important; + + overflow-y: auto !important; + overflow-x: none !important; + scrollbar-width: none; + } }