king
2023-08-15 a94b0a4d15b26ecf8fe99f0a1c3e60d60b97766d
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
.card-item-box.mk-table-header {
  position: relative;
  overflow: hidden;
 
  .mk-content {
    display: inline-block;
    white-space: normal;
    max-width: calc(100% - 20px);
  }
  .sort-wrap {
    position: relative;
    margin-left: 10px;
    font-size: 12px;
    color: #bfbfbf;
    display: inline-block;
 
    .anticon-caret-up {
      position: relative;
      top: -3px;
    }
    .anticon-caret-down {
      position: absolute;
      top: 7px;
      left: 0px;
    }
  }
  .sortable {
    cursor: pointer;
  }
  .sortable.up-sort {
    .anticon-caret-up {
      color: var(--mk-sys-color);
    }
  }
  .sortable.down-sort {
    .anticon-caret-down {
      color: var(--mk-sys-color);
    }
  }
  .sortable:hover {
    .mk-content {
      color: var(--mk-sys-color);
    }
  }
}