twbs--bootstrap/scss/_breadcrumb.scss

32 lines
791 B
SCSS
Raw Normal View History

2014-12-02 22:02:35 +00:00
.breadcrumb {
display: flex;
flex-wrap: wrap;
padding: $breadcrumb-padding-y $breadcrumb-padding-x;
margin-bottom: $breadcrumb-margin-bottom;
2014-12-02 22:02:35 +00:00
list-style: none;
background-color: $breadcrumb-bg;
@include border-radius($breadcrumb-border-radius);
}
2014-12-02 22:02:35 +00:00
.breadcrumb-item {
// The separator between breadcrumbs (by default, a forward-slash: "/")
+ .breadcrumb-item {
padding-left: $breadcrumb-item-padding-x;
&::before {
display: inline-block; // Suppress underlining of the separator in modern browsers
padding-right: $breadcrumb-item-padding-x;
color: $breadcrumb-divider-color;
content: $breadcrumb-divider;
}
2014-12-02 22:02:35 +00:00
}
+ .breadcrumb-item:hover::before {
text-decoration: none;
}
&.active {
2014-12-02 22:02:35 +00:00
color: $breadcrumb-active-color;
}
}