diff options
author | Chad Kieffer <ckieffer@gmail.com> | 2009-11-01 19:52:41 -0700 |
---|---|---|
committer | Chad Kieffer <ckieffer@gmail.com> | 2009-11-01 19:52:41 -0700 |
commit | 46b1a48a18c588c1dbca682695de3e0172a33634 (patch) | |
tree | 467d0a5c4bb751cc7da3279f3c4c7c3a3e284cdb | |
parent | 80dedf77d80a3013aec61bd0f011ca611d3bc081 (diff) |
Use pixels to define padding for an element with a bg image instead of ems. Fix breadcrumb seperator display for RTL.
-rw-r--r-- | lib/gallery.common.css | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/gallery.common.css b/lib/gallery.common.css index fc3ed40e..545169f5 100644 --- a/lib/gallery.common.css +++ b/lib/gallery.common.css @@ -502,7 +502,7 @@ div#g-action-status { .g-breadcrumbs li { background: transparent url('images/ico-separator.gif') no-repeat scroll left center; float: left; - padding: 1em .6em 1em 1.4em; + padding: 1em 8px 1em 18px; } .g-breadcrumbs .g-first { @@ -625,6 +625,11 @@ div#g-action-status { margin-right: 0; } +.rtl .g-breadcrumbs li { + background-position: right center; + padding: 1em 18px 1em 8px; +} + .rtl .g-breadcrumbs .g-first { padding-right: 0; } |