Not sure if this is the right place to put this so feel free to move it if necessary.
To mind the editing notices below posts in a discussion don't really fit the streamlined look of Flarum which we think would be more elegant to be dealt with as per the editing indicator at the top of posts so for our site we've removed them all except the locked indicator. This is just some self explanatory CSS to go in your Appearance -> Custom Styles -> Edit Custom CSS box.
/* reduces padding around the locked post indicator */
.DiscussionLockedPost {
padding: 2px 0px 0px 105px;
}
/* Removes sticked by indicator */
.DiscussionStickiedPost {
display: none;
}
/* Removes tag change indicator */
.DiscussionTaggedPost {
display: none;
}
/* Removes the time gap in editing indicator */
.PostStream-timeGap {
display: none;
}
These of course are our preferences and you can adjust to how you wish.
Note, this doesn't work on mobile, will see what I can do.
Before:
After: