0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-18 10:52:19 +01:00
Bootstrap/scss/_breadcrumb.scss

24 lines
484 B
SCSS
Raw Normal View History

2014-12-02 14:02:35 -08:00
.breadcrumb {
padding: $breadcrumb-padding-vertical $breadcrumb-padding-horizontal;
margin-bottom: $spacer-y;
2014-12-02 14:02:35 -08:00
list-style: none;
background-color: $breadcrumb-bg;
@include border-radius($border-radius);
@include clearfix;
2014-12-02 14:02:35 -08:00
> li {
float: left;
2014-12-02 14:02:35 -08:00
+ li::before {
2014-12-02 14:02:35 -08:00
padding-right: .5rem;
padding-left: .5rem;
2014-12-02 14:02:35 -08:00
color: $breadcrumb-divider-color;
2015-09-05 20:54:25 -07:00
content: "#{$breadcrumb-divider}";
2014-12-02 14:02:35 -08:00
}
}
> .active {
color: $breadcrumb-active-color;
}
}