When using an RTL language and viewing a topic which contains a block quote, the cite quote icon has padding applied to both sides of it.
This is due to a missing rule in the bidi.css file, the bidi file usually removes the padding from one side and adds it to the other but for this rule it has added the padding to one side but hasn't removed it from the other.
File:
bidi.css
|
Find:
.rtl blockquote cite:before, .rtl .uncited:before {
|
padding-left: 5px;
|
}
|
Change To:
.rtl blockquote cite:before, .rtl .uncited:before {
|
padding-right: 0; |
padding-left: 5px;
|
}
|