diff options
author | Chad Kieffer <ckieffer@gmail.com> | 2009-11-18 19:41:13 -0700 |
---|---|---|
committer | Chad Kieffer <ckieffer@gmail.com> | 2009-11-18 19:41:13 -0700 |
commit | 7f58752ab4537b800f6f563300b7d217da16e0aa (patch) | |
tree | 80d909154e47fb047aceb5a677c447de31133f00 | |
parent | e232c39fe516a9782ec15f4e2a9b4e68f1863a7d (diff) |
Flip paginator arrow icons for RTL. This will help for now, but jQuery UI themes really need to be updated to support RTL http://dev.jqueryui.com/ticket/4702.
-rw-r--r-- | lib/gallery.common.css | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/gallery.common.css b/lib/gallery.common.css index 1ada929f..097e7c1e 100644 --- a/lib/gallery.common.css +++ b/lib/gallery.common.css @@ -789,3 +789,21 @@ div#g-action-status { -webkit-border-top-left-radius: 17px; -webkit-border-bottom-right-radius: 17px; } + +/* RTL paginator ~~~~~~~~~~~~~~~~~~~~~~~~~~ */ + +.rtl .g-paginator .ui-icon-seek-end { + background-position: -80px -160px; +} + +.rtl .g-paginator .ui-icon-seek-next { + background-position: -48px -160px; +} + +.rtl .g-paginator .ui-icon-seek-prev { + background-position: -32px -160px; +} + +.rtl .g-paginator .ui-icon-seek-first { + background-position: -64px -160px; +}
\ No newline at end of file |