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
| .debug-modal {
| .ant-modal-body {
| position: relative;
| padding: 0 0 50px 0;
| overflow: hidden;
| color: rgba(0, 0, 0, 0.85);
|
| .mk-sql-wrap {
| max-height: calc(100vh - 150px);
| min-height: 50vh;
| padding: 15px 20px;
|
| .ant-table-thead > tr > th, .ant-table-tbody > tr > td {
| padding: 12px;
| }
| .anticon {
| font-size: 16px;
| }
| .anticon-clock-circle {
| color: #c8c8c8;
| }
| .anticon-check-circle {
| color: #26C281;
| }
| .anticon-close-circle {
| color: red;
| }
| .anticon-loading {
| color: orange;
| }
| .anticon-deepseek {
| cursor: pointer;
| color: #4D6BFE;
| }
| }
| }
| .mk-footer {
| position: absolute;
| bottom: 0px;
| width: 100%;
| height: 50px;
| line-height: 50px;
| border-top: 1px solid #e8e8e8;
| text-align: right;
| padding-right: 20px;
| .ant-btn:not(:first-child) {
| margin-left: 15px;
| }
| }
| }
|
|