From 3dcfd01d09a7311f8b0d74b78e158d1ae1ee4a43 Mon Sep 17 00:00:00 2001 From: Ulrik de Muelenaere Date: Wed, 17 May 2023 17:31:43 -0400 Subject: [PATCH] userChrome/browser: Fix bottom navigation bar in FF 113 (MR 31) Firefox 113 changes from 'display: -moz-box' to 'display: flex', so we need to use the order property instead of -moz-box-ordinal-group. --- src/userChrome/browser.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/userChrome/browser.css b/src/userChrome/browser.css index feafa8f..f4c628a 100644 --- a/src/userChrome/browser.css +++ b/src/userChrome/browser.css @@ -4,7 +4,8 @@ /* Move navigation bar to bottom */ @media (max-width: 700px) { #browser { - -moz-box-ordinal-group: 0 !important; + -moz-box-ordinal-group: 0 !important; /* before FF 113 */ + order: -1 !important; /* since FF 113 */ } /* Hide navigation bar in kiosk mode (to prevent bug #29). We can assume FF