0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-11 03:52:27 +01:00
Bootstrap/less/breadcrumbs.less

25 lines
431 B
Plaintext
Raw Permalink Normal View History

2012-06-28 21:46:45 -07:00
//
// Breadcrumbs
// --------------------------------------------------
.breadcrumb {
padding: 8px 15px;
margin: 0 0 @baseLineHeight;
list-style: none;
background-color: #f5f5f5;
2012-10-03 09:26:52 -07:00
.border-radius(@baseBorderRadius);
> li {
2012-02-02 11:02:14 -08:00
display: inline-block;
2012-03-05 00:36:57 -08:00
.ie7-inline-block();
text-shadow: 0 1px 0 @white;
> .divider {
padding: 0 5px;
color: #ccc;
}
}
> .active {
2012-07-29 16:36:16 -07:00
color: @grayLight;
}
}