If you are composing a private message when using an RTL language, the recipients names are not correctly aligned under the 'recipients' heading like they are when using a standard LTR language, instead they are almost next to the heading.
I have added screen shots of both LTR and RTL so you can see the difference.
File:
bidi.css
|
Find:
.rtl dl.details dd {
|
margin-right: 0; |
margin-left: 0; |
padding-right: 5px;
|
padding-left: 0; |
float: right; |
}
|
Add Below:
.rtl fieldset.fields1 dd.recipients {
|
clear: right;
|
margin-left: 0; |
margin-right: 1em;
|
}
|