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
| .menu-source-item {
| display: inline-block;
| width: 100%;
| margin-bottom: 15px;
| height: auto;
| min-height: 70px;
|
| .property {
| font-size: 14px;
| color: rgba(0, 0, 0, 0.65);
| margin-bottom: 2px;
|
| .anticon-close-circle {
| opacity: 0;
| cursor: pointer;
| padding: 0 3px;
| color: #ff4d4f;
| transition: all 0.3s;
| }
| }
|
| img {
| width: 100%;
| cursor: move;
| box-shadow: 0px 0px 1px #1890ff;
| }
|
| .tooltip-block {
| width: 100%;
| height: 100%;
| background: transparent;
| }
| }
|
| .menu-source-item:hover .property {
| .anticon-close-circle {
| opacity: 1;
| }
| }
|
| .menu-source-tooltip-box {
| margin-left: 20px;
| .ant-tooltip-content {
| width: 250px;
| }
| }
|
|