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
| .view-nodes-modal {
| .ant-modal-body {
| padding: 20px 50px 20px;
| user-select: none;
| }
| .ant-modal-footer {
| display: none;
| }
| .wrap {
| position: relative;
| height: 350px;
| margin: 10px 0px;
| overflow: hidden;
|
| .ant-spin {
| position: absolute;
| top: calc(50% - 16px);
| left: calc(50% - 16px);
| }
| .empty {
| position: relative;
| text-align: center;
| color: #959595;
| padding-top: 200px;
| }
| .empty + .mountNode {
| opacity: 0;
| }
| }
| .header {
| color: #1890ff;
| font-weight: 500;
| text-align: center;
| font-size: 18px;
| }
|
| .footer {
| text-align: center;
| }
| }
|
|