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
| .view-table-modal {
| .ant-modal {
| top: 30px;
| }
| .ant-modal-body {
| padding: 20px 50px 20px;
| user-select: none;
| }
| .ant-modal-footer {
| display: none;
| }
| .wrap {
| position: relative;
| height: calc(100vh - 175px);
| margin: 10px 0px;
| overflow: hidden;
|
| .mountNode {
| height: 100%;
| }
|
| .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 {
| font-weight: 500;
| text-align: center;
| font-size: 18px;
| white-space: nowrap;
|
| .ant-typography {
| margin-bottom: 0px;
| color: #1890ff;
| display: inline-block;
| .ant-typography-copy {
| font-size: 14px;
| }
| }
| }
|
| .footer {
| position: relative;
| text-align: center;
|
| .tip {
| position: absolute;
| font-size: 12px;
| color: var(--mk-sys-color);
| right: 10px;
| top: 20px;
| }
| }
| .tb-search {
| position: absolute;
| width: 200px;
| z-index: 1;
| right: 40px;
| top: 16px;
| }
| }
|
|