graphiql-rails 1.8.0 → 1.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/javascripts/graphiql/rails/application.js +3 -3
- data/app/assets/javascripts/graphiql/rails/graphiql-2.4.0.js +71267 -0
- data/app/assets/javascripts/graphiql/rails/graphiql_show.js +4 -3
- data/app/assets/javascripts/graphiql/rails/react-17.0.2.js +31 -0
- data/app/assets/javascripts/graphiql/rails/react-dom-17.0.2.js +245 -0
- data/app/assets/stylesheets/graphiql/rails/application.css +1 -1
- data/app/assets/stylesheets/graphiql/rails/graphiql-2.4.0.css +651 -0
- data/app/views/graphiql/rails/editors/show.html.erb +2 -1
- data/lib/graphiql/rails/config.rb +1 -1
- data/lib/graphiql/rails/version.rb +1 -1
- metadata +6 -6
- data/app/assets/javascripts/graphiql/rails/graphiql-1.4.2.js +0 -3642
- data/app/assets/javascripts/graphiql/rails/react-16.14.0.js +0 -32
- data/app/assets/javascripts/graphiql/rails/react-dom-16.14.0.js +0 -239
- data/app/assets/stylesheets/graphiql/rails/graphiql-1.4.2.css +0 -1701
@@ -1,1701 +0,0 @@
|
|
1
|
-
.graphiql-container,
|
2
|
-
.graphiql-container button,
|
3
|
-
.graphiql-container input {
|
4
|
-
color: #141823;
|
5
|
-
font-family:
|
6
|
-
system,
|
7
|
-
-apple-system,
|
8
|
-
'San Francisco',
|
9
|
-
'.SFNSDisplay-Regular',
|
10
|
-
'Segoe UI',
|
11
|
-
Segoe,
|
12
|
-
'Segoe WP',
|
13
|
-
'Helvetica Neue',
|
14
|
-
helvetica,
|
15
|
-
'Lucida Grande',
|
16
|
-
arial,
|
17
|
-
sans-serif;
|
18
|
-
font-size: 14px;
|
19
|
-
}
|
20
|
-
|
21
|
-
.graphiql-container {
|
22
|
-
display: flex;
|
23
|
-
flex-direction: row;
|
24
|
-
height: 100%;
|
25
|
-
margin: 0;
|
26
|
-
overflow: hidden;
|
27
|
-
width: 100%;
|
28
|
-
}
|
29
|
-
|
30
|
-
.graphiql-container .editorWrap {
|
31
|
-
display: flex;
|
32
|
-
flex-direction: column;
|
33
|
-
flex: 1;
|
34
|
-
overflow-x: hidden;
|
35
|
-
}
|
36
|
-
|
37
|
-
.graphiql-container .title {
|
38
|
-
font-size: 18px;
|
39
|
-
}
|
40
|
-
|
41
|
-
.graphiql-container .title em {
|
42
|
-
font-family: georgia;
|
43
|
-
font-size: 19px;
|
44
|
-
}
|
45
|
-
|
46
|
-
.graphiql-container .topBarWrap {
|
47
|
-
display: flex;
|
48
|
-
flex-direction: row;
|
49
|
-
}
|
50
|
-
|
51
|
-
.graphiql-container .topBar {
|
52
|
-
align-items: center;
|
53
|
-
background: linear-gradient(#f7f7f7, #e2e2e2);
|
54
|
-
border-bottom: 1px solid #d0d0d0;
|
55
|
-
cursor: default;
|
56
|
-
display: flex;
|
57
|
-
flex-direction: row;
|
58
|
-
flex: 1;
|
59
|
-
height: 34px;
|
60
|
-
overflow-y: visible;
|
61
|
-
padding: 7px 14px 6px;
|
62
|
-
user-select: none;
|
63
|
-
}
|
64
|
-
|
65
|
-
.graphiql-container .toolbar {
|
66
|
-
overflow-x: visible;
|
67
|
-
display: flex;
|
68
|
-
}
|
69
|
-
|
70
|
-
.graphiql-container .docExplorerShow,
|
71
|
-
.graphiql-container .historyShow {
|
72
|
-
background: linear-gradient(#f7f7f7, #e2e2e2);
|
73
|
-
border-radius: 0;
|
74
|
-
border-bottom: 1px solid #d0d0d0;
|
75
|
-
border-right: none;
|
76
|
-
border-top: none;
|
77
|
-
color: #3B5998;
|
78
|
-
cursor: pointer;
|
79
|
-
font-size: 14px;
|
80
|
-
margin: 0;
|
81
|
-
padding: 2px 20px 0 18px;
|
82
|
-
}
|
83
|
-
|
84
|
-
.graphiql-container .docExplorerShow {
|
85
|
-
border-left: 1px solid rgba(0, 0, 0, 0.2);
|
86
|
-
}
|
87
|
-
|
88
|
-
.graphiql-container .historyShow {
|
89
|
-
border-right: 1px solid rgba(0, 0, 0, 0.2);
|
90
|
-
border-left: 0;
|
91
|
-
}
|
92
|
-
|
93
|
-
.graphiql-container .docExplorerShow:before {
|
94
|
-
border-left: 2px solid #3B5998;
|
95
|
-
border-top: 2px solid #3B5998;
|
96
|
-
content: '';
|
97
|
-
display: inline-block;
|
98
|
-
height: 9px;
|
99
|
-
margin: 0 3px -1px 0;
|
100
|
-
position: relative;
|
101
|
-
transform: rotate(-45deg);
|
102
|
-
width: 9px;
|
103
|
-
}
|
104
|
-
|
105
|
-
.graphiql-container .editorBar {
|
106
|
-
display: flex;
|
107
|
-
flex-direction: row;
|
108
|
-
flex: 1;
|
109
|
-
}
|
110
|
-
|
111
|
-
.graphiql-container .queryWrap {
|
112
|
-
display: flex;
|
113
|
-
flex-direction: column;
|
114
|
-
flex: 1;
|
115
|
-
}
|
116
|
-
|
117
|
-
.graphiql-container .resultWrap {
|
118
|
-
border-left: solid 1px #e0e0e0;
|
119
|
-
display: flex;
|
120
|
-
flex-direction: column;
|
121
|
-
flex: 1;
|
122
|
-
flex-basis: 1em;
|
123
|
-
position: relative;
|
124
|
-
}
|
125
|
-
|
126
|
-
.graphiql-container .docExplorerWrap,
|
127
|
-
.graphiql-container .historyPaneWrap {
|
128
|
-
background: white;
|
129
|
-
box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
|
130
|
-
position: relative;
|
131
|
-
z-index: 3;
|
132
|
-
}
|
133
|
-
|
134
|
-
.graphiql-container .historyPaneWrap {
|
135
|
-
min-width: 230px;
|
136
|
-
z-index: 5;
|
137
|
-
}
|
138
|
-
|
139
|
-
.graphiql-container .docExplorerResizer {
|
140
|
-
cursor: col-resize;
|
141
|
-
height: 100%;
|
142
|
-
left: -5px;
|
143
|
-
position: absolute;
|
144
|
-
top: 0;
|
145
|
-
width: 10px;
|
146
|
-
z-index: 10;
|
147
|
-
}
|
148
|
-
|
149
|
-
.graphiql-container .docExplorerHide {
|
150
|
-
cursor: pointer;
|
151
|
-
font-size: 18px;
|
152
|
-
margin: -7px -8px -6px 0;
|
153
|
-
padding: 18px 16px 15px 12px;
|
154
|
-
background: 0;
|
155
|
-
border: 0;
|
156
|
-
line-height: 14px;
|
157
|
-
}
|
158
|
-
|
159
|
-
.graphiql-container div .query-editor {
|
160
|
-
flex: 1;
|
161
|
-
position: relative;
|
162
|
-
}
|
163
|
-
|
164
|
-
.graphiql-container .secondary-editor {
|
165
|
-
display: flex;
|
166
|
-
flex-direction: column;
|
167
|
-
height: 30px;
|
168
|
-
position: relative;
|
169
|
-
}
|
170
|
-
|
171
|
-
.graphiql-container .secondary-editor-title {
|
172
|
-
background: #eeeeee;
|
173
|
-
border-bottom: 1px solid #d6d6d6;
|
174
|
-
border-top: 1px solid #e0e0e0;
|
175
|
-
color: #777;
|
176
|
-
font-variant: small-caps;
|
177
|
-
font-weight: bold;
|
178
|
-
letter-spacing: 1px;
|
179
|
-
line-height: 14px;
|
180
|
-
padding: 6px 0 8px 43px;
|
181
|
-
text-transform: lowercase;
|
182
|
-
user-select: none;
|
183
|
-
}
|
184
|
-
|
185
|
-
.graphiql-container .codemirrorWrap {
|
186
|
-
flex: 1;
|
187
|
-
height: 100%;
|
188
|
-
position: relative;
|
189
|
-
}
|
190
|
-
|
191
|
-
.graphiql-container .result-window {
|
192
|
-
flex: 1;
|
193
|
-
height: 100%;
|
194
|
-
position: relative;
|
195
|
-
}
|
196
|
-
|
197
|
-
.graphiql-container .footer {
|
198
|
-
background: #f6f7f8;
|
199
|
-
border-left: 1px solid #e0e0e0;
|
200
|
-
border-top: 1px solid #e0e0e0;
|
201
|
-
margin-left: 12px;
|
202
|
-
position: relative;
|
203
|
-
}
|
204
|
-
|
205
|
-
.graphiql-container .footer:before {
|
206
|
-
background: #eeeeee;
|
207
|
-
bottom: 0;
|
208
|
-
content: " ";
|
209
|
-
left: -13px;
|
210
|
-
position: absolute;
|
211
|
-
top: -1px;
|
212
|
-
width: 12px;
|
213
|
-
}
|
214
|
-
|
215
|
-
/* No `.graphiql-container` here so themes can overwrite */
|
216
|
-
|
217
|
-
.result-window .CodeMirror {
|
218
|
-
background: #f6f7f8;
|
219
|
-
}
|
220
|
-
|
221
|
-
.graphiql-container .result-window .CodeMirror-gutters {
|
222
|
-
background-color: #eeeeee;
|
223
|
-
border-color: #e0e0e0;
|
224
|
-
cursor: col-resize;
|
225
|
-
}
|
226
|
-
|
227
|
-
.graphiql-container .result-window .CodeMirror-foldgutter,
|
228
|
-
.graphiql-container .result-window .CodeMirror-foldgutter-open:after,
|
229
|
-
.graphiql-container .result-window .CodeMirror-foldgutter-folded:after {
|
230
|
-
padding-left: 3px;
|
231
|
-
}
|
232
|
-
|
233
|
-
.graphiql-container .toolbar-button {
|
234
|
-
background: #fdfdfd;
|
235
|
-
background: linear-gradient(#f9f9f9, #ececec);
|
236
|
-
border: 0;
|
237
|
-
border-radius: 3px;
|
238
|
-
box-shadow:
|
239
|
-
inset 0 0 0 1px rgba(0,0,0,0.20),
|
240
|
-
0 1px 0 rgba(255,255,255, 0.7),
|
241
|
-
inset 0 1px #fff;
|
242
|
-
color: #555;
|
243
|
-
cursor: pointer;
|
244
|
-
display: inline-block;
|
245
|
-
margin: 0 5px;
|
246
|
-
padding: 3px 11px 5px;
|
247
|
-
text-decoration: none;
|
248
|
-
text-overflow: ellipsis;
|
249
|
-
white-space: nowrap;
|
250
|
-
max-width: 150px;
|
251
|
-
}
|
252
|
-
|
253
|
-
.graphiql-container .toolbar-button:active {
|
254
|
-
background: linear-gradient(#ececec, #d5d5d5);
|
255
|
-
box-shadow:
|
256
|
-
0 1px 0 rgba(255, 255, 255, 0.7),
|
257
|
-
inset 0 0 0 1px rgba(0,0,0,0.10),
|
258
|
-
inset 0 1px 1px 1px rgba(0, 0, 0, 0.12),
|
259
|
-
inset 0 0 5px rgba(0, 0, 0, 0.1);
|
260
|
-
}
|
261
|
-
|
262
|
-
.graphiql-container .toolbar-button.error {
|
263
|
-
background: linear-gradient(#fdf3f3, #e6d6d7);
|
264
|
-
color: #b00;
|
265
|
-
}
|
266
|
-
|
267
|
-
.graphiql-container .toolbar-button-group {
|
268
|
-
margin: 0 5px;
|
269
|
-
white-space: nowrap;
|
270
|
-
}
|
271
|
-
|
272
|
-
.graphiql-container .toolbar-button-group > * {
|
273
|
-
margin: 0;
|
274
|
-
}
|
275
|
-
|
276
|
-
.graphiql-container .toolbar-button-group > *:not(:last-child) {
|
277
|
-
border-top-right-radius: 0;
|
278
|
-
border-bottom-right-radius: 0;
|
279
|
-
}
|
280
|
-
|
281
|
-
.graphiql-container .toolbar-button-group > *:not(:first-child) {
|
282
|
-
border-top-left-radius: 0;
|
283
|
-
border-bottom-left-radius: 0;
|
284
|
-
margin-left: -1px;
|
285
|
-
}
|
286
|
-
|
287
|
-
.graphiql-container .execute-button-wrap {
|
288
|
-
height: 34px;
|
289
|
-
margin: 0 14px 0 28px;
|
290
|
-
position: relative;
|
291
|
-
}
|
292
|
-
|
293
|
-
.graphiql-container .execute-button {
|
294
|
-
background: linear-gradient(#fdfdfd, #d2d3d6);
|
295
|
-
border-radius: 17px;
|
296
|
-
border: 1px solid rgba(0,0,0,0.25);
|
297
|
-
box-shadow: 0 1px 0 #fff;
|
298
|
-
cursor: pointer;
|
299
|
-
fill: #444;
|
300
|
-
height: 34px;
|
301
|
-
margin: 0;
|
302
|
-
padding: 0;
|
303
|
-
width: 34px;
|
304
|
-
}
|
305
|
-
|
306
|
-
.graphiql-container .execute-button svg {
|
307
|
-
pointer-events: none;
|
308
|
-
}
|
309
|
-
|
310
|
-
.graphiql-container .execute-button:active {
|
311
|
-
background: linear-gradient(#e6e6e6, #c3c3c3);
|
312
|
-
box-shadow:
|
313
|
-
0 1px 0 #fff,
|
314
|
-
inset 0 0 2px rgba(0, 0, 0, 0.2),
|
315
|
-
inset 0 0 6px rgba(0, 0, 0, 0.1);
|
316
|
-
}
|
317
|
-
|
318
|
-
.graphiql-container .toolbar-menu,
|
319
|
-
.graphiql-container .toolbar-select {
|
320
|
-
position: relative;
|
321
|
-
}
|
322
|
-
|
323
|
-
.graphiql-container .execute-options,
|
324
|
-
.graphiql-container .toolbar-menu-items,
|
325
|
-
.graphiql-container .toolbar-select-options {
|
326
|
-
background: #fff;
|
327
|
-
box-shadow:
|
328
|
-
0 0 0 1px rgba(0,0,0,0.1),
|
329
|
-
0 2px 4px rgba(0,0,0,0.25);
|
330
|
-
margin: 0;
|
331
|
-
padding: 6px 0;
|
332
|
-
position: absolute;
|
333
|
-
z-index: 100;
|
334
|
-
}
|
335
|
-
|
336
|
-
.graphiql-container .execute-options {
|
337
|
-
min-width: 100px;
|
338
|
-
top: 37px;
|
339
|
-
left: -1px;
|
340
|
-
}
|
341
|
-
|
342
|
-
.graphiql-container .toolbar-menu-items {
|
343
|
-
left: 1px;
|
344
|
-
margin-top: -1px;
|
345
|
-
min-width: 110%;
|
346
|
-
top: 100%;
|
347
|
-
visibility: hidden;
|
348
|
-
}
|
349
|
-
|
350
|
-
.graphiql-container .toolbar-menu-items.open {
|
351
|
-
visibility: visible;
|
352
|
-
}
|
353
|
-
|
354
|
-
.graphiql-container .toolbar-select-options {
|
355
|
-
left: 0;
|
356
|
-
min-width: 100%;
|
357
|
-
top: -5px;
|
358
|
-
visibility: hidden;
|
359
|
-
}
|
360
|
-
|
361
|
-
.graphiql-container .toolbar-select-options.open {
|
362
|
-
visibility: visible;
|
363
|
-
}
|
364
|
-
|
365
|
-
.graphiql-container .execute-options > li,
|
366
|
-
.graphiql-container .toolbar-menu-items > li,
|
367
|
-
.graphiql-container .toolbar-select-options > li {
|
368
|
-
cursor: pointer;
|
369
|
-
display: block;
|
370
|
-
margin: none;
|
371
|
-
max-width: 300px;
|
372
|
-
overflow: hidden;
|
373
|
-
padding: 2px 20px 4px 11px;
|
374
|
-
white-space: nowrap;
|
375
|
-
}
|
376
|
-
|
377
|
-
.graphiql-container .execute-options > li.selected,
|
378
|
-
.graphiql-container .toolbar-menu-items > li.hover,
|
379
|
-
.graphiql-container .toolbar-menu-items > li:active,
|
380
|
-
.graphiql-container .toolbar-menu-items > li:hover,
|
381
|
-
.graphiql-container .toolbar-select-options > li.hover,
|
382
|
-
.graphiql-container .toolbar-select-options > li:active,
|
383
|
-
.graphiql-container .toolbar-select-options > li:hover,
|
384
|
-
.graphiql-container .history-contents > li:hover,
|
385
|
-
.graphiql-container .history-contents > li:active {
|
386
|
-
background: #e10098;
|
387
|
-
color: #fff;
|
388
|
-
}
|
389
|
-
|
390
|
-
.graphiql-container .toolbar-select-options > li > svg {
|
391
|
-
display: inline;
|
392
|
-
fill: #666;
|
393
|
-
margin: 0 -6px 0 6px;
|
394
|
-
pointer-events: none;
|
395
|
-
vertical-align: middle;
|
396
|
-
}
|
397
|
-
|
398
|
-
.graphiql-container .toolbar-select-options > li.hover > svg,
|
399
|
-
.graphiql-container .toolbar-select-options > li:active > svg,
|
400
|
-
.graphiql-container .toolbar-select-options > li:hover > svg {
|
401
|
-
fill: #fff;
|
402
|
-
}
|
403
|
-
|
404
|
-
.graphiql-container .CodeMirror-scroll {
|
405
|
-
overflow-scrolling: touch;
|
406
|
-
}
|
407
|
-
|
408
|
-
.graphiql-container .CodeMirror {
|
409
|
-
color: #141823;
|
410
|
-
font-family:
|
411
|
-
'Consolas',
|
412
|
-
'Inconsolata',
|
413
|
-
'Droid Sans Mono',
|
414
|
-
'Monaco',
|
415
|
-
monospace;
|
416
|
-
font-size: 13px;
|
417
|
-
height: 100%;
|
418
|
-
left: 0;
|
419
|
-
position: absolute;
|
420
|
-
top: 0;
|
421
|
-
width: 100%;
|
422
|
-
}
|
423
|
-
|
424
|
-
.graphiql-container .CodeMirror-lines {
|
425
|
-
padding: 20px 0;
|
426
|
-
}
|
427
|
-
|
428
|
-
.CodeMirror-hint-information .content {
|
429
|
-
box-orient: vertical;
|
430
|
-
color: #141823;
|
431
|
-
display: flex;
|
432
|
-
font-family: system, -apple-system, 'San Francisco', '.SFNSDisplay-Regular', 'Segoe UI', Segoe, 'Segoe WP', 'Helvetica Neue', helvetica, 'Lucida Grande', arial, sans-serif;
|
433
|
-
font-size: 13px;
|
434
|
-
line-clamp: 3;
|
435
|
-
line-height: 16px;
|
436
|
-
max-height: 48px;
|
437
|
-
overflow: hidden;
|
438
|
-
text-overflow: -o-ellipsis-lastline;
|
439
|
-
}
|
440
|
-
|
441
|
-
.CodeMirror-hint-information .content p:first-child {
|
442
|
-
margin-top: 0;
|
443
|
-
}
|
444
|
-
|
445
|
-
.CodeMirror-hint-information .content p:last-child {
|
446
|
-
margin-bottom: 0;
|
447
|
-
}
|
448
|
-
|
449
|
-
.CodeMirror-hint-information .infoType {
|
450
|
-
color: #CA9800;
|
451
|
-
cursor: pointer;
|
452
|
-
display: inline;
|
453
|
-
margin-right: 0.5em;
|
454
|
-
}
|
455
|
-
|
456
|
-
.autoInsertedLeaf.cm-property {
|
457
|
-
animation-duration: 6s;
|
458
|
-
animation-name: insertionFade;
|
459
|
-
border-bottom: 2px solid rgba(255, 255, 255, 0);
|
460
|
-
border-radius: 2px;
|
461
|
-
margin: -2px -4px -1px;
|
462
|
-
padding: 2px 4px 1px;
|
463
|
-
}
|
464
|
-
|
465
|
-
@keyframes insertionFade {
|
466
|
-
from, to {
|
467
|
-
background: rgba(255, 255, 255, 0);
|
468
|
-
border-color: rgba(255, 255, 255, 0);
|
469
|
-
}
|
470
|
-
|
471
|
-
15%, 85% {
|
472
|
-
background: #fbffc9;
|
473
|
-
border-color: #f0f3c0;
|
474
|
-
}
|
475
|
-
}
|
476
|
-
|
477
|
-
div.CodeMirror-lint-tooltip {
|
478
|
-
background-color: white;
|
479
|
-
border-radius: 2px;
|
480
|
-
border: 0;
|
481
|
-
color: #141823;
|
482
|
-
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
|
483
|
-
font-size: 13px;
|
484
|
-
line-height: 16px;
|
485
|
-
max-width: 430px;
|
486
|
-
opacity: 0;
|
487
|
-
padding: 8px 10px;
|
488
|
-
transition: opacity 0.15s;
|
489
|
-
white-space: pre-wrap;
|
490
|
-
}
|
491
|
-
|
492
|
-
div.CodeMirror-lint-tooltip > * {
|
493
|
-
padding-left: 23px;
|
494
|
-
}
|
495
|
-
|
496
|
-
div.CodeMirror-lint-tooltip > * + * {
|
497
|
-
margin-top: 12px;
|
498
|
-
}
|
499
|
-
|
500
|
-
/* COLORS */
|
501
|
-
|
502
|
-
.graphiql-container .CodeMirror-foldmarker {
|
503
|
-
border-radius: 4px;
|
504
|
-
background: #08f;
|
505
|
-
background: linear-gradient(#43A8FF, #0F83E8);
|
506
|
-
box-shadow:
|
507
|
-
0 1px 1px rgba(0, 0, 0, 0.2),
|
508
|
-
inset 0 0 0 1px rgba(0, 0, 0, 0.1);
|
509
|
-
color: white;
|
510
|
-
font-family: arial;
|
511
|
-
font-size: 12px;
|
512
|
-
line-height: 0;
|
513
|
-
margin: 0 3px;
|
514
|
-
padding: 0px 4px 1px;
|
515
|
-
text-shadow: 0 -1px rgba(0, 0, 0, 0.1);
|
516
|
-
}
|
517
|
-
|
518
|
-
.graphiql-container div.CodeMirror span.CodeMirror-matchingbracket {
|
519
|
-
color: #555;
|
520
|
-
text-decoration: underline;
|
521
|
-
}
|
522
|
-
|
523
|
-
.graphiql-container div.CodeMirror span.CodeMirror-nonmatchingbracket {
|
524
|
-
color: #f00;
|
525
|
-
}
|
526
|
-
|
527
|
-
/* Comment */
|
528
|
-
|
529
|
-
.cm-comment {
|
530
|
-
color: #999;
|
531
|
-
}
|
532
|
-
|
533
|
-
/* Punctuation */
|
534
|
-
|
535
|
-
.cm-punctuation {
|
536
|
-
color: #555;
|
537
|
-
}
|
538
|
-
|
539
|
-
/* Keyword */
|
540
|
-
|
541
|
-
.cm-keyword {
|
542
|
-
color: #B11A04;
|
543
|
-
}
|
544
|
-
|
545
|
-
/* OperationName, FragmentName */
|
546
|
-
|
547
|
-
.cm-def {
|
548
|
-
color: #D2054E;
|
549
|
-
}
|
550
|
-
|
551
|
-
/* FieldName */
|
552
|
-
|
553
|
-
.cm-property {
|
554
|
-
color: #1F61A0;
|
555
|
-
}
|
556
|
-
|
557
|
-
/* FieldAlias */
|
558
|
-
|
559
|
-
.cm-qualifier {
|
560
|
-
color: #1C92A9;
|
561
|
-
}
|
562
|
-
|
563
|
-
/* ArgumentName and ObjectFieldName */
|
564
|
-
|
565
|
-
.cm-attribute {
|
566
|
-
color: #8B2BB9;
|
567
|
-
}
|
568
|
-
|
569
|
-
/* Number */
|
570
|
-
|
571
|
-
.cm-number {
|
572
|
-
color: #2882F9;
|
573
|
-
}
|
574
|
-
|
575
|
-
/* String */
|
576
|
-
|
577
|
-
.cm-string {
|
578
|
-
color: #D64292;
|
579
|
-
}
|
580
|
-
|
581
|
-
/* Boolean */
|
582
|
-
|
583
|
-
.cm-builtin {
|
584
|
-
color: #D47509;
|
585
|
-
}
|
586
|
-
|
587
|
-
/* EnumValue */
|
588
|
-
|
589
|
-
.cm-string-2 {
|
590
|
-
color: #0B7FC7;
|
591
|
-
}
|
592
|
-
|
593
|
-
/* Variable */
|
594
|
-
|
595
|
-
.cm-variable {
|
596
|
-
color: #397D13;
|
597
|
-
}
|
598
|
-
|
599
|
-
/* Directive */
|
600
|
-
|
601
|
-
.cm-meta {
|
602
|
-
color: #B33086;
|
603
|
-
}
|
604
|
-
|
605
|
-
/* Type */
|
606
|
-
|
607
|
-
.cm-atom {
|
608
|
-
color: #CA9800;
|
609
|
-
}
|
610
|
-
|
611
|
-
/* BASICS */
|
612
|
-
|
613
|
-
.CodeMirror {
|
614
|
-
/* Set height, width, borders, and global font properties here */
|
615
|
-
color: black;
|
616
|
-
font-family: monospace;
|
617
|
-
height: 300px;
|
618
|
-
}
|
619
|
-
|
620
|
-
/* PADDING */
|
621
|
-
|
622
|
-
.CodeMirror-lines {
|
623
|
-
padding: 4px 0; /* Vertical padding around content */
|
624
|
-
}
|
625
|
-
|
626
|
-
.CodeMirror pre {
|
627
|
-
padding: 0 4px; /* Horizontal padding of content */
|
628
|
-
}
|
629
|
-
|
630
|
-
.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
|
631
|
-
background-color: white; /* The little square between H and V scrollbars */
|
632
|
-
}
|
633
|
-
|
634
|
-
/* GUTTER */
|
635
|
-
|
636
|
-
.CodeMirror-gutters {
|
637
|
-
border-right: 1px solid #ddd;
|
638
|
-
background-color: #f7f7f7;
|
639
|
-
white-space: nowrap;
|
640
|
-
}
|
641
|
-
|
642
|
-
.CodeMirror-linenumbers {}
|
643
|
-
|
644
|
-
.CodeMirror-linenumber {
|
645
|
-
color: #999;
|
646
|
-
min-width: 20px;
|
647
|
-
padding: 0 3px 0 5px;
|
648
|
-
text-align: right;
|
649
|
-
white-space: nowrap;
|
650
|
-
}
|
651
|
-
|
652
|
-
.CodeMirror-guttermarker { color: black; }
|
653
|
-
|
654
|
-
.CodeMirror-guttermarker-subtle { color: #999; }
|
655
|
-
|
656
|
-
/* CURSOR */
|
657
|
-
|
658
|
-
.CodeMirror .CodeMirror-cursor {
|
659
|
-
border-left: 1px solid black;
|
660
|
-
}
|
661
|
-
|
662
|
-
/* Shown when moving in bi-directional text */
|
663
|
-
|
664
|
-
.CodeMirror div.CodeMirror-secondarycursor {
|
665
|
-
border-left: 1px solid silver;
|
666
|
-
}
|
667
|
-
|
668
|
-
.CodeMirror.cm-fat-cursor div.CodeMirror-cursor {
|
669
|
-
background: #7e7;
|
670
|
-
border: 0;
|
671
|
-
width: auto;
|
672
|
-
}
|
673
|
-
|
674
|
-
.CodeMirror.cm-fat-cursor div.CodeMirror-cursors {
|
675
|
-
z-index: 1;
|
676
|
-
}
|
677
|
-
|
678
|
-
.cm-animate-fat-cursor {
|
679
|
-
animation: blink 1.06s steps(1) infinite;
|
680
|
-
border: 0;
|
681
|
-
width: auto;
|
682
|
-
}
|
683
|
-
|
684
|
-
@keyframes blink {
|
685
|
-
0% { background: #7e7; }
|
686
|
-
50% { background: none; }
|
687
|
-
100% { background: #7e7; }
|
688
|
-
}
|
689
|
-
|
690
|
-
/* Can style cursor different in overwrite (non-insert) mode */
|
691
|
-
|
692
|
-
div.CodeMirror-overwrite div.CodeMirror-cursor {}
|
693
|
-
|
694
|
-
.cm-tab { display: inline-block; text-decoration: inherit; }
|
695
|
-
|
696
|
-
.CodeMirror-ruler {
|
697
|
-
border-left: 1px solid #ccc;
|
698
|
-
position: absolute;
|
699
|
-
}
|
700
|
-
|
701
|
-
/* DEFAULT THEME */
|
702
|
-
|
703
|
-
.cm-s-default .cm-keyword {color: #708;}
|
704
|
-
|
705
|
-
.cm-s-default .cm-atom {color: #219;}
|
706
|
-
|
707
|
-
.cm-s-default .cm-number {color: #164;}
|
708
|
-
|
709
|
-
.cm-s-default .cm-def {color: #00f;}
|
710
|
-
|
711
|
-
.cm-s-default .cm-variable,
|
712
|
-
.cm-s-default .cm-punctuation,
|
713
|
-
.cm-s-default .cm-property,
|
714
|
-
.cm-s-default .cm-operator {}
|
715
|
-
|
716
|
-
.cm-s-default .cm-variable-2 {color: #05a;}
|
717
|
-
|
718
|
-
.cm-s-default .cm-variable-3 {color: #085;}
|
719
|
-
|
720
|
-
.cm-s-default .cm-comment {color: #a50;}
|
721
|
-
|
722
|
-
.cm-s-default .cm-string {color: #a11;}
|
723
|
-
|
724
|
-
.cm-s-default .cm-string-2 {color: #f50;}
|
725
|
-
|
726
|
-
.cm-s-default .cm-meta {color: #555;}
|
727
|
-
|
728
|
-
.cm-s-default .cm-qualifier {color: #555;}
|
729
|
-
|
730
|
-
.cm-s-default .cm-builtin {color: #30a;}
|
731
|
-
|
732
|
-
.cm-s-default .cm-bracket {color: #997;}
|
733
|
-
|
734
|
-
.cm-s-default .cm-tag {color: #170;}
|
735
|
-
|
736
|
-
.cm-s-default .cm-attribute {color: #00c;}
|
737
|
-
|
738
|
-
.cm-s-default .cm-header {color: blue;}
|
739
|
-
|
740
|
-
.cm-s-default .cm-quote {color: #090;}
|
741
|
-
|
742
|
-
.cm-s-default .cm-hr {color: #999;}
|
743
|
-
|
744
|
-
.cm-s-default .cm-link {color: #00c;}
|
745
|
-
|
746
|
-
.cm-negative {color: #d44;}
|
747
|
-
|
748
|
-
.cm-positive {color: #292;}
|
749
|
-
|
750
|
-
.cm-header, .cm-strong {font-weight: bold;}
|
751
|
-
|
752
|
-
.cm-em {font-style: italic;}
|
753
|
-
|
754
|
-
.cm-link {text-decoration: underline;}
|
755
|
-
|
756
|
-
.cm-strikethrough {text-decoration: line-through;}
|
757
|
-
|
758
|
-
.cm-s-default .cm-error {color: #f00;}
|
759
|
-
|
760
|
-
.cm-invalidchar {color: #f00;}
|
761
|
-
|
762
|
-
.CodeMirror-composing { border-bottom: 2px solid; }
|
763
|
-
|
764
|
-
/* Default styles for common addons */
|
765
|
-
|
766
|
-
div.CodeMirror span.CodeMirror-matchingbracket {color: #0f0;}
|
767
|
-
|
768
|
-
div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;}
|
769
|
-
|
770
|
-
.CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }
|
771
|
-
|
772
|
-
.CodeMirror-activeline-background {background: #e8f2ff;}
|
773
|
-
|
774
|
-
/* STOP */
|
775
|
-
|
776
|
-
/* The rest of this file contains styles related to the mechanics of
|
777
|
-
the editor. You probably shouldn't touch them. */
|
778
|
-
|
779
|
-
.CodeMirror {
|
780
|
-
background: white;
|
781
|
-
overflow: hidden;
|
782
|
-
position: relative;
|
783
|
-
}
|
784
|
-
|
785
|
-
.CodeMirror-scroll {
|
786
|
-
height: 100%;
|
787
|
-
/* 30px is the magic margin used to hide the element's real scrollbars */
|
788
|
-
/* See overflow: hidden in .CodeMirror */
|
789
|
-
margin-bottom: -30px; margin-right: -30px;
|
790
|
-
outline: none; /* Prevent dragging from highlighting the element */
|
791
|
-
overflow: scroll !important; /* Things will break if this is overridden */
|
792
|
-
padding-bottom: 30px;
|
793
|
-
position: relative;
|
794
|
-
}
|
795
|
-
|
796
|
-
.CodeMirror-sizer {
|
797
|
-
border-right: 30px solid transparent;
|
798
|
-
position: relative;
|
799
|
-
}
|
800
|
-
|
801
|
-
/* The fake, visible scrollbars. Used to force redraw during scrolling
|
802
|
-
before actual scrolling happens, thus preventing shaking and
|
803
|
-
flickering artifacts. */
|
804
|
-
|
805
|
-
.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
|
806
|
-
display: none;
|
807
|
-
position: absolute;
|
808
|
-
z-index: 6;
|
809
|
-
}
|
810
|
-
|
811
|
-
.CodeMirror-vscrollbar {
|
812
|
-
overflow-x: hidden;
|
813
|
-
overflow-y: scroll;
|
814
|
-
right: 0; top: 0;
|
815
|
-
}
|
816
|
-
|
817
|
-
.CodeMirror-hscrollbar {
|
818
|
-
bottom: 0; left: 0;
|
819
|
-
overflow-x: scroll;
|
820
|
-
overflow-y: hidden;
|
821
|
-
}
|
822
|
-
|
823
|
-
.CodeMirror-scrollbar-filler {
|
824
|
-
right: 0; bottom: 0;
|
825
|
-
}
|
826
|
-
|
827
|
-
.CodeMirror-gutter-filler {
|
828
|
-
left: 0; bottom: 0;
|
829
|
-
}
|
830
|
-
|
831
|
-
.CodeMirror-gutters {
|
832
|
-
min-height: 100%;
|
833
|
-
position: absolute; left: 0; top: 0;
|
834
|
-
z-index: 3;
|
835
|
-
}
|
836
|
-
|
837
|
-
.CodeMirror-gutter {
|
838
|
-
display: inline-block;
|
839
|
-
height: 100%;
|
840
|
-
margin-bottom: -30px;
|
841
|
-
vertical-align: top;
|
842
|
-
white-space: normal;
|
843
|
-
/* Hack to make IE7 behave */
|
844
|
-
*zoom:1;
|
845
|
-
*display:inline;
|
846
|
-
}
|
847
|
-
|
848
|
-
.CodeMirror-gutter-wrapper {
|
849
|
-
background: none !important;
|
850
|
-
border: none !important;
|
851
|
-
position: absolute;
|
852
|
-
z-index: 4;
|
853
|
-
}
|
854
|
-
|
855
|
-
.CodeMirror-gutter-background {
|
856
|
-
position: absolute;
|
857
|
-
top: 0; bottom: 0;
|
858
|
-
z-index: 4;
|
859
|
-
}
|
860
|
-
|
861
|
-
.CodeMirror-gutter-elt {
|
862
|
-
cursor: default;
|
863
|
-
position: absolute;
|
864
|
-
z-index: 4;
|
865
|
-
}
|
866
|
-
|
867
|
-
.CodeMirror-gutter-wrapper {
|
868
|
-
user-select: none;
|
869
|
-
}
|
870
|
-
|
871
|
-
.CodeMirror-lines {
|
872
|
-
cursor: text;
|
873
|
-
min-height: 1px; /* prevents collapsing before first draw */
|
874
|
-
}
|
875
|
-
|
876
|
-
.CodeMirror pre {
|
877
|
-
-webkit-tap-highlight-color: transparent;
|
878
|
-
/* Reset some styles that the rest of the page might have set */
|
879
|
-
background: transparent;
|
880
|
-
border-radius: 0;
|
881
|
-
border-width: 0;
|
882
|
-
color: inherit;
|
883
|
-
font-family: inherit;
|
884
|
-
font-size: inherit;
|
885
|
-
font-variant-ligatures: none;
|
886
|
-
line-height: inherit;
|
887
|
-
margin: 0;
|
888
|
-
overflow: visible;
|
889
|
-
position: relative;
|
890
|
-
white-space: pre;
|
891
|
-
word-wrap: normal;
|
892
|
-
z-index: 2;
|
893
|
-
}
|
894
|
-
|
895
|
-
.CodeMirror-wrap pre {
|
896
|
-
word-wrap: break-word;
|
897
|
-
white-space: pre-wrap;
|
898
|
-
word-break: normal;
|
899
|
-
}
|
900
|
-
|
901
|
-
.CodeMirror-linebackground {
|
902
|
-
position: absolute;
|
903
|
-
left: 0; right: 0; top: 0; bottom: 0;
|
904
|
-
z-index: 0;
|
905
|
-
}
|
906
|
-
|
907
|
-
.CodeMirror-linewidget {
|
908
|
-
overflow: auto;
|
909
|
-
position: relative;
|
910
|
-
z-index: 2;
|
911
|
-
}
|
912
|
-
|
913
|
-
.CodeMirror-widget {}
|
914
|
-
|
915
|
-
.CodeMirror-code {
|
916
|
-
outline: none;
|
917
|
-
}
|
918
|
-
|
919
|
-
/* Force content-box sizing for the elements where we expect it */
|
920
|
-
|
921
|
-
.CodeMirror-scroll,
|
922
|
-
.CodeMirror-sizer,
|
923
|
-
.CodeMirror-gutter,
|
924
|
-
.CodeMirror-gutters,
|
925
|
-
.CodeMirror-linenumber {
|
926
|
-
box-sizing: content-box;
|
927
|
-
}
|
928
|
-
|
929
|
-
.CodeMirror-measure {
|
930
|
-
height: 0;
|
931
|
-
overflow: hidden;
|
932
|
-
position: absolute;
|
933
|
-
visibility: hidden;
|
934
|
-
width: 100%;
|
935
|
-
}
|
936
|
-
|
937
|
-
.CodeMirror-cursor { position: absolute; }
|
938
|
-
|
939
|
-
.CodeMirror-measure pre { position: static; }
|
940
|
-
|
941
|
-
div.CodeMirror-cursors {
|
942
|
-
position: relative;
|
943
|
-
visibility: hidden;
|
944
|
-
z-index: 3;
|
945
|
-
}
|
946
|
-
|
947
|
-
div.CodeMirror-dragcursors {
|
948
|
-
visibility: visible;
|
949
|
-
}
|
950
|
-
|
951
|
-
.CodeMirror-focused div.CodeMirror-cursors {
|
952
|
-
visibility: visible;
|
953
|
-
}
|
954
|
-
|
955
|
-
.CodeMirror-selected { background: #d9d9d9; }
|
956
|
-
|
957
|
-
.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }
|
958
|
-
|
959
|
-
.CodeMirror-crosshair { cursor: crosshair; }
|
960
|
-
|
961
|
-
.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }
|
962
|
-
|
963
|
-
.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }
|
964
|
-
|
965
|
-
.cm-searching {
|
966
|
-
background: #ffa;
|
967
|
-
background: rgba(255, 255, 0, .4);
|
968
|
-
}
|
969
|
-
|
970
|
-
/* IE7 hack to prevent it from returning funny offsetTops on the spans */
|
971
|
-
|
972
|
-
.CodeMirror span { *vertical-align: text-bottom; }
|
973
|
-
|
974
|
-
/* Used to force a border model for a node */
|
975
|
-
|
976
|
-
.cm-force-border { padding-right: .1px; }
|
977
|
-
|
978
|
-
@media print {
|
979
|
-
/* Hide the cursor when printing */
|
980
|
-
.CodeMirror div.CodeMirror-cursors {
|
981
|
-
visibility: hidden;
|
982
|
-
}
|
983
|
-
}
|
984
|
-
|
985
|
-
/* See issue #2901 */
|
986
|
-
|
987
|
-
.cm-tab-wrap-hack:after { content: ''; }
|
988
|
-
|
989
|
-
/* Help users use markselection to safely style text background */
|
990
|
-
|
991
|
-
span.CodeMirror-selectedtext { background: none; }
|
992
|
-
|
993
|
-
.CodeMirror-dialog {
|
994
|
-
background: inherit;
|
995
|
-
color: inherit;
|
996
|
-
left: 0; right: 0;
|
997
|
-
overflow: hidden;
|
998
|
-
padding: .1em .8em;
|
999
|
-
position: absolute;
|
1000
|
-
z-index: 15;
|
1001
|
-
}
|
1002
|
-
|
1003
|
-
.CodeMirror-dialog-top {
|
1004
|
-
border-bottom: 1px solid #eee;
|
1005
|
-
top: 0;
|
1006
|
-
}
|
1007
|
-
|
1008
|
-
.CodeMirror-dialog-bottom {
|
1009
|
-
border-top: 1px solid #eee;
|
1010
|
-
bottom: 0;
|
1011
|
-
}
|
1012
|
-
|
1013
|
-
.CodeMirror-dialog input {
|
1014
|
-
background: transparent;
|
1015
|
-
border: 1px solid #d3d6db;
|
1016
|
-
color: inherit;
|
1017
|
-
font-family: monospace;
|
1018
|
-
outline: none;
|
1019
|
-
width: 20em;
|
1020
|
-
}
|
1021
|
-
|
1022
|
-
.CodeMirror-dialog button {
|
1023
|
-
font-size: 70%;
|
1024
|
-
}
|
1025
|
-
|
1026
|
-
.CodeMirror-foldmarker {
|
1027
|
-
color: blue;
|
1028
|
-
cursor: pointer;
|
1029
|
-
font-family: arial;
|
1030
|
-
line-height: .3;
|
1031
|
-
text-shadow: #b9f 1px 1px 2px, #b9f -1px -1px 2px, #b9f 1px -1px 2px, #b9f -1px 1px 2px;
|
1032
|
-
}
|
1033
|
-
.CodeMirror-foldgutter {
|
1034
|
-
width: .7em;
|
1035
|
-
}
|
1036
|
-
.CodeMirror-foldgutter-open,
|
1037
|
-
.CodeMirror-foldgutter-folded {
|
1038
|
-
cursor: pointer;
|
1039
|
-
}
|
1040
|
-
.CodeMirror-foldgutter-open:after {
|
1041
|
-
content: "\25BE";
|
1042
|
-
}
|
1043
|
-
.CodeMirror-foldgutter-folded:after {
|
1044
|
-
content: "\25B8";
|
1045
|
-
}
|
1046
|
-
|
1047
|
-
.CodeMirror-info {
|
1048
|
-
background: white;
|
1049
|
-
border-radius: 2px;
|
1050
|
-
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
|
1051
|
-
box-sizing: border-box;
|
1052
|
-
color: #555;
|
1053
|
-
font-family:
|
1054
|
-
system,
|
1055
|
-
-apple-system,
|
1056
|
-
'San Francisco',
|
1057
|
-
'.SFNSDisplay-Regular',
|
1058
|
-
'Segoe UI',
|
1059
|
-
Segoe,
|
1060
|
-
'Segoe WP',
|
1061
|
-
'Helvetica Neue',
|
1062
|
-
helvetica,
|
1063
|
-
'Lucida Grande',
|
1064
|
-
arial,
|
1065
|
-
sans-serif;
|
1066
|
-
font-size: 13px;
|
1067
|
-
line-height: 16px;
|
1068
|
-
margin: 8px -8px;
|
1069
|
-
max-width: 400px;
|
1070
|
-
opacity: 0;
|
1071
|
-
overflow: hidden;
|
1072
|
-
padding: 8px 8px;
|
1073
|
-
position: fixed;
|
1074
|
-
transition: opacity 0.15s;
|
1075
|
-
z-index: 50;
|
1076
|
-
}
|
1077
|
-
|
1078
|
-
.CodeMirror-info :first-child {
|
1079
|
-
margin-top: 0;
|
1080
|
-
}
|
1081
|
-
|
1082
|
-
.CodeMirror-info :last-child {
|
1083
|
-
margin-bottom: 0;
|
1084
|
-
}
|
1085
|
-
|
1086
|
-
.CodeMirror-info p {
|
1087
|
-
margin: 1em 0;
|
1088
|
-
}
|
1089
|
-
|
1090
|
-
.CodeMirror-info .info-description {
|
1091
|
-
color: #777;
|
1092
|
-
line-height: 16px;
|
1093
|
-
margin-top: 1em;
|
1094
|
-
max-height: 80px;
|
1095
|
-
overflow: hidden;
|
1096
|
-
}
|
1097
|
-
|
1098
|
-
.CodeMirror-info .info-deprecation {
|
1099
|
-
background: #fffae8;
|
1100
|
-
box-shadow: inset 0 1px 1px -1px #bfb063;
|
1101
|
-
color: #867F70;
|
1102
|
-
line-height: 16px;
|
1103
|
-
margin: -8px;
|
1104
|
-
margin-top: 8px;
|
1105
|
-
max-height: 80px;
|
1106
|
-
overflow: hidden;
|
1107
|
-
padding: 8px;
|
1108
|
-
}
|
1109
|
-
|
1110
|
-
.CodeMirror-info .info-deprecation-label {
|
1111
|
-
color: #c79b2e;
|
1112
|
-
cursor: default;
|
1113
|
-
display: block;
|
1114
|
-
font-size: 9px;
|
1115
|
-
font-weight: bold;
|
1116
|
-
letter-spacing: 1px;
|
1117
|
-
line-height: 1;
|
1118
|
-
padding-bottom: 5px;
|
1119
|
-
text-transform: uppercase;
|
1120
|
-
user-select: none;
|
1121
|
-
}
|
1122
|
-
|
1123
|
-
.CodeMirror-info .info-deprecation-label + * {
|
1124
|
-
margin-top: 0;
|
1125
|
-
}
|
1126
|
-
|
1127
|
-
.CodeMirror-info a {
|
1128
|
-
text-decoration: none;
|
1129
|
-
}
|
1130
|
-
|
1131
|
-
.CodeMirror-info a:hover {
|
1132
|
-
text-decoration: underline;
|
1133
|
-
}
|
1134
|
-
|
1135
|
-
.CodeMirror-info .type-name {
|
1136
|
-
color: #CA9800;
|
1137
|
-
}
|
1138
|
-
|
1139
|
-
.CodeMirror-info .field-name {
|
1140
|
-
color: #1F61A0;
|
1141
|
-
}
|
1142
|
-
|
1143
|
-
.CodeMirror-info .enum-value {
|
1144
|
-
color: #0B7FC7;
|
1145
|
-
}
|
1146
|
-
|
1147
|
-
.CodeMirror-info .arg-name {
|
1148
|
-
color: #8B2BB9;
|
1149
|
-
}
|
1150
|
-
|
1151
|
-
.CodeMirror-info .directive-name {
|
1152
|
-
color: #B33086;
|
1153
|
-
}
|
1154
|
-
|
1155
|
-
.CodeMirror-jump-token {
|
1156
|
-
text-decoration: underline;
|
1157
|
-
cursor: pointer;
|
1158
|
-
}
|
1159
|
-
|
1160
|
-
/* The lint marker gutter */
|
1161
|
-
.CodeMirror-lint-markers {
|
1162
|
-
width: 16px;
|
1163
|
-
}
|
1164
|
-
.CodeMirror-lint-tooltip {
|
1165
|
-
background-color: infobackground;
|
1166
|
-
border-radius: 4px 4px 4px 4px;
|
1167
|
-
border: 1px solid black;
|
1168
|
-
color: infotext;
|
1169
|
-
font-family: monospace;
|
1170
|
-
font-size: 10pt;
|
1171
|
-
max-width: 600px;
|
1172
|
-
opacity: 0;
|
1173
|
-
overflow: hidden;
|
1174
|
-
padding: 2px 5px;
|
1175
|
-
position: fixed;
|
1176
|
-
transition: opacity .4s;
|
1177
|
-
white-space: pre-wrap;
|
1178
|
-
z-index: 100;
|
1179
|
-
}
|
1180
|
-
.CodeMirror-lint-mark-error, .CodeMirror-lint-mark-warning {
|
1181
|
-
background-position: left bottom;
|
1182
|
-
background-repeat: repeat-x;
|
1183
|
-
}
|
1184
|
-
.CodeMirror-lint-mark-error {
|
1185
|
-
background-image:
|
1186
|
-
url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAADCAYAAAC09K7GAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sJDw4cOCW1/KIAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAHElEQVQI12NggIL/DAz/GdA5/xkY/qPKMDAwAADLZwf5rvm+LQAAAABJRU5ErkJggg==")
|
1187
|
-
;
|
1188
|
-
}
|
1189
|
-
.CodeMirror-lint-mark-warning {
|
1190
|
-
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAADCAYAAAC09K7GAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sJFhQXEbhTg7YAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAMklEQVQI12NkgIIvJ3QXMjAwdDN+OaEbysDA4MPAwNDNwMCwiOHLCd1zX07o6kBVGQEAKBANtobskNMAAAAASUVORK5CYII=");
|
1191
|
-
}
|
1192
|
-
.CodeMirror-lint-marker-error, .CodeMirror-lint-marker-warning {
|
1193
|
-
background-position: center center;
|
1194
|
-
background-repeat: no-repeat;
|
1195
|
-
cursor: pointer;
|
1196
|
-
display: inline-block;
|
1197
|
-
height: 16px;
|
1198
|
-
position: relative;
|
1199
|
-
vertical-align: middle;
|
1200
|
-
width: 16px;
|
1201
|
-
}
|
1202
|
-
.CodeMirror-lint-message-error, .CodeMirror-lint-message-warning {
|
1203
|
-
background-position: top left;
|
1204
|
-
background-repeat: no-repeat;
|
1205
|
-
padding-left: 18px;
|
1206
|
-
}
|
1207
|
-
.CodeMirror-lint-marker-error, .CodeMirror-lint-message-error {
|
1208
|
-
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAHlBMVEW7AAC7AACxAAC7AAC7AAAAAAC4AAC5AAD///+7AAAUdclpAAAABnRSTlMXnORSiwCK0ZKSAAAATUlEQVR42mWPOQ7AQAgDuQLx/z8csYRmPRIFIwRGnosRrpamvkKi0FTIiMASR3hhKW+hAN6/tIWhu9PDWiTGNEkTtIOucA5Oyr9ckPgAWm0GPBog6v4AAAAASUVORK5CYII=");
|
1209
|
-
}
|
1210
|
-
.CodeMirror-lint-marker-warning, .CodeMirror-lint-message-warning {
|
1211
|
-
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAANlBMVEX/uwDvrwD/uwD/uwD/uwD/uwD/uwD/uwD/uwD6twD/uwAAAADurwD2tQD7uAD+ugAAAAD/uwDhmeTRAAAADHRSTlMJ8mN1EYcbmiixgACm7WbuAAAAVklEQVR42n3PUQqAIBBFUU1LLc3u/jdbOJoW1P08DA9Gba8+YWJ6gNJoNYIBzAA2chBth5kLmG9YUoG0NHAUwFXwO9LuBQL1giCQb8gC9Oro2vp5rncCIY8L8uEx5ZkAAAAASUVORK5CYII=");
|
1212
|
-
}
|
1213
|
-
.CodeMirror-lint-marker-multiple {
|
1214
|
-
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAMAAADzjKfhAAAACVBMVEUAAAAAAAC/v7914kyHAAAAAXRSTlMAQObYZgAAACNJREFUeNo1ioEJAAAIwmz/H90iFFSGJgFMe3gaLZ0od+9/AQZ0ADosbYraAAAAAElFTkSuQmCC");
|
1215
|
-
background-position: right bottom;
|
1216
|
-
background-repeat: no-repeat;
|
1217
|
-
width: 100%; height: 100%;
|
1218
|
-
}
|
1219
|
-
|
1220
|
-
.graphiql-container .spinner-container {
|
1221
|
-
height: 36px;
|
1222
|
-
left: 50%;
|
1223
|
-
position: absolute;
|
1224
|
-
top: 50%;
|
1225
|
-
transform: translate(-50%, -50%);
|
1226
|
-
width: 36px;
|
1227
|
-
z-index: 10;
|
1228
|
-
}
|
1229
|
-
|
1230
|
-
.graphiql-container .spinner {
|
1231
|
-
animation: rotation .6s infinite linear;
|
1232
|
-
border-bottom: 6px solid rgba(150, 150, 150, .15);
|
1233
|
-
border-left: 6px solid rgba(150, 150, 150, .15);
|
1234
|
-
border-radius: 100%;
|
1235
|
-
border-right: 6px solid rgba(150, 150, 150, .15);
|
1236
|
-
border-top: 6px solid rgba(150, 150, 150, .8);
|
1237
|
-
display: inline-block;
|
1238
|
-
height: 24px;
|
1239
|
-
position: absolute;
|
1240
|
-
vertical-align: middle;
|
1241
|
-
width: 24px;
|
1242
|
-
}
|
1243
|
-
|
1244
|
-
@keyframes rotation {
|
1245
|
-
from { transform: rotate(0deg); }
|
1246
|
-
to { transform: rotate(359deg); }
|
1247
|
-
}
|
1248
|
-
|
1249
|
-
.CodeMirror-hints {
|
1250
|
-
background: white;
|
1251
|
-
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
|
1252
|
-
font-family: 'Consolas', 'Inconsolata', 'Droid Sans Mono', 'Monaco', monospace;
|
1253
|
-
font-size: 13px;
|
1254
|
-
list-style: none;
|
1255
|
-
margin-left: -6px;
|
1256
|
-
margin: 0;
|
1257
|
-
max-height: 14.5em;
|
1258
|
-
overflow: hidden;
|
1259
|
-
overflow-y: auto;
|
1260
|
-
padding: 0;
|
1261
|
-
position: absolute;
|
1262
|
-
z-index: 10;
|
1263
|
-
}
|
1264
|
-
|
1265
|
-
.CodeMirror-hint {
|
1266
|
-
border-top: solid 1px #f7f7f7;
|
1267
|
-
color: #141823;
|
1268
|
-
cursor: pointer;
|
1269
|
-
margin: 0;
|
1270
|
-
max-width: 300px;
|
1271
|
-
overflow: hidden;
|
1272
|
-
padding: 2px 6px;
|
1273
|
-
white-space: pre;
|
1274
|
-
}
|
1275
|
-
|
1276
|
-
li.CodeMirror-hint-active {
|
1277
|
-
background-color: #08f;
|
1278
|
-
border-top-color: white;
|
1279
|
-
color: white;
|
1280
|
-
}
|
1281
|
-
|
1282
|
-
.CodeMirror-hint-information {
|
1283
|
-
border-top: solid 1px #c0c0c0;
|
1284
|
-
max-width: 300px;
|
1285
|
-
padding: 4px 6px;
|
1286
|
-
position: relative;
|
1287
|
-
z-index: 1;
|
1288
|
-
}
|
1289
|
-
|
1290
|
-
.CodeMirror-hint-information:first-child {
|
1291
|
-
border-bottom: solid 1px #c0c0c0;
|
1292
|
-
border-top: none;
|
1293
|
-
margin-bottom: -1px;
|
1294
|
-
}
|
1295
|
-
|
1296
|
-
.CodeMirror-hint-deprecation {
|
1297
|
-
background: #fffae8;
|
1298
|
-
box-shadow: inset 0 1px 1px -1px #bfb063;
|
1299
|
-
color: #867F70;
|
1300
|
-
font-family:
|
1301
|
-
system,
|
1302
|
-
-apple-system,
|
1303
|
-
'San Francisco',
|
1304
|
-
'.SFNSDisplay-Regular',
|
1305
|
-
'Segoe UI',
|
1306
|
-
Segoe,
|
1307
|
-
'Segoe WP',
|
1308
|
-
'Helvetica Neue',
|
1309
|
-
helvetica,
|
1310
|
-
'Lucida Grande',
|
1311
|
-
arial,
|
1312
|
-
sans-serif;
|
1313
|
-
font-size: 13px;
|
1314
|
-
line-height: 16px;
|
1315
|
-
margin-top: 4px;
|
1316
|
-
max-height: 80px;
|
1317
|
-
overflow: hidden;
|
1318
|
-
padding: 6px;
|
1319
|
-
}
|
1320
|
-
|
1321
|
-
.CodeMirror-hint-deprecation .deprecation-label {
|
1322
|
-
color: #c79b2e;
|
1323
|
-
cursor: default;
|
1324
|
-
display: block;
|
1325
|
-
font-size: 9px;
|
1326
|
-
font-weight: bold;
|
1327
|
-
letter-spacing: 1px;
|
1328
|
-
line-height: 1;
|
1329
|
-
padding-bottom: 5px;
|
1330
|
-
text-transform: uppercase;
|
1331
|
-
user-select: none;
|
1332
|
-
}
|
1333
|
-
|
1334
|
-
.CodeMirror-hint-deprecation .deprecation-label + * {
|
1335
|
-
margin-top: 0;
|
1336
|
-
}
|
1337
|
-
|
1338
|
-
.CodeMirror-hint-deprecation :last-child {
|
1339
|
-
margin-bottom: 0;
|
1340
|
-
}
|
1341
|
-
|
1342
|
-
.graphiql-container .doc-explorer {
|
1343
|
-
background: white;
|
1344
|
-
}
|
1345
|
-
|
1346
|
-
.graphiql-container .doc-explorer-title-bar,
|
1347
|
-
.graphiql-container .history-title-bar {
|
1348
|
-
cursor: default;
|
1349
|
-
display: flex;
|
1350
|
-
height: 34px;
|
1351
|
-
line-height: 14px;
|
1352
|
-
padding: 8px 8px 5px;
|
1353
|
-
position: relative;
|
1354
|
-
user-select: none;
|
1355
|
-
}
|
1356
|
-
|
1357
|
-
.graphiql-container .doc-explorer-title,
|
1358
|
-
.graphiql-container .history-title {
|
1359
|
-
flex: 1;
|
1360
|
-
font-weight: bold;
|
1361
|
-
overflow-x: hidden;
|
1362
|
-
padding: 10px 0 10px 10px;
|
1363
|
-
text-align: center;
|
1364
|
-
text-overflow: ellipsis;
|
1365
|
-
user-select: text;
|
1366
|
-
white-space: nowrap;
|
1367
|
-
}
|
1368
|
-
|
1369
|
-
.graphiql-container .doc-explorer-back {
|
1370
|
-
color: #3B5998;
|
1371
|
-
cursor: pointer;
|
1372
|
-
margin: -7px 0 -6px -8px;
|
1373
|
-
overflow-x: hidden;
|
1374
|
-
padding: 17px 12px 16px 16px;
|
1375
|
-
text-overflow: ellipsis;
|
1376
|
-
white-space: nowrap;
|
1377
|
-
background: 0;
|
1378
|
-
border: 0;
|
1379
|
-
line-height: 14px;
|
1380
|
-
}
|
1381
|
-
|
1382
|
-
.doc-explorer-narrow .doc-explorer-back {
|
1383
|
-
width: 0;
|
1384
|
-
}
|
1385
|
-
|
1386
|
-
.graphiql-container .doc-explorer-back:before {
|
1387
|
-
border-left: 2px solid #3B5998;
|
1388
|
-
border-top: 2px solid #3B5998;
|
1389
|
-
content: '';
|
1390
|
-
display: inline-block;
|
1391
|
-
height: 9px;
|
1392
|
-
margin: 0 3px -1px 0;
|
1393
|
-
position: relative;
|
1394
|
-
transform: rotate(-45deg);
|
1395
|
-
width: 9px;
|
1396
|
-
}
|
1397
|
-
|
1398
|
-
.graphiql-container .doc-explorer-rhs {
|
1399
|
-
position: relative;
|
1400
|
-
}
|
1401
|
-
|
1402
|
-
.graphiql-container .doc-explorer-contents,
|
1403
|
-
.graphiql-container .history-contents {
|
1404
|
-
background-color: #ffffff;
|
1405
|
-
border-top: 1px solid #d6d6d6;
|
1406
|
-
bottom: 0;
|
1407
|
-
left: 0;
|
1408
|
-
overflow-y: auto;
|
1409
|
-
padding: 20px 15px;
|
1410
|
-
position: absolute;
|
1411
|
-
right: 0;
|
1412
|
-
top: 47px;
|
1413
|
-
}
|
1414
|
-
|
1415
|
-
.graphiql-container .doc-explorer-contents {
|
1416
|
-
min-width: 300px;
|
1417
|
-
}
|
1418
|
-
|
1419
|
-
.graphiql-container .doc-type-description p:first-child ,
|
1420
|
-
.graphiql-container .doc-type-description blockquote:first-child {
|
1421
|
-
margin-top: 0;
|
1422
|
-
}
|
1423
|
-
|
1424
|
-
.graphiql-container .doc-explorer-contents a {
|
1425
|
-
cursor: pointer;
|
1426
|
-
text-decoration: none;
|
1427
|
-
}
|
1428
|
-
|
1429
|
-
.graphiql-container .doc-explorer-contents a:hover {
|
1430
|
-
text-decoration: underline;
|
1431
|
-
}
|
1432
|
-
|
1433
|
-
.graphiql-container .doc-value-description > :first-child {
|
1434
|
-
margin-top: 4px;
|
1435
|
-
}
|
1436
|
-
|
1437
|
-
.graphiql-container .doc-value-description > :last-child {
|
1438
|
-
margin-bottom: 4px;
|
1439
|
-
}
|
1440
|
-
|
1441
|
-
.graphiql-container .doc-type-description code,
|
1442
|
-
.graphiql-container .doc-type-description pre,
|
1443
|
-
.graphiql-container .doc-category code,
|
1444
|
-
.graphiql-container .doc-category pre {
|
1445
|
-
--saf-0: rgba(var(--sk_foreground_low,29,28,29),0.13);
|
1446
|
-
font-size: 12px;
|
1447
|
-
line-height: 1.50001;
|
1448
|
-
font-variant-ligatures: none;
|
1449
|
-
white-space: pre;
|
1450
|
-
white-space: pre-wrap;
|
1451
|
-
word-wrap: break-word;
|
1452
|
-
word-break: normal;
|
1453
|
-
-webkit-tab-size: 4;
|
1454
|
-
-moz-tab-size: 4;
|
1455
|
-
tab-size: 4;
|
1456
|
-
}
|
1457
|
-
|
1458
|
-
.graphiql-container .doc-type-description code,
|
1459
|
-
.graphiql-container .doc-category code {
|
1460
|
-
padding: 2px 3px 1px;
|
1461
|
-
border: 1px solid var(--saf-0);
|
1462
|
-
border-radius: 3px;
|
1463
|
-
background-color: rgba(var(--sk_foreground_min,29,28,29),.04);
|
1464
|
-
color: #e01e5a;
|
1465
|
-
background-color: white;
|
1466
|
-
}
|
1467
|
-
|
1468
|
-
.graphiql-container .doc-category {
|
1469
|
-
margin: 20px 0;
|
1470
|
-
}
|
1471
|
-
|
1472
|
-
.graphiql-container .doc-category-title {
|
1473
|
-
border-bottom: 1px solid #e0e0e0;
|
1474
|
-
color: #777;
|
1475
|
-
cursor: default;
|
1476
|
-
font-size: 14px;
|
1477
|
-
font-variant: small-caps;
|
1478
|
-
font-weight: bold;
|
1479
|
-
letter-spacing: 1px;
|
1480
|
-
margin: 0 -15px 10px 0;
|
1481
|
-
padding: 10px 0;
|
1482
|
-
user-select: none;
|
1483
|
-
}
|
1484
|
-
|
1485
|
-
.graphiql-container .doc-category-item {
|
1486
|
-
margin: 12px 0;
|
1487
|
-
color: #555;
|
1488
|
-
}
|
1489
|
-
|
1490
|
-
.graphiql-container .keyword {
|
1491
|
-
color: #B11A04;
|
1492
|
-
}
|
1493
|
-
|
1494
|
-
.graphiql-container .type-name {
|
1495
|
-
color: #CA9800;
|
1496
|
-
}
|
1497
|
-
|
1498
|
-
.graphiql-container .field-name {
|
1499
|
-
color: #1F61A0;
|
1500
|
-
}
|
1501
|
-
|
1502
|
-
.graphiql-container .field-short-description {
|
1503
|
-
color: #999;
|
1504
|
-
margin-left: 5px;
|
1505
|
-
overflow: hidden;
|
1506
|
-
text-overflow: ellipsis;
|
1507
|
-
}
|
1508
|
-
|
1509
|
-
.graphiql-container .enum-value {
|
1510
|
-
color: #0B7FC7;
|
1511
|
-
}
|
1512
|
-
|
1513
|
-
.graphiql-container .arg-name {
|
1514
|
-
color: #8B2BB9;
|
1515
|
-
}
|
1516
|
-
|
1517
|
-
.graphiql-container .arg {
|
1518
|
-
display: block;
|
1519
|
-
margin-left: 1em;
|
1520
|
-
}
|
1521
|
-
|
1522
|
-
.graphiql-container .arg:first-child:last-child,
|
1523
|
-
.graphiql-container .arg:first-child:nth-last-child(2),
|
1524
|
-
.graphiql-container .arg:first-child:nth-last-child(2) ~ .arg {
|
1525
|
-
display: inherit;
|
1526
|
-
margin: inherit;
|
1527
|
-
}
|
1528
|
-
|
1529
|
-
.graphiql-container .arg:first-child:nth-last-child(2):after {
|
1530
|
-
content: ', ';
|
1531
|
-
}
|
1532
|
-
|
1533
|
-
.graphiql-container .arg-default-value {
|
1534
|
-
color: #43A047;
|
1535
|
-
}
|
1536
|
-
|
1537
|
-
.graphiql-container .doc-deprecation {
|
1538
|
-
background: #fffae8;
|
1539
|
-
box-shadow: inset 0 0 1px #bfb063;
|
1540
|
-
color: #867F70;
|
1541
|
-
line-height: 16px;
|
1542
|
-
margin: 8px -8px;
|
1543
|
-
max-height: 80px;
|
1544
|
-
overflow: hidden;
|
1545
|
-
padding: 8px;
|
1546
|
-
border-radius: 3px;
|
1547
|
-
}
|
1548
|
-
|
1549
|
-
.graphiql-container .doc-deprecation:before {
|
1550
|
-
content: 'Deprecated:';
|
1551
|
-
color: #c79b2e;
|
1552
|
-
cursor: default;
|
1553
|
-
display: block;
|
1554
|
-
font-size: 9px;
|
1555
|
-
font-weight: bold;
|
1556
|
-
letter-spacing: 1px;
|
1557
|
-
line-height: 1;
|
1558
|
-
padding-bottom: 5px;
|
1559
|
-
text-transform: uppercase;
|
1560
|
-
user-select: none;
|
1561
|
-
}
|
1562
|
-
|
1563
|
-
.graphiql-container .doc-deprecation > :first-child {
|
1564
|
-
margin-top: 0;
|
1565
|
-
}
|
1566
|
-
|
1567
|
-
.graphiql-container .doc-deprecation > :last-child {
|
1568
|
-
margin-bottom: 0;
|
1569
|
-
}
|
1570
|
-
|
1571
|
-
.graphiql-container .show-btn {
|
1572
|
-
-webkit-appearance: initial;
|
1573
|
-
display: block;
|
1574
|
-
border-radius: 3px;
|
1575
|
-
border: solid 1px #ccc;
|
1576
|
-
text-align: center;
|
1577
|
-
padding: 8px 12px 10px;
|
1578
|
-
width: 100%;
|
1579
|
-
box-sizing: border-box;
|
1580
|
-
background: #fbfcfc;
|
1581
|
-
color: #555;
|
1582
|
-
cursor: pointer;
|
1583
|
-
}
|
1584
|
-
|
1585
|
-
.graphiql-container .search-box {
|
1586
|
-
border-bottom: 1px solid #d3d6db;
|
1587
|
-
display: flex;
|
1588
|
-
align-items: center;
|
1589
|
-
font-size: 14px;
|
1590
|
-
margin: -15px -15px 12px 0;
|
1591
|
-
position: relative;
|
1592
|
-
}
|
1593
|
-
|
1594
|
-
.graphiql-container .search-box-icon {
|
1595
|
-
cursor: pointer;
|
1596
|
-
display: block;
|
1597
|
-
font-size: 24px;
|
1598
|
-
transform: rotate(-45deg);
|
1599
|
-
user-select: none;
|
1600
|
-
}
|
1601
|
-
|
1602
|
-
.graphiql-container .search-box .search-box-clear {
|
1603
|
-
background-color: #d0d0d0;
|
1604
|
-
border-radius: 12px;
|
1605
|
-
color: #fff;
|
1606
|
-
cursor: pointer;
|
1607
|
-
font-size: 11px;
|
1608
|
-
padding: 1px 5px 2px;
|
1609
|
-
position: absolute;
|
1610
|
-
right: 3px;
|
1611
|
-
user-select: none;
|
1612
|
-
border: 0;
|
1613
|
-
}
|
1614
|
-
|
1615
|
-
.graphiql-container .search-box .search-box-clear:hover {
|
1616
|
-
background-color: #b9b9b9;
|
1617
|
-
}
|
1618
|
-
|
1619
|
-
.graphiql-container .search-box > input {
|
1620
|
-
border: none;
|
1621
|
-
box-sizing: border-box;
|
1622
|
-
font-size: 14px;
|
1623
|
-
outline: none;
|
1624
|
-
padding: 6px 24px 8px 20px;
|
1625
|
-
width: 100%;
|
1626
|
-
}
|
1627
|
-
|
1628
|
-
.graphiql-container .error-container {
|
1629
|
-
font-weight: bold;
|
1630
|
-
left: 0;
|
1631
|
-
letter-spacing: 1px;
|
1632
|
-
opacity: 0.5;
|
1633
|
-
position: absolute;
|
1634
|
-
right: 0;
|
1635
|
-
text-align: center;
|
1636
|
-
text-transform: uppercase;
|
1637
|
-
top: 50%;
|
1638
|
-
transform: translate(0, -50%);
|
1639
|
-
}
|
1640
|
-
|
1641
|
-
.graphiql-container .history-contents {
|
1642
|
-
font-family: 'Consolas', 'Inconsolata', 'Droid Sans Mono', 'Monaco', monospace;
|
1643
|
-
}
|
1644
|
-
|
1645
|
-
.graphiql-container .history-contents {
|
1646
|
-
margin: 0;
|
1647
|
-
padding: 0;
|
1648
|
-
}
|
1649
|
-
|
1650
|
-
.graphiql-container .history-contents li {
|
1651
|
-
align-items: center;
|
1652
|
-
display: flex;
|
1653
|
-
font-size: 12px;
|
1654
|
-
overflow: hidden;
|
1655
|
-
text-overflow: ellipsis;
|
1656
|
-
white-space: nowrap;
|
1657
|
-
margin: 0;
|
1658
|
-
padding: 8px;
|
1659
|
-
border-bottom: 1px solid #e0e0e0;
|
1660
|
-
}
|
1661
|
-
|
1662
|
-
.graphiql-container .history-contents li button:not(.history-label) {
|
1663
|
-
display: none;
|
1664
|
-
margin-left: 10px;
|
1665
|
-
}
|
1666
|
-
|
1667
|
-
.graphiql-container .history-contents li:hover button:not(.history-label),
|
1668
|
-
.graphiql-container .history-contents li:focus-within button:not(.history-label) {
|
1669
|
-
display: inline-block;
|
1670
|
-
}
|
1671
|
-
|
1672
|
-
.graphiql-container .history-contents input,
|
1673
|
-
.graphiql-container .history-contents button {
|
1674
|
-
padding: 0;
|
1675
|
-
background: 0;
|
1676
|
-
border: 0;
|
1677
|
-
font-size: inherit;
|
1678
|
-
font-family: inherit;
|
1679
|
-
line-height: 14px;
|
1680
|
-
color: inherit;
|
1681
|
-
}
|
1682
|
-
|
1683
|
-
.graphiql-container .history-contents input {
|
1684
|
-
flex-grow: 1;
|
1685
|
-
}
|
1686
|
-
|
1687
|
-
.graphiql-container .history-contents input::placeholder {
|
1688
|
-
color: inherit;
|
1689
|
-
}
|
1690
|
-
|
1691
|
-
.graphiql-container .history-contents button {
|
1692
|
-
cursor: pointer;
|
1693
|
-
text-align: left;
|
1694
|
-
}
|
1695
|
-
|
1696
|
-
.graphiql-container .history-contents .history-label {
|
1697
|
-
flex-grow: 1;
|
1698
|
-
overflow: hidden;
|
1699
|
-
text-overflow: ellipsis;
|
1700
|
-
}
|
1701
|
-
|