If you use an RTL language and you view the memberlist on a small screen (less than 700px - responsive mode) the colon is next to the username, post count and time rather than next to the title,
Example it currently displays... "6:59pm: Joined" rather than... "6:59pm :Joined"
It should be... time > space > colon > joined - rather than... time > colon > space > joined.
I have added a screen shot to show this.
This can be solved by adding a rule to the bidi.css file to match the one in the responsive.css file.
File:
bidi.css
|
Find:
.rtl table.responsive td {
|
text-align: right !important;
|
}
|
Add Below:
.rtl table.responsive td > dfn:after {
|
padding-right: 0; |
padding-left: 5px;
|
}
|