Commit 1fa42e2f authored by Mark Otto's avatar Mark Otto

fix ie7 breadcrumbs per #2224

parent 235811cd
......@@ -2882,6 +2882,10 @@ button.btn.btn-small, input[type="submit"].btn.btn-small {
}
.breadcrumb li {
display: inline-block;
*display: inline;
/* IE7 inline-block hack */
*zoom: 1;
text-shadow: 0 1px 0 #ffffff;
}
.breadcrumb .divider {
......
......@@ -11,6 +11,7 @@
.box-shadow(inset 0 1px 0 @white);
li {
display: inline-block;
.ie7-inline-block();
text-shadow: 0 1px 0 @white;
}
.divider {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment