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:
parent
5402fa0f52
commit
3dcfd01d09
1 changed files with 2 additions and 1 deletions
|
@ -4,7 +4,8 @@
|
||||||
/* Move navigation bar to bottom */
|
/* Move navigation bar to bottom */
|
||||||
@media (max-width: 700px) {
|
@media (max-width: 700px) {
|
||||||
#browser {
|
#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
|
/* Hide navigation bar in kiosk mode (to prevent bug #29). We can assume FF
|
||||||
|
|
Loading…
Reference in a new issue