liuxiaolong
2019-05-06 8700cf1dc46c350371d865532c2914595187788e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Breadcrumbs
//
 
.breadcrumb-item,
.breadcrumb-item a {
  color: $breadcrumb-color;
 
  @include hover {
    color: $breadcrumb-active-color;
  }
}
 
// *******************************************************************************
// * RTL
 
@include rtl-only {
  .breadcrumb-item + .breadcrumb-item::before {
    content: "#{$breadcrumb-divider-rtl}";
  }
}