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.
This commit is contained in:
Ulrik de Muelenaere 2023-05-17 17:31:43 -04:00 committed by Oliver Smith
parent 5402fa0f52
commit 3dcfd01d09
No known key found for this signature in database
GPG key ID: 5AE7F5513E0885CB

View file

@ -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