@arcblock/ux 0.78.26 → 1.6.60

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