king
2021-07-23 c7414c3cc93649479119d51b230c4b8e36884ca7
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
.request-wrap {
  position: relative;
  padding: 0px 10px;
  height: calc(100vh - 115px);
  overflow-x: hidden;
  overflow-y: auto;
 
  .request-interface {
    background: #ffffff;
    margin-bottom: 10px;
 
    .ant-input-group.ant-input-group-compact > *:not(:last-child) {
      border-right-width: 0px;
    }
    .ant-select-selection {
      height: 40px;
      width: 90px;
    }
    .ant-select-selection__rendered {
      line-height: 40px;
    }
    .ant-input {
      height: 40px;
      width: calc(100% - 100px);
    }
    .ant-input-group {
      display: inline-block;
      width: calc(100% - 210px);
      vertical-align: top;
    }
    .ant-btn {
      height: 40px;
      width: 90px;
    }
    .ant-btn-primary {
      margin-right: 10px;
    }
  }
  .ant-tabs.ant-tabs-line {
    .ant-tabs-top-bar {
      margin-bottom: 0px;
      border: 0;
      .ant-tabs-nav {
        .ant-tabs-tab {
          color: rgba(0, 0, 0, 0.65);
          padding-bottom: 5px;
          span {
            position: relative;
          }
          .number {
            color: #26C281;
            margin-left: 3px;
            font-size: 13px;
          }
          span.active::after {
            content: ' ';
            display: block;
            position: absolute;
            right: -12px;
            top: 2px;
            width: 8px;
            height: 8px;
            border-radius: 8px;
            background-color: #26C281;
          }
        }
        .ant-tabs-tab.ant-tabs-tab-active {
          color: rgba(0, 0, 0, 0.85);
        }
      }
      .ant-tabs-ink-bar {
        background-color: #fa541c;
      }
    }
  }
  .body-class {
    height: 40px;
    line-height: 40px;
    padding-left: 15px;
    border-top: 1px solid #e8e8e8;
    .ant-radio-wrapper {
      margin-right: 20px;
    }
  }
  .body-content {
    display: none;
    .no-body {
      color: rgba(0, 0, 0, 0.45);
      border-top: 1px solid #e8e8e8;
      border-bottom: 1px solid #e8e8e8;
      text-align: center;
      height: 40px;
      line-height: 40px;
    }
    .CodeMirror {
      height: 200px;
      line-height: 1.5;
    }
  }
  .body-content.show {
    display: block;
  }
  .anticon-fullscreen {
    display: none;
  }
  .code-mirror-wrap .code-mirror-area {
    border-radius: 0;
  }
  .response {
    position: relative;
    min-height: 400px;
    border-left: 1px solid #e8e8e8;
    border-right: 1px solid #e8e8e8;
    .header {
      position: relative;
      height: 40px;
      background-color: #fafafa;
      line-height: 40px;
      padding-left: 10px;
      border-bottom: 1px solid #e8e8e8;
      .empty {
        position: absolute;
        top: 150px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 20px;
        color:rgba(0, 0, 0, 0.45)
      }
      .status {
        font-size: 13px;
        float: right;
        margin-right: 40px;
        span.green {
          color: #26C281;
        }
        span.yellow {
          color: #fa541c;
        }
      }
    }
    .pending {
      position: absolute;
      left: 50%;
      top: 160px;
    }
  }
}
 
.request-wrap::-webkit-scrollbar {
  width: 5px;
}
.request-wrap::-webkit-scrollbar-thumb {
  border-radius: 5px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.09);
  background: rgba(0, 0, 0, 0.09);
}
.request-wrap::-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);
}