Back to home page

EIC code displayed by LXR

 
 

    


Warning, /iDDS/monitor/data/scss/bootstrap/_breadcrumb.scss is written in an unsupported language. File is not indexed.

0001 .breadcrumb {
0002   display: flex;
0003   flex-wrap: wrap;
0004   padding: $breadcrumb-padding-y $breadcrumb-padding-x;
0005   margin-bottom: $breadcrumb-margin-bottom;
0006   @include font-size($breadcrumb-font-size);
0007   list-style: none;
0008   background-color: $breadcrumb-bg;
0009   @include border-radius($breadcrumb-border-radius);
0010 }
0011 
0012 .breadcrumb-item {
0013   // The separator between breadcrumbs (by default, a forward-slash: "/")
0014   + .breadcrumb-item {
0015     padding-left: $breadcrumb-item-padding-x;
0016 
0017     &::before {
0018       float: left; // Suppress inline spacings and underlining of the separator
0019       padding-right: $breadcrumb-item-padding-x;
0020       color: $breadcrumb-divider-color;
0021       content: var(--#{$variable-prefix}breadcrumb-divider, escape-svg($breadcrumb-divider)) #{"/* rtl:"} var(--#{$variable-prefix}breadcrumb-divider, escape-svg($breadcrumb-divider-flipped)) #{"*/"};
0022     }
0023   }
0024 
0025   &.active {
0026     color: $breadcrumb-active-color;
0027   }
0028 }