Skip to content

Commit

Permalink
[#2599] Fix the display of the breadcrumb in IE8
Browse files Browse the repository at this point in the history
  • Loading branch information
aron committed Jun 26, 2012
1 parent 7567795 commit 09c450b
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions ckan/public/base/less/toolbar.less
Expand Up @@ -6,6 +6,7 @@
}

.toolbar .breadcrumb {
.clearfix;
.box-shadow(none);
position: relative;
float: left;
Expand All @@ -24,10 +25,23 @@
width: auto; // Fix Bootstrap icon widths
}

.ie .toolbar .breadcrumb li {
float: left;
}

.toolbar .breadcrumb li:after {
content: " / ";
}

.ie .toolbar .breadcrumb li:after {
margin: 0 0.2em;
}

.toolbar .breadcrumb li.active:after {
content: "";
}

// Needs to be a separate declaration as IE chokes on the last-of-type.
.toolbar .breadcrumb li:last-of-type:after {
content: "";
}
Expand Down

0 comments on commit 09c450b

Please sign in to comment.