2012-06-29 00:46:45 -04:00
|
|
|
//
|
|
|
|
// Breadcrumbs
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2011-11-17 02:58:36 -05:00
|
|
|
|
|
|
|
.breadcrumb {
|
2013-12-11 08:36:26 -05:00
|
|
|
padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal;
|
2013-07-19 14:44:35 -04:00
|
|
|
margin-bottom: @line-height-computed;
|
2012-02-28 00:32:48 -05:00
|
|
|
list-style: none;
|
2013-07-19 14:14:13 -04:00
|
|
|
background-color: @breadcrumb-bg;
|
2012-11-30 17:45:25 -05:00
|
|
|
border-radius: @border-radius-base;
|
2012-12-03 16:09:38 -05:00
|
|
|
> li {
|
2013-12-18 16:58:13 -05:00
|
|
|
display: inline;
|
2013-10-15 11:35:11 -04:00
|
|
|
+ li:before {
|
2013-08-28 05:17:46 -04:00
|
|
|
content: "@{breadcrumb-separator}\00a0"; // Unicode space added since inline-block means non-collapsing white-space
|
2012-09-26 01:57:49 -04:00
|
|
|
padding: 0 5px;
|
2013-07-19 14:44:35 -04:00
|
|
|
color: @breadcrumb-color;
|
2012-09-26 01:57:49 -04:00
|
|
|
}
|
2011-11-17 02:58:36 -05:00
|
|
|
}
|
2012-12-03 16:09:38 -05:00
|
|
|
> .active {
|
2013-07-19 14:44:35 -04:00
|
|
|
color: @breadcrumb-active-color;
|
2011-11-17 02:58:36 -05:00
|
|
|
}
|
|
|
|
}
|