File diff e33121c7dc54 → 32c2469b99f4
static/bootstrap/stylesheets/bootstrap/_breadcrumbs.scss
Show inline comments
 
new file 100644
 
//
 
// Breadcrumbs
 
// --------------------------------------------------
 

	
 

	
 
.breadcrumb {
 
  padding: $breadcrumb-padding-vertical $breadcrumb-padding-horizontal;
 
  margin-bottom: $line-height-computed;
 
  list-style: none;
 
  background-color: $breadcrumb-bg;
 
  border-radius: $border-radius-base;
 

	
 
  > li {
 
    display: inline-block;
 

	
 
    + li:before {
 
      // [converter] Workaround for https://github.com/sass/libsass/issues/1115
 
      $nbsp: "\00a0";
 
      content: "#{$breadcrumb-separator}#{$nbsp}"; // Unicode space added since inline-block means non-collapsing white-space
 
      padding: 0 5px;
 
      color: $breadcrumb-color;
 
    }
 
  }
 

	
 
  > .active {
 
    color: $breadcrumb-active-color;
 
  }
 
}