2012-06-29 06:46:45 +02:00
|
|
|
//
|
|
|
|
// Breadcrumbs
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2011-11-17 08:58:36 +01:00
|
|
|
|
|
|
|
.breadcrumb {
|
2012-07-30 01:25:20 +02:00
|
|
|
padding: 8px 15px;
|
2013-05-10 17:21:27 +02:00
|
|
|
margin: 0 0 @line-height-computed;
|
2012-02-28 06:32:48 +01:00
|
|
|
list-style: none;
|
2012-07-30 01:25:20 +02:00
|
|
|
background-color: #f5f5f5;
|
2012-11-30 23:45:25 +01:00
|
|
|
border-radius: @border-radius-base;
|
2012-12-03 22:09:38 +01:00
|
|
|
> li {
|
2012-02-02 20:02:14 +01:00
|
|
|
display: inline-block;
|
2012-12-01 00:05:23 +01:00
|
|
|
text-shadow: 0 1px 0 #fff;
|
2012-09-26 07:57:49 +02:00
|
|
|
&:after {
|
|
|
|
display: inline-block;
|
|
|
|
content: "\00a0 /"; // Unicode space added since inline-block means non-collapsing white-space
|
|
|
|
padding: 0 5px;
|
|
|
|
color: #ccc;
|
|
|
|
}
|
2013-03-31 15:12:02 +02:00
|
|
|
&:last-child:after {
|
2013-04-29 03:51:02 +02:00
|
|
|
display: none; // No divider after last element
|
2013-03-31 15:12:02 +02:00
|
|
|
}
|
2011-11-17 08:58:36 +01:00
|
|
|
}
|
2012-12-03 22:09:38 +01:00
|
|
|
> .active {
|
2013-04-22 04:35:36 +02:00
|
|
|
color: @gray-light;
|
2011-11-17 08:58:36 +01:00
|
|
|
}
|
|
|
|
}
|