king
2023-10-18 c5e5a7580632bc39a9e0c78d548f22a8be5f2019
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
.debug-modal {
  .ant-drawer-body {
    position: relative;
    height: 100vh;
    padding: 0 0 50px 0;
    overflow: hidden;
    color: rgba(0, 0, 0, 0.85);
 
    .mk-sql-wrap {
      padding: 10px;
 
      .sql-item {
        display: flex;
        min-height: 30px;
 
        .sql-1, .sql-2 {
          flex: 1;
          width: 25%;
          max-width: 25%;
          display: flex;
          align-items: center;
 
          div {
            overflow: hidden;
            word-break: break-word;
            white-space: nowrap;
            text-overflow: ellipsis;
          }
        }
        .sql-3 {
          flex: 1;
          width: 30%;
          max-width: 30%;
          display: flex;
          align-items: center;
 
          div {
            overflow: hidden;
            word-break: break-word;
            white-space: nowrap;
            text-overflow: ellipsis;
          }
        }
        .sql-4 {
          flex: 1;
          width: 20%;
          max-width: 20%;
          display: flex;
          justify-content: center;
          align-items: center;
 
          .anticon {
            font-size: 16px;
          }
          .anticon-clock-circle {
            color: #c8c8c8;
          }
          .anticon-check-circle {
            color: #26C281;
          }
          .anticon-close-circle {
            color: red;
          }
          .anticon-loading {
            color: orange;
          }
        }
      }
      .header {
        border-bottom: 1px solid #e8e8e8;
      }
      .body {
        max-height: calc(100vh - 60px);
        overflow-y: auto;
      }
    }
 
    .mk-sql-wrap .body::-webkit-scrollbar {
      width: 7px;
    }
    .mk-sql-wrap .body::-webkit-scrollbar-thumb {
      border-radius: 5px;
      box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.13);
      background: rgba(0, 0, 0, 0.13);
    }
    .mk-sql-wrap .body::-webkit-scrollbar-track {
      box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
      border-radius: 3px;
      border: 1px solid rgba(0, 0, 0, 0.07);
      background: rgba(0, 0, 0, 0);
    }
  }
  .mk-footer {
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 45px;
    line-height: 50px;
    border-top: 1px solid #e8e8e8;
    text-align: right;
    padding-right: 20px;
    .ant-btn:not(:first-child) {
      margin-left: 15px;
    }
  }
}