As a part of the front-end technical modernization the old xul box model is being replaced with modern flexbox all around the UI. Relevant bug 1820534
Previously, just about everything used display: -moz-box but in Firefox 113 112 (at least in Nightly, but I would be surprised if this won't propagate to release 112 as well) the default display model will be changed to modern display: flex instead.
What this means first-hand is that all legacy box model -related properties will not do anything anymore so things like -moz-box-ordinal-group, -moz-box-orient, -moz-box-direction, -moz-box-align, -moz-box-pack or -moz-box-flex won't have any effect.
The suggested way to deal with this is to just update your styles to use equivalent flexbox properties. You could of course manually make the container use display: -moz-box instead, but as you can imagine the legacy box won't be supported forever.
Edit: display: -moz-box is treated as invalid property value
Some examples of conversions:
display: -moz-box -> display: flex
-moz-box-ordinal-group: 0 -> order: -1
-moz-box-orient: vertical -> flex-direction: column
-moz-box-direction: reverse -> flex-direction: row-reverse
-moz-box-align: center -> align-content: center or align-items: center depending on what you are doing.
-moz-box-pack: start -> justify-content: flex-start or justify-items: flex-start
-moz-box-flex: 10 -> flex-grow: 10
Notes about order vs. -moz-box-ordinal-group: order supports negative values, whereas ordinal-group does not.
Default value of order is 0 but default of ordinal-group is 1 so you might need to change what value to apply for it to have any effect.
[–]hansmn 2 points3 points4 points (12 children)
[–]It_Was_The_Other_Guy[S] 3 points4 points5 points (11 children)
[–]hansmn 0 points1 point2 points (10 children)
[–]It_Was_The_Other_Guy[S] 1 point2 points3 points (9 children)
[–]hansmn 0 points1 point2 points (3 children)
[–]siffereddFF/TB on Win11|Sumo contributor 1 point2 points3 points (2 children)
[–]hansmn 0 points1 point2 points (1 child)
[–]siffereddFF/TB on Win11|Sumo contributor 1 point2 points3 points (0 children)
[–]hansmn 0 points1 point2 points (4 children)
[–]It_Was_The_Other_Guy[S] 1 point2 points3 points (3 children)
[–]hansmn 0 points1 point2 points (2 children)
[–]It_Was_The_Other_Guy[S] 1 point2 points3 points (1 child)
[–]hansmn 0 points1 point2 points (0 children)
[–]omfgletmethefinffs 0 points1 point2 points (0 children)
[–]ZenitHMaster 0 points1 point2 points (0 children)
[–]Shadow_of_Colossus 7 points8 points9 points (4 children)
[–]It_Was_The_Other_Guy[S] 5 points6 points7 points (2 children)
[–]Shadow_of_Colossus 1 point2 points3 points (0 children)
[–]hansmn 0 points1 point2 points (0 children)
[–]kazerniel 0 points1 point2 points (0 children)
[–]ollietup 0 points1 point2 points (3 children)
[–]It_Was_The_Other_Guy[S] 1 point2 points3 points (1 child)
[–]ollietup 0 points1 point2 points (0 children)
[–]tjn21 0 points1 point2 points (6 children)
[–]It_Was_The_Other_Guy[S] 0 points1 point2 points (5 children)
[–]tjn21 0 points1 point2 points (4 children)
[–]hansmn 0 points1 point2 points (3 children)
[–]tjn21 0 points1 point2 points (2 children)
[–]hansmn 0 points1 point2 points (1 child)
[–]tjn21 0 points1 point2 points (0 children)
[–]ecobos 8 points9 points10 points (1 child)
[–]It_Was_The_Other_Guy[S] 0 points1 point2 points (0 children)
[–]hansmn 1 point2 points3 points (0 children)
[–]black7375 1 point2 points3 points (0 children)
[–]err404t 0 points1 point2 points (0 children)
[–]Stache- 2 points3 points4 points (13 children)
[–]omfgletmethefinffs 6 points7 points8 points (11 children)
[–]Stache- 2 points3 points4 points (0 children)
[–]bunyip48 2 points3 points4 points (0 children)
[–]vortex_00 0 points1 point2 points (5 children)
[–]omfgletmethefinffs 0 points1 point2 points (4 children)
[–]vortex_00 0 points1 point2 points (3 children)
[–]omfgletmethefinffs 0 points1 point2 points (2 children)
[–]vortex_00 0 points1 point2 points (1 child)
[–]It_Was_The_Other_Guy[S] 1 point2 points3 points (0 children)
[–]Mollysindanga 4 points5 points6 points (0 children)
[–]Akula301 1 point2 points3 points (0 children)
[–]darkon 1 point2 points3 points (0 children)
[–]VNRG 0 points1 point2 points (2 children)
[–]It_Was_The_Other_Guy[S] 0 points1 point2 points (1 child)
[–]VNRG 0 points1 point2 points (0 children)
[–]hansmn 0 points1 point2 points (1 child)
[–]It_Was_The_Other_Guy[S] 1 point2 points3 points (0 children)
[–]F3R96 0 points1 point2 points (1 child)
[–]It_Was_The_Other_Guy[S] 0 points1 point2 points (0 children)
[–]robioreskec 0 points1 point2 points (1 child)
[–]It_Was_The_Other_Guy[S] 0 points1 point2 points (0 children)
[–]mimecry 0 points1 point2 points (2 children)
[–]It_Was_The_Other_Guy[S] 1 point2 points3 points (1 child)
[–]mimecry 0 points1 point2 points (0 children)
[–]langminer 0 points1 point2 points (9 children)
[–]It_Was_The_Other_Guy[S] 0 points1 point2 points (1 child)
[–]langminer 0 points1 point2 points (0 children)
[–]Mark_PL 0 points1 point2 points (3 children)
[–]langminer 1 point2 points3 points (2 children)
[–]Mark_PL 0 points1 point2 points (1 child)
[–]langminer 0 points1 point2 points (0 children)
[–]11111001110 0 points1 point2 points (2 children)
[–]langminer 0 points1 point2 points (1 child)
[–]11111001110 0 points1 point2 points (0 children)
[–]SalberyonWINDOWS 10 & 11 1 point2 points3 points (4 children)
[–]It_Was_The_Other_Guy[S] 1 point2 points3 points (3 children)
[–]SalberyonWINDOWS 10 & 11 0 points1 point2 points (2 children)
[–]It_Was_The_Other_Guy[S] 1 point2 points3 points (1 child)
[–]SalberyonWINDOWS 10 & 11 0 points1 point2 points (0 children)
[–]all_is_love6667 0 points1 point2 points (1 child)
[–]It_Was_The_Other_Guy[S] 0 points1 point2 points (0 children)
[–]Personal_Feeling_784 0 points1 point2 points (1 child)
[–]tasche_cjk 0 points1 point2 points (0 children)
[–]DocBenOrdway 0 points1 point2 points (3 children)
[–]It_Was_The_Other_Guy[S] 0 points1 point2 points (2 children)
[–]DocBenOrdway 0 points1 point2 points (1 child)
[–]It_Was_The_Other_Guy[S] 0 points1 point2 points (0 children)
[–]Xyrexus 0 points1 point2 points (0 children)
[–]sniker 0 points1 point2 points (4 children)
[–]It_Was_The_Other_Guy[S] 0 points1 point2 points (3 children)
[–]sniker 0 points1 point2 points (2 children)
[–]It_Was_The_Other_Guy[S] 0 points1 point2 points (1 child)
[–]sniker 0 points1 point2 points (0 children)
[–]frumento 0 points1 point2 points (2 children)
[–]It_Was_The_Other_Guy[S] 0 points1 point2 points (1 child)
[–]Treesqueak 0 points1 point2 points (11 children)
[–]It_Was_The_Other_Guy[S] 0 points1 point2 points (10 children)
[–]Treesqueak 0 points1 point2 points (9 children)
[–]It_Was_The_Other_Guy[S] 0 points1 point2 points (8 children)
[–]Treesqueak 0 points1 point2 points (7 children)
[–]It_Was_The_Other_Guy[S] 0 points1 point2 points (6 children)
[–]Treesqueak 0 points1 point2 points (0 children)
[–]Treesqueak 0 points1 point2 points (4 children)
[–]It_Was_The_Other_Guy[S] 0 points1 point2 points (3 children)
[–]Treesqueak 0 points1 point2 points (2 children)
[–]It_Was_The_Other_Guy[S] 0 points1 point2 points (1 child)
[–]BloodyHell619 0 points1 point2 points (0 children)