Please look at the following two examples:
In both cases, the ending time of a block is changed, but because of the right-to-left layout of the wiki, the ending time is shown in an unreadable fashion. The solution would be as simple as applying a "direction:ltr" style to the <span> element which holds the new block expiration time. However, at the moment the span element doesn't have a class attribute; for example, in the first example above, the <span> looks like this:
<span title="2010-11-30T05:16:29Z">2010-11-30T05:16:29Z</span>
Solution would be to make it like this:
<span class="blockExpiry" title="2010-11-30T05:16:29Z">2010-11-30T05:16:29Z</span>
And to add the following to the default RTL CSS file:
.blockExpiry {
direction:ltr;
}
Version: unspecified
Severity: enhancement
See Also:
https://bugzilla.wikimedia.org/show_bug.cgi?id=27485