userChrome/urlbar: big search results on top (MR 19)

Cover the whole page, make it scrollable. Much more enjoyable to use.
This commit is contained in:
Oliver Smith 2021-11-18 20:52:40 +01:00
parent 3269089d1c
commit 1a0ba21cc6
No known key found for this signature in database
GPG key ID: 5AE7F5513E0885CB

View file

@ -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;
}
}