Your IP : 216.73.216.95


Current Path : /var/www/alh/admin/view/stylesheet/sass/bootstrap/
Upload File :
Current File : /var/www/alh/admin/view/stylesheet/sass/bootstrap/_breadcrumbs.scss

//
// 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;
    text-shadow: 0 1px #fff;
    + 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;
    }

    &:last-child {
      a {
        color: $brand-primary;
      }
    }
  }

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

}