I entered safe mode on mobile view. While replying to a post, the editor has the cog option at the end. When I tap it, the d-editor-button-bar becomes vertically scrollable instead of displaying a dropdown of the extra options.
I’m assuming a dropdown box should appear? I’m getting this same issue on meta too.
The menu is positioned differently on desktop (position: fixed) vs mobile (position: absolute) so because of CSS magic the overflow-x: auto; on the .d-editor-button-bar container was hiding the menu on mobile but has no effect on desktop.
That overflow-x: auto; property fixes this issue on desktop:
I just added a fix that shows the menu again on mobile by removing overflow-x: auto;
We’ll have to figure out if we can change positioning or do something else to solve the toolbar overflow issue on mobile.