king
2021-09-10 c66c7b65432af8cdab430b7ac079a4fd75c3d60f
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
56
.mk-source-wrap {
  .mk-source-item-info {
    position: relative;
    line-height: 1.3;
    top: 3px;
    .anticon-paper-clip {
      position: absolute;
      top: 3px;
      color: rgba(0,0,0,.45);
      font-size: 14px;
    }
    .anticon-delete {
      position: absolute;
      top: 3px;
      right: 0px;
      padding-right: 6px;
      color: rgba(0,0,0,.45);
      cursor: pointer;
      display: none;
    }
    a {
      display: inline-block;
      width: 100%;
      padding-left: 22px;
      padding-right: 14px;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
    }
  }
  .mk-source-item-info.picture {
    display: flex;
    img {
      width: 32px;
      height: 32px;
    }
    img + a {
      height: 32px;
      line-height: 32px;
    }
    .anticon-delete {
      top: 8px;
    }
  }
  .mk-source-item-info:hover {
    background-color: #e6f7ff;
    .anticon-delete {
      display: inline-block;
    }
  }
 
  .ant-radio-button-wrapper {
    height: 28px;
    line-height: 26px;
  }
}