If using an RTL language and you have a signature which contains a list - either OL or UL, it won't be displayed properly, due to a missing rule.
This can be solved by adding a rule to the bidi.css file to match the one in the content.css file.
I have attached both an LTR and an RTL screenshot to show the differences.
File:
bidi.css
|
Find:
.rtl .signature {
|
clear: right;
|
}
|
Add Below:
.rtl .signature ul, .rtl .signature ol {
|
margin: 0.8em 3em 0.9em 0; |
}
|