You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
431 B
25 lines
431 B
12 years ago
|
//
|
||
|
// Breadcrumbs
|
||
|
// --------------------------------------------------
|
||
|
|
||
|
|
||
|
.breadcrumb {
|
||
|
padding: 8px 15px;
|
||
|
margin: 0 0 @baseLineHeight;
|
||
|
list-style: none;
|
||
|
background-color: #f5f5f5;
|
||
12 years ago
|
.border-radius(@baseBorderRadius);
|
||
|
> li {
|
||
12 years ago
|
display: inline-block;
|
||
|
.ie7-inline-block();
|
||
|
text-shadow: 0 1px 0 @white;
|
||
12 years ago
|
> .divider {
|
||
|
padding: 0 5px;
|
||
|
color: #ccc;
|
||
|
}
|
||
12 years ago
|
}
|
||
12 years ago
|
> .active {
|
||
12 years ago
|
color: @grayLight;
|
||
|
}
|
||
|
}
|