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:
parent
3269089d1c
commit
1a0ba21cc6
1 changed files with 18 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue