When viewing the pagination using an RTL language, the dropdown arrow faces the wrong way,
The back and forward arrows change to mirror the LTR version, an if statement could be used to change the arrow icon as suggested below.
Original code in the pagination.html template:
<i class="icon fa-level-down fa-rotate-270" aria-hidden="true"></i> |
Could be:
<i class="icon fa-level-<!-- IF S_CONTENT_DIRECTION eq 'rtl' -->up<!-- ELSE -->down<!-- ENDIF --> fa-rotate-270" aria-hidden="true"></i> |