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
| .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:hover {
| background-color: #e6f7ff;
| .anticon-delete {
| display: inline-block;
| }
| }
|
| .ant-radio-button-wrapper {
| height: 28px;
| line-height: 26px;
| }
| }
|
|