king
2025-01-09 b372b06dc08d94731223cef2a741fe7a7a6a09bb
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
76
77
78
79
80
81
82
83
84
85
86
87
88
.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;
    }
    .anticon-copy {
      position: absolute;
      top: 3px;
      right: 30px;
      padding-right: 0px;
      color: #26C281;
      cursor: pointer;
      display: none;
    }
    a {
      display: inline-block;
      min-width: 60%;
      max-width: calc(100% - 80px);
      padding-left: 22px;
      padding-right: 0px;
      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, .anticon-copy {
      top: 8px;
    }
  }
  .mk-source-item-info.avatar {
    display: flex;
    top: 0px;
    .anticon-delete, .anticon-copy {
      top: 8px;
    }
  }
  .mk-source-item-info:hover {
    background-color: #e6f7ff;
    .anticon-delete, .anticon-copy {
      display: inline-block;
    }
  }
 
  .ant-radio-button-wrapper {
    height: 28px;
    line-height: 26px;
  }
  .ant-radio-group {
    white-space: nowrap;
  }
}