@bestcodetools/graphql-playground 0.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,1313 @@
1
+ body {
2
+ margin: 0;
3
+ padding: 0;
4
+ font-family: "Open Sans", sans-serif;
5
+ background-color: #4f4f4f;
6
+ color: #f4f4f4;
7
+ border-radius: none;
8
+ min-height: 100vh;
9
+ height: 100vh;
10
+ overflow: hidden;
11
+ display: flex;
12
+ flex-direction: column;
13
+ }
14
+
15
+ body > * {
16
+ display: none;
17
+ }
18
+
19
+ body.ready > * {
20
+ display: unset;
21
+ }
22
+
23
+ .tabs {
24
+ list-style: none;
25
+ padding: 0;
26
+ padding-top: 5px;
27
+ margin: 0;
28
+ flex: 0 0 auto;
29
+ display: block;
30
+ background-color: #333;
31
+ border-bottom: 1px solid #666;
32
+ border-top: 1px solid #666;
33
+ border-radius: 0;
34
+ overflow: auto;
35
+ white-space: nowrap;
36
+ }
37
+ .tabs .tab-item {
38
+ margin: 0 5px;
39
+ padding: 5px;
40
+ cursor: pointer;
41
+ background-color: #333;
42
+ border: 1px solid #666;
43
+ border-radius: 0;
44
+ }
45
+ .tabs .tab-item:hover {
46
+ background-color: #4f4f4f;
47
+ }
48
+ .tabs .tab-item:not(.active), .tabs .tab-item:hover:not(.active) {
49
+ border-bottom: none;
50
+ }
51
+ .tabs .add-tab {
52
+ padding: 5px 10px;
53
+ text-align: center;
54
+ font-size: 1rem;
55
+ line-height: 1;
56
+ border: 1px solid #666;
57
+ background-color: #333;
58
+ border-radius: 0;
59
+ cursor: pointer;
60
+ }
61
+ .tabs .add-tab, .tabs .tab-item {
62
+ display: inline-block;
63
+ }
64
+ .tabs .add-tab > a, .tabs .tab-item > a {
65
+ color: #f4f4f4;
66
+ text-decoration: none;
67
+ }
68
+ .tabs .add-tab.add-tab > a, .tabs .tab-item.add-tab > a {
69
+ display: inline-flex;
70
+ align-items: center;
71
+ justify-content: center;
72
+ min-width: 14px;
73
+ font-weight: 700;
74
+ }
75
+ .tabs .add-tab .tab-title-input, .tabs .tab-item .tab-title-input {
76
+ min-width: 120px;
77
+ width: 180px;
78
+ margin: 0;
79
+ padding: 4px 6px;
80
+ border: 1px solid #4d7ea8;
81
+ background: #1f2329;
82
+ color: #f4f4f4;
83
+ font: inherit;
84
+ box-sizing: border-box;
85
+ }
86
+ .tabs .add-tab .tab-title-input:focus, .tabs .tab-item .tab-title-input:focus {
87
+ outline: none;
88
+ border-color: #4fc1ff;
89
+ }
90
+ .tabs .add-tab.tab-item, .tabs .tab-item.tab-item {
91
+ display: inline-flex;
92
+ align-items: center;
93
+ gap: 0.35rem;
94
+ }
95
+ .tabs .add-tab .tab-close-btn, .tabs .tab-item .tab-close-btn {
96
+ padding: 0;
97
+ margin: 0;
98
+ border: none;
99
+ background: transparent;
100
+ color: #8b97a3;
101
+ font-size: 0.95rem;
102
+ line-height: 1;
103
+ cursor: pointer;
104
+ box-shadow: none;
105
+ }
106
+ .tabs .add-tab .tab-close-btn:hover, .tabs .tab-item .tab-close-btn:hover {
107
+ color: #d7ecff;
108
+ background: transparent;
109
+ }
110
+ .tabs .add-tab:hover, .tabs .tab-item:hover {
111
+ box-shadow: 0 0 5px #20f020;
112
+ }
113
+ .tabs .add-tab:hover > a, .tabs .tab-item:hover > a {
114
+ color: #20f020;
115
+ }
116
+
117
+ .editor {
118
+ display: flex !important;
119
+ flex-direction: column;
120
+ flex: 1 1 auto;
121
+ min-height: 0;
122
+ background-color: #1f1f1f;
123
+ padding: 12px;
124
+ width: 100%;
125
+ box-sizing: border-box;
126
+ overflow: hidden;
127
+ }
128
+
129
+ .input-group {
130
+ flex: 0 0 auto;
131
+ }
132
+
133
+ .tab-content {
134
+ display: flex;
135
+ flex-direction: column;
136
+ flex: 1 1 auto;
137
+ min-height: 0;
138
+ gap: 10px;
139
+ padding: 10px 0 0;
140
+ margin: 0;
141
+ background-color: #1f1f1f;
142
+ overflow: hidden;
143
+ width: 100%;
144
+ box-sizing: border-box;
145
+ }
146
+
147
+ .tab-item.active {
148
+ background-color: #666;
149
+ }
150
+ .tab-item.active a {
151
+ color: #20f020;
152
+ }
153
+
154
+ .query-and-result-container {
155
+ display: flex;
156
+ flex-direction: row;
157
+ flex: 1 1 auto;
158
+ min-height: 0;
159
+ gap: 12px;
160
+ margin: 0;
161
+ padding: 0;
162
+ background: transparent;
163
+ border: none;
164
+ color: #f4f4f4;
165
+ overflow: hidden;
166
+ width: 100%;
167
+ position: relative;
168
+ }
169
+ .query-and-result-container .actions {
170
+ margin: auto;
171
+ position: absolute;
172
+ left: 50%;
173
+ top: 50%;
174
+ transform: translate(-50%, -50%);
175
+ z-index: 3;
176
+ }
177
+ .query-and-result-container .actions button {
178
+ border-radius: 100%;
179
+ height: 60px;
180
+ width: 60px;
181
+ }
182
+
183
+ .send-fab {
184
+ display: inline-flex;
185
+ align-items: center;
186
+ justify-content: center;
187
+ width: 26px !important;
188
+ height: 26px !important;
189
+ padding: 0 !important;
190
+ border-radius: 999px !important;
191
+ font-size: 0.7rem;
192
+ line-height: 1;
193
+ text-indent: 2px;
194
+ border: 1px solid #606872;
195
+ background: linear-gradient(180deg, #3a4048 0%, #2f343b 100%);
196
+ color: #e7eef7;
197
+ box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
198
+ }
199
+ .send-fab:hover {
200
+ background: linear-gradient(180deg, #47505a 0%, #3a4048 100%);
201
+ }
202
+
203
+ .result {
204
+ display: flex;
205
+ flex-direction: column;
206
+ flex: 1 1 0;
207
+ min-width: 0;
208
+ min-height: 0;
209
+ margin: 0;
210
+ padding: 0;
211
+ background-color: #333;
212
+ border: 1px solid #666;
213
+ border-radius: 0;
214
+ color: #f4f4f4;
215
+ overflow: hidden;
216
+ width: auto;
217
+ position: relative;
218
+ z-index: 1;
219
+ }
220
+ .result pre {
221
+ margin: 0;
222
+ padding: 10px 12px;
223
+ flex: 1 1 auto;
224
+ min-height: 0;
225
+ overflow: auto;
226
+ box-sizing: border-box;
227
+ }
228
+
229
+ response-viewer {
230
+ display: flex;
231
+ flex: 1 1 auto;
232
+ min-width: 0;
233
+ min-height: 0;
234
+ }
235
+
236
+ .response-viewer-container {
237
+ display: flex;
238
+ flex: 1 1 auto;
239
+ min-width: 0;
240
+ min-height: 0;
241
+ margin: 0;
242
+ width: 100%;
243
+ }
244
+ .response-viewer-container textarea {
245
+ min-height: 0;
246
+ width: 100%;
247
+ font-family: Consolas, "Courier New", monospace;
248
+ }
249
+
250
+ .variables-and-headers-container {
251
+ display: flex;
252
+ flex: 0 0 220px;
253
+ min-height: 220px;
254
+ gap: 12px;
255
+ margin: 0;
256
+ padding: 0;
257
+ background: transparent;
258
+ border: none;
259
+ color: #f4f4f4;
260
+ overflow: hidden;
261
+ width: 100%;
262
+ }
263
+ .variables-and-headers-container textarea {
264
+ min-height: 150px;
265
+ }
266
+
267
+ .query-editor-container,
268
+ .variables-editor-container,
269
+ .headers-editor-container {
270
+ display: flex;
271
+ flex: 1 1 auto;
272
+ min-width: 0;
273
+ min-height: 0;
274
+ margin: 0;
275
+ }
276
+
277
+ query-editor,
278
+ variables-editor,
279
+ headers-editor,
280
+ response-viewer {
281
+ display: flex;
282
+ flex: 1 1 auto;
283
+ min-width: 0;
284
+ min-height: 0;
285
+ }
286
+
287
+ .variables-editor-container textarea {
288
+ min-height: 0;
289
+ font-family: Consolas, "Courier New", monospace;
290
+ width: 100%;
291
+ }
292
+
293
+ .headers-editor-container textarea {
294
+ min-height: 0;
295
+ font-family: Consolas, "Courier New", monospace;
296
+ width: 100%;
297
+ }
298
+
299
+ .query-editor, .variables-editor, .headers-editor {
300
+ margin: 0;
301
+ padding: 0;
302
+ background-color: #333;
303
+ border: 1px solid #666;
304
+ border-radius: 0;
305
+ color: #f4f4f4;
306
+ overflow: hidden;
307
+ width: auto;
308
+ position: relative;
309
+ box-sizing: border-box;
310
+ }
311
+
312
+ .result response-viewer {
313
+ background-color: #333;
314
+ }
315
+
316
+ .result {
317
+ background-color: #1e1e1e;
318
+ }
319
+
320
+ .query-editor {
321
+ display: flex;
322
+ flex-direction: column;
323
+ flex: 1 1 0;
324
+ min-width: 0;
325
+ min-height: 0;
326
+ }
327
+
328
+ .variables-editor, .headers-editor {
329
+ display: flex;
330
+ flex-direction: column;
331
+ flex: 1 1 0;
332
+ min-width: 0;
333
+ min-height: 0;
334
+ }
335
+
336
+ .editor-panel-title {
337
+ display: flex;
338
+ align-items: center;
339
+ justify-content: space-between;
340
+ gap: 0.75rem;
341
+ padding: 0.45rem 0.7rem;
342
+ background: linear-gradient(180deg, #2b2f36 0%, #23272e 100%);
343
+ border-bottom: 1px solid #4a4f57;
344
+ color: #cfd8e3;
345
+ font-size: 0.78rem;
346
+ font-weight: 700;
347
+ letter-spacing: 0.06em;
348
+ text-transform: uppercase;
349
+ font-family: "Open Sans", sans-serif;
350
+ }
351
+
352
+ .editor-panel-action {
353
+ border: 1px solid #4d7ea8;
354
+ background: linear-gradient(180deg, #274766 0%, #1f3850 100%);
355
+ color: #d7ecff;
356
+ font-size: 0.72rem;
357
+ font-weight: 700;
358
+ text-transform: uppercase;
359
+ letter-spacing: 0.04em;
360
+ padding: 0.2rem 0.55rem;
361
+ cursor: pointer;
362
+ }
363
+
364
+ .editor-panel-action:hover {
365
+ background: linear-gradient(180deg, #31587d 0%, #274766 100%);
366
+ }
367
+
368
+ .editor-panel-actions {
369
+ display: inline-flex;
370
+ align-items: center;
371
+ gap: 0.45rem;
372
+ }
373
+
374
+ textarea {
375
+ margin: auto;
376
+ padding: 5px;
377
+ background-color: #333;
378
+ border: 1px solid #666;
379
+ border-radius: 0;
380
+ color: #f4f4f4;
381
+ overflow: auto;
382
+ resize: none;
383
+ width: calc(100% - 12px);
384
+ }
385
+
386
+ input {
387
+ margin: 0;
388
+ padding: 8px;
389
+ background-color: #333;
390
+ border: 1px solid #666;
391
+ border-radius: 0;
392
+ color: #f4f4f4;
393
+ }
394
+
395
+ .d-flex {
396
+ display: flex;
397
+ }
398
+
399
+ .variables-editor .CodeMirror {
400
+ height: 100%;
401
+ width: 100%;
402
+ border: none !important;
403
+ background-color: #1e1e1e !important;
404
+ color: #d4d4d4 !important;
405
+ font-family: Consolas, "Courier New", monospace;
406
+ }
407
+
408
+ .headers-editor .CodeMirror {
409
+ height: 100%;
410
+ width: 100%;
411
+ border: none !important;
412
+ background-color: #1e1e1e !important;
413
+ color: #d4d4d4 !important;
414
+ font-family: Consolas, "Courier New", monospace;
415
+ }
416
+
417
+ .response-viewer-container .CodeMirror {
418
+ display: flex !important;
419
+ flex: 1 1 auto;
420
+ height: 100%;
421
+ width: 100%;
422
+ border: none !important;
423
+ background-color: #1e1e1e !important;
424
+ color: #d4d4d4 !important;
425
+ font-family: Consolas, "Courier New", monospace;
426
+ min-width: 0;
427
+ min-height: 0;
428
+ }
429
+
430
+ .response-viewer-container .CodeMirror-scroll {
431
+ overflow-x: hidden !important;
432
+ flex: 1 1 auto;
433
+ background-color: #1e1e1e !important;
434
+ }
435
+
436
+ .response-viewer-container .CodeMirror-sizer,
437
+ .response-viewer-container .CodeMirror-lines,
438
+ .response-viewer-container .CodeMirror-code {
439
+ background-color: #1e1e1e !important;
440
+ }
441
+
442
+ .response-viewer-container .CodeMirror-hscrollbar {
443
+ display: none !important;
444
+ }
445
+
446
+ .response-viewer-container .CodeMirror-gutters {
447
+ background-color: #252526 !important;
448
+ border-right: 1px solid #333 !important;
449
+ }
450
+
451
+ .response-viewer-container .CodeMirror-gutter-wrapper,
452
+ .response-viewer-container .CodeMirror-linebackground,
453
+ .response-viewer-container .CodeMirror-line,
454
+ .response-viewer-container .CodeMirror-lines pre {
455
+ background-color: #1e1e1e !important;
456
+ color: #d4d4d4 !important;
457
+ }
458
+
459
+ .response-viewer-container .CodeMirror-linenumber {
460
+ color: #858585 !important;
461
+ }
462
+
463
+ .response-viewer-container .CodeMirror-cursor {
464
+ border-left: 1px solid #aeafad !important;
465
+ }
466
+
467
+ .response-viewer-container .CodeMirror-selected {
468
+ background: rgba(38, 79, 120, 0.85) !important;
469
+ }
470
+
471
+ .response-viewer-container .cm-string {
472
+ color: #ce9178 !important;
473
+ }
474
+
475
+ .response-viewer-container .cm-property {
476
+ color: #9cdcfe !important;
477
+ }
478
+
479
+ .response-viewer-container .cm-number {
480
+ color: #b5cea8 !important;
481
+ }
482
+
483
+ .response-viewer-container .cm-atom {
484
+ color: #66d9ef !important;
485
+ }
486
+
487
+ .response-viewer-container .cm-bracket {
488
+ color: #ffd700 !important;
489
+ }
490
+
491
+ .variables-editor .CodeMirror-gutters {
492
+ background-color: #252526 !important;
493
+ border-right: 1px solid #333 !important;
494
+ }
495
+
496
+ .headers-editor .CodeMirror-gutters {
497
+ background-color: #252526 !important;
498
+ border-right: 1px solid #333 !important;
499
+ }
500
+
501
+ .variables-editor .CodeMirror-linenumber {
502
+ color: #858585 !important;
503
+ }
504
+
505
+ .headers-editor .CodeMirror-linenumber {
506
+ color: #858585 !important;
507
+ }
508
+
509
+ .variables-editor .CodeMirror-cursor {
510
+ border-left: 1px solid #aeafad !important;
511
+ }
512
+
513
+ .headers-editor .CodeMirror-cursor {
514
+ border-left: 1px solid #aeafad !important;
515
+ }
516
+
517
+ .variables-editor .CodeMirror-selected {
518
+ background: rgba(38, 79, 120, 0.85) !important;
519
+ }
520
+
521
+ .headers-editor .CodeMirror-selected {
522
+ background: rgba(38, 79, 120, 0.85) !important;
523
+ }
524
+
525
+ .variables-editor .cm-string {
526
+ color: #ce9178 !important;
527
+ }
528
+
529
+ .headers-editor .cm-string {
530
+ color: #ce9178 !important;
531
+ }
532
+
533
+ .variables-editor .cm-number {
534
+ color: #b5cea8 !important;
535
+ }
536
+
537
+ .headers-editor .cm-number {
538
+ color: #b5cea8 !important;
539
+ }
540
+
541
+ .variables-editor .cm-atom {
542
+ color: #66d9ef !important;
543
+ }
544
+
545
+ .headers-editor .cm-atom {
546
+ color: #66d9ef !important;
547
+ }
548
+
549
+ .variables-editor .cm-bracket {
550
+ color: #ffd700 !important;
551
+ }
552
+
553
+ .headers-editor .cm-bracket {
554
+ color: #ffd700 !important;
555
+ }
556
+
557
+ .flex-column {
558
+ display: flex;
559
+ flex-direction: column;
560
+ }
561
+
562
+ .flex-row {
563
+ display: flex;
564
+ flex-direction: row;
565
+ }
566
+
567
+ .gap-1 {
568
+ gap: 5px;
569
+ }
570
+
571
+ .gap-10 {
572
+ gap: 10px;
573
+ row-gap: 10px;
574
+ }
575
+
576
+ /* .input-group: should stretch the input to occupy most of the space, the button should fit its internal content, it should also have no gap from the input, button borders that are close to other elements should be pointy, extremity borders should be rounded */
577
+ .input-group {
578
+ display: flex;
579
+ }
580
+ .input-group input {
581
+ flex: 1;
582
+ border-radius: 0;
583
+ border-right: none;
584
+ }
585
+ .input-group button {
586
+ border-radius: 0;
587
+ border-left: none;
588
+ }
589
+
590
+ button {
591
+ padding: 8px 15px;
592
+ background-color: #3F3F3F;
593
+ border: 1px solid #606060;
594
+ border-radius: 0;
595
+ color: #f4f4f4;
596
+ cursor: pointer;
597
+ }
598
+ button:hover {
599
+ background-color: #4f4f4f;
600
+ }
601
+
602
+ .top-nav {
603
+ display: flex !important;
604
+ align-items: center;
605
+ justify-content: space-between;
606
+ gap: 1rem;
607
+ padding: 0.85rem 1rem;
608
+ background: linear-gradient(180deg, #2b2f36 0%, #23272e 100%);
609
+ border-bottom: 1px solid #4a4f57;
610
+ }
611
+
612
+ .top-nav-brand {
613
+ display: flex;
614
+ flex-direction: column;
615
+ gap: 0.15rem;
616
+ }
617
+
618
+ .top-nav-actions {
619
+ display: inline-flex;
620
+ align-items: center;
621
+ gap: 0.6rem;
622
+ }
623
+
624
+ .locale-label {
625
+ color: #9aa6b2;
626
+ font-size: 0.82rem;
627
+ white-space: nowrap;
628
+ }
629
+
630
+ .locale-select {
631
+ border: 1px solid #4a4f57;
632
+ background: #1f2329;
633
+ color: #d4d4d4;
634
+ padding: 0.4rem 0.55rem;
635
+ }
636
+
637
+ .locale-select:focus {
638
+ outline: none;
639
+ border-color: #4fc1ff;
640
+ }
641
+
642
+ .top-nav-title-row {
643
+ display: flex;
644
+ align-items: center;
645
+ gap: 0.55rem;
646
+ }
647
+
648
+ .top-nav-title {
649
+ color: #f2f6fb;
650
+ font-size: 1rem;
651
+ font-weight: 700;
652
+ letter-spacing: 0.02em;
653
+ }
654
+
655
+ .top-nav-badge {
656
+ display: inline-flex;
657
+ align-items: center;
658
+ padding: 0.14rem 0.42rem;
659
+ border: 1px solid #4d7ea8;
660
+ border-radius: 999px;
661
+ background: rgba(39, 71, 102, 0.45);
662
+ color: #bfe3ff;
663
+ font-size: 0.72rem;
664
+ font-weight: 700;
665
+ letter-spacing: 0.04em;
666
+ }
667
+
668
+ .top-nav-subtitle {
669
+ color: #9aa6b2;
670
+ font-size: 0.8rem;
671
+ line-height: 1.35;
672
+ }
673
+
674
+ .config-btn {
675
+ border: 1px solid #4d7ea8;
676
+ background: linear-gradient(180deg, #274766 0%, #1f3850 100%);
677
+ color: #d7ecff;
678
+ padding: 0.45rem 0.8rem;
679
+ cursor: pointer;
680
+ font-weight: 700;
681
+ text-transform: uppercase;
682
+ letter-spacing: 0.04em;
683
+ }
684
+
685
+ .config-btn:hover {
686
+ background: linear-gradient(180deg, #31587d 0%, #274766 100%);
687
+ }
688
+
689
+ .modal {
690
+ position: fixed;
691
+ top: 0;
692
+ left: 0;
693
+ width: 100%;
694
+ height: 100%;
695
+ background: rgba(0, 0, 0, 0.5);
696
+ display: flex !important;
697
+ align-items: center;
698
+ justify-content: center;
699
+ }
700
+
701
+ .modal-content {
702
+ background: #2f2f2f;
703
+ border: 1px solid #666;
704
+ border-radius: 16px;
705
+ padding: 20px;
706
+ width: 50%;
707
+ }
708
+
709
+ .config-tabs {
710
+ display: flex;
711
+ border-bottom: 2px solid #ddd;
712
+ }
713
+
714
+ .config-tabs .tab-item {
715
+ padding: 10px;
716
+ cursor: pointer;
717
+ }
718
+
719
+ .workspace-actions-note {
720
+ margin: 0 0 12px;
721
+ color: #9aa6b2;
722
+ line-height: 1.5;
723
+ }
724
+
725
+ .workspace-actions {
726
+ display: flex;
727
+ gap: 10px;
728
+ flex-wrap: wrap;
729
+ }
730
+
731
+ .workspace-import-input {
732
+ display: none;
733
+ }
734
+
735
+ .headers-table {
736
+ width: 100%;
737
+ border-collapse: collapse;
738
+ }
739
+
740
+ .headers-table th, .headers-table td {
741
+ padding: 8px;
742
+ border: 1px solid #ddd;
743
+ }
744
+
745
+ .close-btn {
746
+ margin-top: 10px;
747
+ }
748
+
749
+ .modal-overlay {
750
+ display: block !important;
751
+ position: fixed;
752
+ top: 0;
753
+ left: 0;
754
+ right: 0;
755
+ bottom: 0;
756
+ background: rgba(31, 31, 31, 0.6274509804);
757
+ }
758
+
759
+ table.headers-table tbody td {
760
+ padding: 0;
761
+ }
762
+ table.headers-table tbody td input {
763
+ background-color: #fff;
764
+ width: 100%;
765
+ padding: 8px;
766
+ border: none;
767
+ border-radius: 0;
768
+ color: #111;
769
+ box-sizing: border-box;
770
+ }
771
+ table.headers-table tbody td input:focus {
772
+ outline: none;
773
+ box-shadow: 0 0 0 2px #4f4f4f;
774
+ }
775
+
776
+ td.remove-action, th.remove-action {
777
+ width: 1px;
778
+ }
779
+
780
+ .config-modal h2 {
781
+ margin: 0;
782
+ margin-bottom: 10px;
783
+ }
784
+
785
+ .modal button:not(td > button) {
786
+ border-radius: 8px;
787
+ }
788
+
789
+ .query-editor-container {
790
+ display: flex;
791
+ flex: 1 1 auto;
792
+ min-height: 0;
793
+ margin: 0;
794
+ height: auto;
795
+ }
796
+ .query-editor-container textarea {
797
+ min-height: 0;
798
+ font-family: Consolas, "Courier New", monospace;
799
+ width: 100%;
800
+ }
801
+
802
+ .query-editor .CodeMirror {
803
+ height: 100%;
804
+ width: 100%;
805
+ border: none !important;
806
+ background-color: #1e1e1e !important;
807
+ color: #d4d4d4 !important;
808
+ font-family: Consolas, "Courier New", monospace;
809
+ font-size: 0.95rem;
810
+ }
811
+
812
+ .query-editor .CodeMirror-scroll,
813
+ .variables-editor .CodeMirror-scroll,
814
+ .headers-editor .CodeMirror-scroll,
815
+ .response-viewer-container .CodeMirror-scroll {
816
+ min-height: 100%;
817
+ }
818
+
819
+ .variables-editor .CodeMirror-sizer,
820
+ .headers-editor .CodeMirror-sizer,
821
+ .variables-editor .CodeMirror-lines,
822
+ .headers-editor .CodeMirror-lines {
823
+ min-width: 0;
824
+ }
825
+
826
+ .variables-editor .CodeMirror-scroll,
827
+ .headers-editor .CodeMirror-scroll {
828
+ overflow-x: hidden !important;
829
+ }
830
+
831
+ .variables-editor .CodeMirror-hscrollbar,
832
+ .headers-editor .CodeMirror-hscrollbar {
833
+ display: none !important;
834
+ }
835
+
836
+ .query-editor .CodeMirror-gutters {
837
+ background-color: #252526 !important;
838
+ border-right: 1px solid #333 !important;
839
+ }
840
+
841
+ .query-editor .CodeMirror-linenumber {
842
+ color: #858585 !important;
843
+ }
844
+
845
+ .query-editor .CodeMirror-cursor {
846
+ border-left: 1px solid #aeafad !important;
847
+ }
848
+
849
+ .query-editor .CodeMirror-selected {
850
+ background: rgba(38, 79, 120, 0.85) !important;
851
+ }
852
+
853
+ .query-editor .cm-keyword {
854
+ color: #d8a8ff !important;
855
+ }
856
+
857
+ .query-editor .cm-atom {
858
+ color: #66d9ef !important;
859
+ }
860
+
861
+ .query-editor .cm-type-name {
862
+ color: #4ec9b0 !important;
863
+ font-weight: 600;
864
+ }
865
+
866
+ .query-editor .cm-string {
867
+ color: #ce9178 !important;
868
+ }
869
+
870
+ .query-editor .cm-number {
871
+ color: #b5cea8 !important;
872
+ }
873
+
874
+ .query-editor .cm-variable,
875
+ .query-editor .cm-variable-2,
876
+ .query-editor .cm-def {
877
+ color: #67d4ff !important;
878
+ }
879
+
880
+ .query-editor .cm-property {
881
+ color: #4ec9b0 !important;
882
+ }
883
+
884
+ .query-editor .cm-def {
885
+ color: #4fc1ff !important;
886
+ }
887
+
888
+ .query-editor .cm-variable {
889
+ color: #9cdcfe !important;
890
+ }
891
+
892
+ .query-editor .cm-variable-2 {
893
+ color: #6bbcdc !important;
894
+ }
895
+
896
+ .query-editor .cm-comment {
897
+ color: #8fdc6b !important;
898
+ font-style: italic;
899
+ }
900
+
901
+ .query-editor .cm-meta {
902
+ color: #d8a8ff !important;
903
+ }
904
+
905
+ .query-editor .cm-operator {
906
+ color: #d4d4d4 !important;
907
+ }
908
+
909
+ .query-editor .cm-bracket {
910
+ color: #ffd700 !important;
911
+ }
912
+
913
+ .query-editor .cm-non-null-modifier {
914
+ color: #ff6b6b !important;
915
+ font-weight: 800;
916
+ }
917
+
918
+ .query-editor .cm-list-modifier {
919
+ color: #ffca28 !important;
920
+ font-weight: 700;
921
+ }
922
+
923
+ .CodeMirror-hints {
924
+ background-color: #252526 !important;
925
+ border: 1px solid #454545 !important;
926
+ color: #d4d4d4 !important;
927
+ font-family: Consolas, "Courier New", monospace;
928
+ }
929
+
930
+ .CodeMirror-hint {
931
+ color: #d4d4d4 !important;
932
+ }
933
+
934
+ .CodeMirror-hint-active {
935
+ background-color: #04395e !important;
936
+ color: #ffffff !important;
937
+ }
938
+
939
+ .cm-hint-keyword {
940
+ color: #d8a8ff !important;
941
+ }
942
+
943
+ .cm-hint-type {
944
+ color: #66d9ef !important;
945
+ }
946
+
947
+ .cm-hint-field {
948
+ color: #4ec9b0 !important;
949
+ }
950
+
951
+ .cm-hint-argument {
952
+ color: #67d4ff !important;
953
+ }
954
+
955
+ .cm-hint-enum {
956
+ color: #66d9ef !important;
957
+ }
958
+
959
+ .schema-viewer-wrapper {
960
+ position: fixed;
961
+ top: 0;
962
+ right: 0;
963
+ z-index: 1000;
964
+ width: fit-content;
965
+ height: 100vh;
966
+ transition: all 0.3s ease-in-out;
967
+ }
968
+ .schema-viewer-wrapper.open .schema-viewer-panel {
969
+ width: 340px;
970
+ right: 0;
971
+ }
972
+ .schema-viewer-wrapper.open .btn.btn-toggle-schema-viewer {
973
+ right: 309px;
974
+ }
975
+
976
+ .schema-viewer-panel {
977
+ position: fixed;
978
+ top: 0;
979
+ right: -340px;
980
+ width: 0;
981
+ overflow: hidden;
982
+ height: 100vh;
983
+ display: flex;
984
+ flex-direction: column;
985
+ background-color: #333;
986
+ border: 1px solid #666;
987
+ border-radius: 0;
988
+ color: #f4f4f4;
989
+ padding: 0;
990
+ transition: all 0.3s ease-in-out;
991
+ }
992
+ .schema-viewer-panel pre {
993
+ margin: 0;
994
+ padding: 0;
995
+ overflow: auto;
996
+ }
997
+
998
+ .schema-panel-title {
999
+ position: sticky;
1000
+ top: 0;
1001
+ z-index: 2;
1002
+ margin: 0;
1003
+ }
1004
+
1005
+ .schema-panel-toolbar {
1006
+ flex: 0 0 auto;
1007
+ padding: 0.7rem;
1008
+ border-bottom: 1px solid #4a4f57;
1009
+ background: #2d3138;
1010
+ }
1011
+
1012
+ .schema-panel-body {
1013
+ flex: 1 1 auto;
1014
+ min-height: 0;
1015
+ overflow: auto;
1016
+ }
1017
+
1018
+ .schema-search-input {
1019
+ width: 100%;
1020
+ padding: 0.55rem 0.65rem;
1021
+ border: 1px solid #4a4f57;
1022
+ background: #1f2329;
1023
+ color: #d4d4d4;
1024
+ font-family: Consolas, "Courier New", monospace;
1025
+ font-size: 0.9rem;
1026
+ margin-bottom: 0.45rem;
1027
+ }
1028
+
1029
+ .schema-search-input:focus {
1030
+ outline: none;
1031
+ border-color: #4fc1ff;
1032
+ }
1033
+
1034
+ .schema-panel-note {
1035
+ color: #9aa6b2;
1036
+ font-size: 0.78rem;
1037
+ font-style: italic;
1038
+ line-height: 1.45;
1039
+ }
1040
+
1041
+ .schema-viewer-panel .type-definition {
1042
+ padding: 0.7rem;
1043
+ padding-bottom: 0.6rem;
1044
+ }
1045
+
1046
+ .schema-viewer-panel .field-name.is-actionable {
1047
+ cursor: pointer;
1048
+ }
1049
+
1050
+ .schema-viewer-panel .field-name.is-actionable:hover {
1051
+ text-decoration: underline;
1052
+ }
1053
+
1054
+ .schema-tooltip {
1055
+ position: fixed;
1056
+ z-index: 1200;
1057
+ width: 320px;
1058
+ max-width: calc(100vw - 24px);
1059
+ padding: 0.75rem 0.9rem;
1060
+ background: rgba(20, 24, 31, 0.98) !important;
1061
+ border: 1px solid #3a4552 !important;
1062
+ border-radius: 0.7rem;
1063
+ box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35) !important;
1064
+ pointer-events: none !important;
1065
+ opacity: 0 !important;
1066
+ visibility: hidden !important;
1067
+ transform: translateY(6px);
1068
+ transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
1069
+ }
1070
+
1071
+ .schema-tooltip.is-visible {
1072
+ opacity: 1 !important;
1073
+ visibility: visible !important;
1074
+ transform: translateY(0);
1075
+ transition: opacity 0.3s ease, transform 0.3s ease;
1076
+ }
1077
+
1078
+ .schema-tooltip-signature {
1079
+ display: flex;
1080
+ flex-wrap: wrap;
1081
+ align-items: center;
1082
+ gap: 0.3rem;
1083
+ font-family: Consolas, "Courier New", monospace;
1084
+ line-height: 1.35;
1085
+ }
1086
+
1087
+ .schema-tooltip-name {
1088
+ font-weight: 700;
1089
+ }
1090
+
1091
+ .schema-tooltip-name-field {
1092
+ color: #4fc1ff;
1093
+ }
1094
+
1095
+ .schema-tooltip-name-argument {
1096
+ color: #9cdcfe;
1097
+ }
1098
+
1099
+ .schema-tooltip-name-type {
1100
+ color: #4fc3f7;
1101
+ }
1102
+
1103
+ .schema-tooltip-type-tokens {
1104
+ display: inline-flex;
1105
+ flex-wrap: wrap;
1106
+ gap: 0.05rem;
1107
+ }
1108
+
1109
+ .schema-tooltip-name-enum {
1110
+ color: #66d9ef;
1111
+ }
1112
+
1113
+ .schema-tooltip .field-type {
1114
+ color: #4fc3f7;
1115
+ }
1116
+
1117
+ .schema-tooltip .field-type-prefix,
1118
+ .schema-tooltip .field-type-suffix {
1119
+ color: #ffca28;
1120
+ font-weight: 700;
1121
+ }
1122
+
1123
+ .schema-tooltip .field-type-non-null {
1124
+ color: #ff6b6b;
1125
+ font-weight: 800;
1126
+ }
1127
+
1128
+ .schema-tooltip-description {
1129
+ margin-top: 0.55rem;
1130
+ color: #c9d4df;
1131
+ font-size: 0.92rem;
1132
+ line-height: 1.45;
1133
+ white-space: pre-wrap;
1134
+ }
1135
+
1136
+ .schema-tooltip-inline-args {
1137
+ display: inline-flex;
1138
+ flex-wrap: wrap;
1139
+ align-items: center;
1140
+ gap: 0.3rem;
1141
+ font-family: Consolas, "Courier New", monospace;
1142
+ }
1143
+
1144
+ .schema-tooltip-usage-list {
1145
+ margin-top: 0.6rem;
1146
+ display: flex;
1147
+ flex-direction: column;
1148
+ gap: 0.4rem;
1149
+ }
1150
+
1151
+ .schema-tooltip-usage-item {
1152
+ display: flex;
1153
+ flex-wrap: wrap;
1154
+ align-items: center;
1155
+ gap: 0.3rem;
1156
+ font-family: Consolas, "Courier New", monospace;
1157
+ font-size: 0.9rem;
1158
+ }
1159
+
1160
+ .schema-tooltip-muted {
1161
+ color: #7f8b99 !important;
1162
+ }
1163
+
1164
+ .schema-tooltip-muted.field-type,
1165
+ .schema-tooltip-muted.field-type-prefix,
1166
+ .schema-tooltip-muted.field-type-suffix,
1167
+ .schema-tooltip-muted.field-type-non-null {
1168
+ color: #7f8b99 !important;
1169
+ }
1170
+
1171
+ .btn.btn-toggle-schema-viewer {
1172
+ position: fixed;
1173
+ z-index: 1001;
1174
+ top: 8rem;
1175
+ right: -2rem;
1176
+ direction: ltr;
1177
+ transform: rotate(-90deg);
1178
+ text-transform: uppercase;
1179
+ border-top-left-radius: 1rem;
1180
+ border-top-right-radius: 1rem;
1181
+ transition: all 0.3s ease-in-out;
1182
+ }
1183
+
1184
+ .schema-viewer-error {
1185
+ position: fixed;
1186
+ top: 5rem;
1187
+ right: 0;
1188
+ z-index: 1010;
1189
+ padding: 0.8rem;
1190
+ border-radius: 1rem;
1191
+ background-color: #f44336;
1192
+ border-color: #d32f2f;
1193
+ box-shadow: 0 2px 4px rgba(244, 67, 54, 0.5);
1194
+ color: #fff;
1195
+ margin: 0.5rem 0;
1196
+ transition: all 0.3s ease-in-out;
1197
+ opacity: 0.5;
1198
+ }
1199
+ .schema-viewer-error pre {
1200
+ margin: 0;
1201
+ padding: 0;
1202
+ overflow: auto;
1203
+ }
1204
+
1205
+ .btn.schema-download-retry {
1206
+ margin-top: 0.5rem;
1207
+ background-color: #fff;
1208
+ color: #f44336;
1209
+ border: 1px solid #d32f2f;
1210
+ position: absolute;
1211
+ left: 50%;
1212
+ transform: translateX(-50%);
1213
+ border-radius: 0.8rem;
1214
+ }
1215
+ .btn.schema-download-retry:hover {
1216
+ background-color: #f44336;
1217
+ color: #fff;
1218
+ }
1219
+
1220
+ .type-definition {
1221
+ margin-bottom: 0.5rem;
1222
+ }
1223
+ .type-definition .field {
1224
+ margin-bottom: 0.2rem;
1225
+ }
1226
+ .type-definition .field-name {
1227
+ margin-left: 1rem;
1228
+ }
1229
+ .type-definition .field-type-wrapper {
1230
+ display: inline-flex;
1231
+ align-items: center;
1232
+ gap: 0.05rem;
1233
+ }
1234
+ .type-definition .field-type {
1235
+ font-style: italic;
1236
+ color: #4fc3f7;
1237
+ text-shadow: 0 0 6px rgba(79, 195, 247, 0.18);
1238
+ }
1239
+ .type-definition .field-type-link {
1240
+ text-decoration: none;
1241
+ }
1242
+ .type-definition .field-type-link .field-type {
1243
+ color: #4fc3f7;
1244
+ }
1245
+ .type-definition .field-type-prefix,
1246
+ .type-definition .field-type-suffix {
1247
+ color: #ffca28;
1248
+ font-weight: 700;
1249
+ text-shadow: 0 0 6px rgba(255, 202, 40, 0.2);
1250
+ }
1251
+ .type-definition .field-type-non-null {
1252
+ color: #ff6b6b;
1253
+ font-weight: 800;
1254
+ text-shadow: 0 0 6px rgba(255, 107, 107, 0.22);
1255
+ }
1256
+ .type-definition .bracket {
1257
+ font-weight: bold;
1258
+ color: #802080;
1259
+ }
1260
+ .type-definition .equal {
1261
+ font-weight: bold;
1262
+ }
1263
+ .type-definition .colon {
1264
+ font-weight: bold;
1265
+ color: #208020;
1266
+ }
1267
+ .type-definition .keyword {
1268
+ font-weight: bold;
1269
+ color: #2080f0;
1270
+ }
1271
+ .type-definition .type-name {
1272
+ font-weight: bold;
1273
+ color: #20f020;
1274
+ }
1275
+ .type-definition .field-args {
1276
+ margin-left: 0.25rem;
1277
+ }
1278
+ .type-definition .field-arg-name {
1279
+ color: #f0c020;
1280
+ }
1281
+ .type-definition .field-type-link {
1282
+ text-decoration: none;
1283
+ }
1284
+ .type-definition .field-arg-default {
1285
+ color: #d0d0d0;
1286
+ }
1287
+ .type-definition .field-arg-description {
1288
+ color: #9aa4ad;
1289
+ font-size: 0.9em;
1290
+ margin-left: 0.35rem;
1291
+ }
1292
+
1293
+ .type-definition > * {
1294
+ min-width: max-content;
1295
+ padding-right: 1rem;
1296
+ }
1297
+
1298
+ .field {
1299
+ min-width: max-content;
1300
+ }
1301
+ .field > * {
1302
+ min-width: max-content;
1303
+ white-space: nowrap;
1304
+ display: inline-block;
1305
+ }
1306
+
1307
+ .enum-name {
1308
+ font-weight: bold;
1309
+ color: #20a080;
1310
+ padding-left: 1rem;
1311
+ }
1312
+
1313
+ /*# sourceMappingURL=main.css.map */