diff options
author | Chad Kieffer <ckieffer@gmail.com> | 2009-11-18 22:56:14 -0700 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-11-19 11:55:44 -0800 |
commit | 79b8e7c562fe77c9e12a9e80eb34b83775532448 (patch) | |
tree | 5638a4eff0b052a8819d8b5d2580177cec1fe746 | |
parent | 3164464d58de3c584ca237e539a9642700022993 (diff) |
Remove right padding on li.g-error for RTL. Fixes #904.
-rw-r--r-- | lib/gallery.common.css | 25 |
1 files changed, 16 insertions, 9 deletions
diff --git a/lib/gallery.common.css b/lib/gallery.common.css index 097e7c1e..3a5a1946 100644 --- a/lib/gallery.common.css +++ b/lib/gallery.common.css @@ -675,6 +675,13 @@ div#g-action-status { padding-right: 30px !important; } +.rtl form li.g-error, +.rtl form li.g-info, +.rtl form li.g-success, +.rtl form li.g-warning { + padding-right: 0 !important; +} + .rtl .g-left, .rtl .g-inline li, .rtl #g-content #g-album-grid .g-item, @@ -717,19 +724,11 @@ div#g-action-status { padding-right: 0; } -.rtl .g-paginator .g-info { - width: 35%; -} - -.rtl .g-paginator .g-text-right { - margin-left: 0; -} - .rtl input.checkbox { margin-right: .4em; } -/* Superfish RTL ~~~~~~~~~~~~~~~~~~~~~~~~~ */ +/* RTL Superfish ~~~~~~~~~~~~~~~~~~~~~~~~~ */ .rtl .sf-menu a.sf-with-ul { padding-left: 2.25em; @@ -792,6 +791,14 @@ div#g-action-status { /* RTL paginator ~~~~~~~~~~~~~~~~~~~~~~~~~~ */ +.rtl .g-paginator .g-info { + width: 35%; +} + +.rtl .g-paginator .g-text-right { + margin-left: 0; +} + .rtl .g-paginator .ui-icon-seek-end { background-position: -80px -160px; } |