Blame view

src/styles/mixins/caret.less 684 Bytes
52874e27   梁灏   update Table
1
2
3
  // sortable
  .sortable() {
      display: inline-block;
e8ee1423   梁灏   optimize Table style
4
      width: 9px;
52874e27   梁灏   update Table
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
      height: 12px;
      margin-left: 4px;
      margin-top: -1px;
      vertical-align: middle;
      overflow: hidden;
      cursor: pointer;
      position: relative;
  
      i {
          display: block;
          height: 6px;
          line-height: 6px;
          overflow: hidden;
          position: absolute;
          color: @btn-disable-color;
          transition: color @transition-time @ease-in-out;
  
          &:hover{
              color: inherit;
          }
  
741b987a   梁灏   update Table
26
27
28
29
          &.on{
              color: @primary-color;
          }
  
52874e27   梁灏   update Table
30
31
32
33
34
35
36
37
          &:first-child{
              top: 0;
          }
          &:last-child{
              bottom: 0;
          }
      }
  }