Again, this just my personal taste.
As you can see on attachment below, there is words information about time between one to another post. Flarum called post-stream-time-gap (days later, months later, years later....).
In modern discussion, time is important. Before user respon and reply for specific topic, the have to know what the exacly time from previous posts. Yes, the date is in there. But, Time Gaps information could make Flarum different from others.. And users see this "small warning" before commenting.
Well, this is only for big old forum. If you build new forum, I think it is not necessary to have this hack.. ?
Okay,
Here you have to do and add it to custom CSS to make bigger font and attarctive color. You may change others as you like..
.PostStream-timeGap {
font-size: 18px;
font-style: italic;
background-color: cornsilk;
opacity: .5;
padding-bottom: 5px;
padding-top: 5px;
padding-left: 15px;
}
Now, the mobile version code is here.. (tested on iphone 5)
@media (max-width: 767px){
.PostStream-timeGap {
font-size: 18px;
font-style: italic;
background-color: cornsilk;
opacity: .5;
}
}
Have fun ?