From 16a7c7568ccf2dd9c962f3c52ee7e92ea5bf1fe9 Mon Sep 17 00:00:00 2001 From: girst Date: Thu, 1 Aug 2019 11:42:02 +0200 Subject: [PATCH] fix hints mode and help popups entering any of these modes adds an overlay above the element. In mozilla69 the style property 'display: -moz-box' was removed from '*' in minimal-xul.css. When the overlay was displayed without this property, the would be resized to 25x25px to make room for the overlay instead of displaying them on top of each other. keep an eye on http://bugzil.la/939428 --- extension/skin/style.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/extension/skin/style.css b/extension/skin/style.css index f8a8bbd..00f2eca 100644 --- a/extension/skin/style.css +++ b/extension/skin/style.css @@ -55,6 +55,7 @@ toolbarpaletteitem[place="palette"] > #VimFxButton { /***** Markers *****/ #VimFxMarkersContainer { + display: -moz-box; position: relative; pointer-events: none; font: menu; @@ -140,6 +141,7 @@ toolbarpaletteitem[place="palette"] > #VimFxButton { /***** Help Dialog *****/ #VimFxHelpDialogContainer { + display: -moz-box; position: relative; opacity: 0.92; -- 2.39.3