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