From 32e4fb261c99fa89dfd785d62da9e147dfe87ed8 Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Sun, 12 Dec 2021 11:24:46 +0100 Subject: [PATCH] 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. --- src/userChrome/popups.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/userChrome/popups.css b/src/userChrome/popups.css index a85dbfa..0633941 100644 --- a/src/userChrome/popups.css +++ b/src/userChrome/popups.css @@ -24,4 +24,11 @@ #downloadsPanel-mainView { max-width: calc(100vw - 10px); } + + /* Menu that appears when long-pressing the back-button */ + #backForwardMenu { + margin-top: -250px; + height: 200px; + min-height: 200px; + } }