king
2022-06-18 fe21d23b147ed5cec22b4f76a88840b05495d4ad
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
.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: #f5222d;
      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-avatar {
      color: #1890ff;
      display: inline-block;
      width: 100%;
      padding-left: 5px;
      padding-right: 14px;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
      height: 32px;
      line-height: 32px;
    }
  }
  .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.avatar {
    display: flex;
    top: 0px;
    .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;
  }
}