diff options
author | Marc Englund <marc.englund@itmill.com> | 2009-02-12 11:32:07 +0000 |
---|---|---|
committer | Marc Englund <marc.englund@itmill.com> | 2009-02-12 11:32:07 +0000 |
commit | 6e3b79ab28fc99faaba74192d8c4a965fbd49c6a (patch) | |
tree | a6f85172a973f6bf7d6b884ae9e3684e8a3f8b0d | |
parent | 112b67b5e9073be6cf1efe43be5f171c133a37f9 (diff) | |
download | vaadin-framework-6e3b79ab28fc99faaba74192d8c4a965fbd49c6a.tar.gz vaadin-framework-6e3b79ab28fc99faaba74192d8c4a965fbd49c6a.zip |
Adjusted breadcrumbs in IE and FF; fixes #2571
svn changeset:6818/svn branch:trunk
-rw-r--r-- | WebContent/ITMILL/themes/sampler/sampler/styles.css | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/WebContent/ITMILL/themes/sampler/sampler/styles.css b/WebContent/ITMILL/themes/sampler/sampler/styles.css index 2b1fc5c061..538c7dcf25 100644 --- a/WebContent/ITMILL/themes/sampler/sampler/styles.css +++ b/WebContent/ITMILL/themes/sampler/sampler/styles.css @@ -47,6 +47,7 @@ line-height: 13px; padding-top: 3px; display: block; + float: left; } .i-customcomponent-breadcrumbs .i-label { font-size: 13px; @@ -56,6 +57,12 @@ .i-sa .i-customcomponent-breadcrumbs .i-label { padding-top: 3px; } +.i-ie .i-customcomponent-breadcrumbs .i-label { + margin-top: -1px; +} +.i-ff .i-customcomponent-breadcrumbs .i-label { + margin-top: -2px; +} .i-customcomponent-breadcrumbs .i-link span { text-decoration: none; } @@ -66,7 +73,11 @@ .i-customcomponent-breadcrumbs .i-link-bold { height: 20px; padding: 0 0 0 9px; - background: transparent url(breadcrumb-current-left.png); + background: transparent url(breadcrumb-current-left.png) no-repeat; + float: left; +} +.i-ie .i-customcomponent-breadcrumbs .i-link-bold { + margin-top: 1px; } .i-customcomponent-breadcrumbs .i-link-bold a { display: block; @@ -83,6 +94,14 @@ height: 17px; padding-top: 3px; } +.i-ie .i-customcomponent-breadcrumbs .i-link-bold a { + padding-top: 2px; + padding-bottom: 2px; +} +.i-ff .i-customcomponent-breadcrumbs .i-link-bold a { + padding-top: 2px; + padding-bottom: 2px; +} .i-customcomponent-breadcrumbs .i-link-bold a:hover { color: #c2c4c6; } |