diff options
author | Chad Kieffer <ckieffer@gmail.com> | 2009-11-18 19:41:13 -0700 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-11-19 11:55:44 -0800 |
commit | 3164464d58de3c584ca237e539a9642700022993 (patch) | |
tree | 10538da5be078827898d2cb573f2bcd4d0a8740d | |
parent | 690ea4a01474d8f0b6d9d19ad87bfbbde33a9b80 (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 |