Blame view

src/styles/mixins/breadcrumb.less 649 Bytes
a86e42c0   梁灏   add Breadcrumb UI
1
2
3
4
5
6
7
8
  @breadcrumb-prefix-cls: ~"@{css-prefix}breadcrumb";
  
  .@{breadcrumb-prefix-cls} {
      color: #999;
      font-size: @font-size-base;
  
      a {
          color: @text-color;
e2645048   jingsam   :fire: remove tra...
9
          transition: color @transition-time @ease-in-out;
a86e42c0   梁灏   add Breadcrumb UI
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
          &:hover {
              color: tint(@primary-color, 20%);
          }
      }
  
      & > span:last-child {
          font-weight: bold;
          color: @text-color;
      }
  
      & > span:last-child &-item-separator {
          display: none;
      }
  
      &-item-separator {
          margin: 0 8px;
          color: @border-color-base;
      }
  
      &-item-link {
          > .ivu-icon + span {
              margin-left: 4px;
          }
      }
e2645048   jingsam   :fire: remove tra...
34
  }