cleanup breadcrumbs less code (nesting)

This commit is contained in:
Mark Otto 2012-09-25 22:57:49 -07:00
parent ecbf1159a4
commit 2eb4c6fc79
1 changed files with 6 additions and 6 deletions

View File

@ -12,12 +12,12 @@
li {
display: inline-block;
text-shadow: 0 1px 0 @white;
}
li:after {
display: inline-block;
content: "\00a0 /"; // Unicode space added since inline-block means non-collapsing white-space
padding: 0 5px;
color: #ccc;
&:after {
display: inline-block;
content: "\00a0 /"; // Unicode space added since inline-block means non-collapsing white-space
padding: 0 5px;
color: #ccc;
}
}
.active {
color: @grayLight;