RTL
danialvosoughi opened this issue · 1 comments
danialvosoughi commented
how can i make flip direction right to left for Persian pdfs?
l33d4n commented
@danialvosoughi RTL flip direction seems to be work by identifying the browser language. It works great with Hebrew.
You only need to add arrows positions for RTL languages:
[dir=rtl] .directions a.prev-button {
right: 0;
background: #f7f6f6 url(pics/alt-next.png) no-repeat center center;
left: auto;
}
[dir=rtl] .directions a.next-button {
right: auto;
background: #f7f6f6 url(pics/alt-prev.png) no-repeat center center;
left: 0;
}