{“version”:3,“sources”:,“names”:[],“mappings”:“AAAA,YACE,QAAA,KACA,UAAA,KACA,QAAA,EAAA,EACA,cAAA,EACA,WAAA,KACA,iBAAA,YCDE,cAAA,IDKJ,kCAGI,aAAA,IAHJ,0CAMM,QAAA,aACA,cAAA,IACA,MAAA,KACA,QAAA,IATN,gDAoBI,gBAAA,UApBJ,gDAwBI,gBAAA,KAxBJ,wBA4BI,MAAA,QEtCJ,iBAGM,MAAA,KAKN,0BAEI,MAAA,QACA,gBAAA”,“sourcesContent”:[“.#{$prefix}breadcrumb {n display: flex;n flex-wrap: wrap;n padding: $breadcrumb-padding-y $breadcrumb-padding-x;n margin-bottom: $breadcrumb-margin-bottom;n list-style: none;n background-color: $breadcrumb-bg;n @include border-radius($breadcrumb-border-radius);n}nn.#{$prefix}breadcrumb-item {n // The separator between breadcrumbs (by default, a forward-slash: "/")n + .#{$prefix}breadcrumb-item {n padding-left: $breadcrumb-item-padding;nn &::before {n display: inline-block; // Suppress underlining of the separator in modern browsersn padding-right: $breadcrumb-item-padding;n color: $breadcrumb-divider-color;n content: $breadcrumb-divider;n }n }nn // IE9-11 hack to properly handle hyperlink underlines for breadcrumbs builtn // without `<ul>`s. The `::before` pseudo-element generates an elementn // within the .#{$prefix}breadcrumb-item and thereby inherits the `text-decoration`.n //n // To trick IE into suppressing the underline, we give the pseudo-element ann // underline and then immediately remove it.n + .#{$prefix}breadcrumb-item:hover::before {n text-decoration: underline;n }n // stylelint-disable-next-line no-duplicate-selectorsn + .#{$prefix}breadcrumb-item:hover::before {n text-decoration: none;n }nn &.active {n color: $breadcrumb-active-color;n }n}n”,“// stylelint-disable property-blacklistn// Single side border-radiusnn@mixin border-radius($radius: $border-radius, $fallback-border-radius: false) {n @if $enable-rounded {n border-radius: $radius;n }n @else if $fallback-border-radius != false {n border-radius: $fallback-border-radius;n }n}nn@mixin border-top-radius($radius) {n @if $enable-rounded {n border-top-left-radius: $radius;n border-top-right-radius: $radius;n }n}nn@mixin border-right-radius($radius) {n @if $enable-rounded {n border-top-right-radius: $radius;n border-bottom-right-radius: $radius;n }n}nn@mixin border-bottom-radius($radius) {n @if $enable-rounded {n border-bottom-right-radius: $radius;n border-bottom-left-radius: $radius;n }n}nn@mixin border-left-radius($radius) {n @if $enable-rounded {n border-top-left-radius: $radius;n border-bottom-left-radius: $radius;n }n}nn@mixin border-top-left-radius($radius) {n @if $enable-rounded {n border-top-left-radius: $radius;n }n}nn@mixin border-top-right-radius($radius) {n @if $enable-rounded {n border-top-right-radius: $radius;n }n}nn@mixin border-bottom-right-radius($radius) {n @if $enable-rounded {n border-bottom-right-radius: $radius;n }n}nn@mixin border-bottom-left-radius($radius) {n @if $enable-rounded {n border-bottom-left-radius: $radius;n }n}n”,“.#{$prefix}breadcrumb {n li {n a {n color: $slate;n }n }n}nn.#{$prefix}breadcrumb-item.active {n a {n color: $breadcrumb-active-color;n text-decoration: underline;n }n}n”]}