Socialify

Folder ..

Viewing _pm-breadcrumb-domain.scss
33 lines (34 loc) • 746.0 B

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
 * Breadcrumb domain
 */
.breadcrumb-container {
  @extend .bordered-container;
}
.breadcrumb-item:not(:last-of-type)::after {
  content: '';
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  background: transparent url("#{$path-images}sprite-for-css-only.svg#css-greater") 0 0 no-repeat;
  background-size: 1.4rem;
  position: relative;
  top: 6px;
  opacity: .3;
}
@if $rtl-option == true {
  [dir="rtl"] {
    .breadcrumb-item:not(:last-of-type)::after {
      background-image: url("#{$path-images}sprite-for-css-only.svg#css-lesser");
    }
  }
}
.breadcrumb-button {
  padding: .4em;
  opacity: .3;
  color: inherit;
}
[disabled][aria-current="step"].breadcrumb-button {
  font-weight: bold;
  opacity: 1;
  color: inherit;
}