Today I’m merging an update that changes the default layout of the buttons under each post on mobile devices. This change makes our mobile button layout more consistent with desktop, especially when the reply count is visible (when the enable filtered replies view
site setting is enabled).
https://github.com/discourse/discourse/pull/12760
Before:
After:
If you liked the old layout you can add some CSS to your theme to get back to it:
.mobile-view {
.topic-post {
nav.post-controls .actions {
justify-content: flex-start;
}
&:not(.wiki) {
button.reply {
margin-left: auto;
}
}
&.wiki {
button.create {
margin-left: auto;
}
}
}
}
If you encounter any bugs that may be related to this change, please let us know!