userChrome/popups: move backForwardMenu on screen

Make sure the menu that gets opened when long-pressing the back button
is visible on screen. Note that this is useful not only for navigating
back, but can be used to navigate forward too, and to navigate back to
the new tab/home page.
This commit is contained in:
Oliver Smith 2021-12-12 11:24:46 +01:00
parent e5ee057e95
commit 32e4fb261c
No known key found for this signature in database
GPG key ID: 5AE7F5513E0885CB

View file

@ -24,4 +24,11 @@
#downloadsPanel-mainView { #downloadsPanel-mainView {
max-width: calc(100vw - 10px); max-width: calc(100vw - 10px);
} }
/* Menu that appears when long-pressing the back-button */
#backForwardMenu {
margin-top: -250px;
height: 200px;
min-height: 200px;
}
} }