The bidi.css file has a surplus background position rule on the row pagination, probably left over from previous changes.
It can be removed by following the step below,
File:
bidi.css
|
Find:
.rtl .row .pagination {
|
background-position: 100% 50%; |
float: left; |
padding-left: 0; |
padding-right: 15px;
|
}
|
Change To:
.rtl .row .pagination {
|
float: left; |
padding-left: 0; |
padding-right: 15px;
|
}
|