2
0
mirror of https://github.com/erikflowers/weather-icons.git synced 2025-10-12 07:22:11 -06:00

27 lines
594 B
Plaintext
Raw Permalink Normal View History

//
// Breadcrumbs
// --------------------------------------------------
.breadcrumb {
2015-07-31 21:11:08 -07:00
padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal;
margin-bottom: @line-height-computed;
list-style: none;
2015-07-31 21:11:08 -07:00
background-color: @breadcrumb-bg;
border-radius: @border-radius-base;
2015-07-31 21:11:08 -07:00
> li {
display: inline-block;
2015-07-31 21:11:08 -07:00
+ li:before {
content: "@{breadcrumb-separator}\00a0"; // Unicode space added since inline-block means non-collapsing white-space
padding: 0 5px;
2015-07-31 21:11:08 -07:00
color: @breadcrumb-color;
}
}
2015-07-31 21:11:08 -07:00
> .active {
2015-07-31 21:11:08 -07:00
color: @breadcrumb-active-color;
}
}