Blame view

node_modules/element-ui/packages/theme-chalk/src/breadcrumb.scss 1012 Bytes
2a09d1a4   liuqimichale   添加宜春 天水 宣化
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
  @import "mixins/mixins";
  @import "mixins/utils";
  @import "common/var";
  
  @include b(breadcrumb) {
    font-size: 14px;
    line-height: 1;
    @include utils-clearfix;
  
    @include e(separator) {
      margin: 0 9px;
      font-weight: bold;
      color: $--color-text-placeholder;
  
      &[class*=icon] {
        margin: 0 6px;
        font-weight: normal;
      }
    }
  
    @include e(item) {
      float: left;
  
      @include e(inner) {
        color: $--color-text-regular;
  
        &.is-link, & a {
          font-weight: bold;
          text-decoration: none;
          transition: $--color-transition-base;
          color: $--color-text-primary;
  
          &:hover {
            color: $--color-primary;
            cursor: pointer;
          }
        }
      }
  
      &:last-child {
        .el-breadcrumb__inner,
        .el-breadcrumb__inner a {
          &, &:hover {
            font-weight: normal;
            color: $--color-text-regular;
            cursor: text;
          }
        }
  
        .el-breadcrumb__separator {
          display: none;
        }
      }
    }
  }