@n1k1t/mock-server 0.1.32 → 0.1.34

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 (51) hide show
  1. package/.nvmrc +1 -0
  2. package/lib/package.json +5 -3
  3. package/lib/src/server/endpoints/history.get-list.endpoint.d.ts +2 -2
  4. package/lib/src/server/endpoints/history.get-list.endpoint.js +1 -1
  5. package/lib/src/server/endpoints/history.get-list.endpoint.js.map +1 -1
  6. package/lib/src/server/models/context/index.d.ts.map +1 -0
  7. package/lib/src/server/models/{request-context → context}/index.js +1 -0
  8. package/lib/src/server/models/context/index.js.map +1 -0
  9. package/lib/src/server/models/context/snapshot.d.ts.map +1 -0
  10. package/lib/src/server/models/context/snapshot.js.map +1 -0
  11. package/lib/src/server/models/context/types.d.ts.map +1 -0
  12. package/lib/src/server/models/context/types.js.map +1 -0
  13. package/lib/src/server/models/context/utils.d.ts.map +1 -0
  14. package/lib/src/server/models/context/utils.js.map +1 -0
  15. package/lib/src/server/models/executor/errors/index.d.ts +1 -1
  16. package/lib/src/server/models/executor/errors/index.d.ts.map +1 -1
  17. package/lib/src/server/models/executor/index.d.ts +1 -1
  18. package/lib/src/server/models/executor/index.d.ts.map +1 -1
  19. package/lib/src/server/models/executor/index.js +8 -8
  20. package/lib/src/server/models/executor/index.js.map +1 -1
  21. package/lib/src/server/models/history/model.d.ts +6 -6
  22. package/lib/src/server/models/history/model.d.ts.map +1 -1
  23. package/lib/src/server/models/history/model.js +13 -15
  24. package/lib/src/server/models/history/model.js.map +1 -1
  25. package/lib/src/server/models/index.d.ts +1 -1
  26. package/lib/src/server/models/index.d.ts.map +1 -1
  27. package/lib/src/server/models/index.js +1 -1
  28. package/lib/src/server/models/index.js.map +1 -1
  29. package/lib/src/server/models/reply.d.ts +1 -1
  30. package/lib/src/server/models/reply.d.ts.map +1 -1
  31. package/lib/src/server/transports/http/executor.d.ts +1 -1
  32. package/lib/tsconfig.tsbuildinfo +1 -1
  33. package/package.json +5 -3
  34. package/public/index.html +0 -23
  35. package/public/scripts/main.js +1372 -640
  36. package/public/styles/main.css +476 -384
  37. package/lib/src/server/models/request-context/index.d.ts.map +0 -1
  38. package/lib/src/server/models/request-context/index.js.map +0 -1
  39. package/lib/src/server/models/request-context/snapshot.d.ts.map +0 -1
  40. package/lib/src/server/models/request-context/snapshot.js.map +0 -1
  41. package/lib/src/server/models/request-context/types.d.ts.map +0 -1
  42. package/lib/src/server/models/request-context/types.js.map +0 -1
  43. package/lib/src/server/models/request-context/utils.d.ts.map +0 -1
  44. package/lib/src/server/models/request-context/utils.js.map +0 -1
  45. /package/lib/src/server/models/{request-context → context}/index.d.ts +0 -0
  46. /package/lib/src/server/models/{request-context → context}/snapshot.d.ts +0 -0
  47. /package/lib/src/server/models/{request-context → context}/snapshot.js +0 -0
  48. /package/lib/src/server/models/{request-context → context}/types.d.ts +0 -0
  49. /package/lib/src/server/models/{request-context → context}/types.js +0 -0
  50. /package/lib/src/server/models/{request-context → context}/utils.d.ts +0 -0
  51. /package/lib/src/server/models/{request-context → context}/utils.js +0 -0
@@ -1,15 +1,20 @@
1
1
  @charset "UTF-8";
2
- @keyframes pending {
3
- 0% {
4
- content: "\f251";
5
- }
6
- 33% {
7
- content: "\f252";
8
- }
9
- 66% {
10
- content: "\f253";
11
- }
2
+ .hidden {
3
+ visibility: hidden;
4
+ display: none !important;
5
+ }
6
+
7
+ .selected:after {
8
+ content: "";
9
+ width: 100%;
10
+ height: 100%;
11
+ position: absolute;
12
+ left: 0;
13
+ top: 0;
14
+ border-radius: inherit;
15
+ box-shadow: inset 0 0 0 3px #48d1cc;
12
16
  }
17
+
13
18
  html {
14
19
  background-color: #1e1e1e;
15
20
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
@@ -80,41 +85,6 @@ div.container {
80
85
  background-color: rgba(255, 255, 255, 0.05);
81
86
  }
82
87
 
83
- div.empty {
84
- display: flex;
85
- justify-content: center;
86
- align-items: center;
87
- margin-top: 50px;
88
- }
89
- div.empty i {
90
- color: #ffd37b;
91
- font-size: 50px;
92
- margin-right: 30px;
93
- }
94
- div.empty i:before {
95
- animation: pending 1s infinite;
96
- }
97
- div.empty p {
98
- color: rgba(255, 255, 255, 0.3);
99
- font-size: 25px;
100
- font-weight: 300;
101
- }
102
-
103
- div.curtain {
104
- cursor: pointer;
105
- position: fixed;
106
- overflow-y: auto;
107
- top: 0;
108
- left: 0;
109
- height: calc(100% - 50px);
110
- width: 100%;
111
- padding-top: 50px;
112
- background-color: rgba(30, 30, 30, 0.95);
113
- }
114
- div.curtain > * {
115
- cursor: auto;
116
- }
117
-
118
88
  div.input {
119
89
  display: inline-block;
120
90
  position: relative;
@@ -167,104 +137,295 @@ div.input.required:before {
167
137
  margin-left: 12px;
168
138
  }
169
139
 
170
- .hidden {
171
- visibility: hidden;
172
- display: none !important;
173
- }
174
-
175
- .selected:after {
176
- content: "";
177
- width: 100%;
178
- height: 100%;
179
- position: absolute;
180
- left: 0;
181
- top: 0;
140
+ div.history div.meta, div.expectation div.meta {
182
141
  border-radius: inherit;
183
- box-shadow: inset 0 0 0 3px #48d1cc;
184
- }
185
-
186
- body > header {
187
142
  display: flex;
188
- justify-content: center;
143
+ flex-wrap: wrap;
144
+ }
145
+ div.history div.meta div.segment, div.expectation div.meta div.segment {
146
+ display: inline-flex;
147
+ flex-wrap: wrap;
148
+ margin-bottom: 5px;
149
+ }
150
+ div.history div.meta span, div.history div.meta button, div.expectation div.meta span, div.expectation div.meta button {
151
+ padding: 7px 15px;
152
+ display: inline-block;
153
+ background-color: rgba(255, 255, 255, 0.05);
154
+ border-radius: 5px;
155
+ margin-right: 5px;
156
+ margin-top: 0;
157
+ margin-bottom: 0;
158
+ font-size: 14px;
159
+ }
160
+ div.history div.meta button, div.expectation div.meta button {
161
+ min-width: 50px;
162
+ margin-left: 0;
163
+ }
164
+ div.history div.meta button i, div.expectation div.meta button i {
165
+ float: none;
166
+ margin-right: 0;
167
+ }
168
+ div.history div.meta b, div.expectation div.meta b {
169
+ font-weight: normal;
189
170
  position: relative;
171
+ display: inline-block;
190
172
  }
191
- body > header button {
192
- text-decoration: none;
173
+ div.history div.meta b:after, div.expectation div.meta b:after {
174
+ content: "";
175
+ display: inline-block;
176
+ position: relative;
177
+ height: 14px;
178
+ width: 1px;
179
+ background-color: rgba(255, 255, 255, 0.1);
180
+ top: 2px;
181
+ margin-left: 10px;
182
+ margin-right: 5px;
183
+ }
184
+ div.history div.meta span.arrow, div.expectation div.meta span.arrow {
185
+ background: transparent;
186
+ color: rgba(255, 255, 255, 0.3);
187
+ padding: 8px 10px;
188
+ padding-left: 12px;
189
+ margin-right: 5px;
190
+ }
191
+ div.history div.meta button.activity i.fa-plug, div.expectation div.meta button.activity i.fa-plug {
192
+ color: #a7ff7b;
193
+ }
194
+ div.history div.meta button.activity i.fa-power-off, div.expectation div.meta button.activity i.fa-power-off {
195
+ color: #ff7b7b;
196
+ }
197
+ div.history div.meta span.name, div.expectation div.meta span.name {
198
+ font-size: 12px;
199
+ }
200
+ div.history div.meta span.name b, div.expectation div.meta span.name b {
201
+ color: #ffd37b;
202
+ }
203
+ div.history div.meta span.status, div.expectation div.meta span.status {
204
+ color: rgba(255, 255, 255, 0.4);
205
+ font-size: 12px;
206
+ }
207
+ div.history div.meta span.status b, div.expectation div.meta span.status b {
208
+ min-width: 35px;
209
+ text-align: center;
193
210
  font-size: 14px;
211
+ }
212
+ div.history div.meta span.status.red b, div.expectation div.meta span.status.red b {
213
+ color: #ff7b7b;
214
+ }
215
+ div.history div.meta span.status.green b, div.expectation div.meta span.status.green b {
216
+ color: #a7ff7b;
217
+ }
218
+ div.history div.meta span.transport, div.expectation div.meta span.transport {
219
+ color: rgba(255, 255, 255, 0.4);
220
+ font-size: 12px;
221
+ }
222
+ div.history div.meta span.method, div.expectation div.meta span.method {
223
+ color: #1e1e1e;
224
+ font-weight: bold;
225
+ }
226
+ div.history div.meta span.path, div.expectation div.meta span.path {
227
+ background-color: #ffa77b;
228
+ color: #1e1e1e;
229
+ }
230
+ div.history div.meta span.time, div.expectation div.meta span.time {
231
+ width: 60px;
232
+ text-align: center;
233
+ font-size: 12px;
234
+ }
235
+ div.history div.meta span.calls-count, div.history div.meta span.name, div.history div.meta span.time, div.expectation div.meta span.calls-count, div.expectation div.meta span.name, div.expectation div.meta span.time {
194
236
  color: rgba(255, 255, 255, 0.5);
195
- vertical-align: top;
196
237
  }
197
- body > header button i {
238
+ div.history div.meta span.calls-count.active, div.history div.meta span.name.active, div.history div.meta span.time.active, div.expectation div.meta span.calls-count.active, div.expectation div.meta span.name.active, div.expectation div.meta span.time.active {
239
+ color: #fff;
240
+ }
241
+ div.history div.meta span.calls-count i, div.history div.meta span.name i, div.history div.meta span.time i, div.expectation div.meta span.calls-count i, div.expectation div.meta span.name i, div.expectation div.meta span.time i {
242
+ opacity: 0.2;
198
243
  margin-right: 10px;
199
244
  }
200
- body > header button.icon-only i {
245
+ div.history div.meta span.calls-count, div.expectation div.meta span.calls-count {
246
+ min-width: 38px;
247
+ }
248
+ div.history div.meta span.pending, div.expectation div.meta span.pending {
249
+ min-width: 35px;
250
+ text-align: center;
251
+ }
252
+ div.history div.meta span.pending i:before, div.expectation div.meta span.pending i:before {
253
+ animation: pending 1s infinite;
254
+ }
255
+ div.history div.meta span.separator, div.history div.meta span.label, div.expectation div.meta span.separator, div.expectation div.meta span.label {
256
+ padding: 0 5px;
257
+ color: rgba(0, 0, 0, 0.3);
258
+ font-size: 12px;
201
259
  margin-right: 0;
202
- font-size: 16px;
260
+ margin-bottom: 0;
203
261
  }
204
- body > header button.checked {
205
- background-color: #ffd37b;
262
+ div.history div.meta span.label, div.expectation div.meta span.label {
263
+ padding-left: 0;
264
+ }
265
+ div.history div.meta span.handled-with, div.expectation div.meta span.handled-with {
266
+ background-color: transparent;
267
+ color: rgba(255, 255, 255, 0.3);
268
+ margin-right: 0;
269
+ padding: 7px 5px;
270
+ }
271
+ div.history div.meta span.handled-with span.handler-name, div.expectation div.meta span.handled-with span.handler-name {
272
+ margin: 0;
273
+ padding: 0;
274
+ background-color: transparent;
275
+ color: #ffd37b;
276
+ }
277
+ div.history div.meta span.handled-with span.handler-name.red, div.expectation div.meta span.handled-with span.handler-name.red {
278
+ color: #ff7b7b;
279
+ }
280
+ div.history div.meta span.error, div.expectation div.meta span.error {
281
+ background-color: #ff4848;
282
+ }
283
+ div.history div.meta span.forward, div.expectation div.meta span.forward {
284
+ background-color: #7b7bff;
285
+ font-size: 12px;
286
+ }
287
+ div.history div.meta span.seed, div.expectation div.meta span.seed {
288
+ color: #a7ff7b;
289
+ font-size: 12px;
290
+ }
291
+ div.history div.meta span.cache, div.expectation div.meta span.cache {
292
+ background-color: #e1e1ff;
206
293
  color: #1e1e1e;
207
294
  }
208
- body > header button:not(.checked) {
209
- color: rgba(255, 255, 255, 0.5);
210
- background-color: rgba(255, 255, 255, 0.05);
295
+ div.history:hover div.meta, div.expectation:hover div.meta {
296
+ cursor: pointer;
211
297
  }
212
- body > header hr {
213
- position: relative;
214
- width: 1px;
215
- height: 25px;
216
- border: none;
217
- background-color: #ddd;
218
- margin: 10px 10px;
298
+ div.history:hover div.meta span.time, div.history:hover div.meta span.transport, div.history:hover div.meta span.status, div.history:hover div.meta span.name, div.expectation:hover div.meta span.time, div.expectation:hover div.meta span.transport, div.expectation:hover div.meta span.status, div.expectation:hover div.meta span.name {
299
+ background-color: rgba(255, 255, 255, 0.15);
219
300
  }
220
- body > header div.buttons-container#container-select button {
221
- padding: 10px 20px;
301
+ div.history.expectation div.meta span.status b:after, div.expectation.expectation div.meta span.status b:after {
302
+ display: none;
303
+ }
304
+ @media screen and (max-width: 1000px) {
305
+ div.history div.meta, div.expectation div.meta {
306
+ background-color: #262626;
307
+ padding: 5px;
308
+ padding-bottom: 0;
309
+ margin-bottom: 5px;
310
+ }
311
+ div.history div.meta div.segment:first-child, div.expectation div.meta div.segment:first-child {
312
+ width: 100%;
313
+ }
314
+ div.history div.meta span.arrow:nth-child(1), div.history div.meta span.arrow:nth-child(2), div.expectation div.meta span.arrow:nth-child(1), div.expectation div.meta span.arrow:nth-child(2) {
315
+ display: none;
316
+ }
317
+ div.history div.meta span, div.history div.meta button, div.expectation div.meta span, div.expectation div.meta button {
318
+ background-color: rgba(30, 30, 30, 0.5);
319
+ }
320
+ div.history:hover div.meta, div.expectation:hover div.meta {
321
+ background-color: #2b2b2b;
322
+ }
323
+ }
324
+
325
+ section#settings div.container p {
326
+ color: rgba(255, 255, 255, 0.4);
327
+ margin-left: 10px;
328
+ margin-top: 0;
329
+ }
330
+ section#settings div.container p i {
331
+ margin-right: 10px;
332
+ }
333
+ section#settings div.container p span {
334
+ color: rgba(255, 255, 255, 0.2);
335
+ }
336
+ section#settings div.container div.panel button {
337
+ background-color: rgba(255, 255, 255, 0.1);
338
+ }
339
+ section#settings div.container div.panel button:not(.checked) {
340
+ background-color: rgba(255, 255, 255, 0);
341
+ color: rgba(255, 255, 255, 0.4) !important;
342
+ }
343
+ section#settings div.container#groups-filter button.checked {
344
+ pointer-events: all;
345
+ }
346
+
347
+ @keyframes rotating {
348
+ 0% {
349
+ transform: scaleX(1);
350
+ }
351
+ 50% {
352
+ transform: scaleX(-1);
353
+ }
354
+ }
355
+ section#analytics div.content {
356
+ display: flex;
357
+ flex-direction: column;
358
+ align-items: center;
359
+ justify-content: center;
360
+ width: 300px;
361
+ margin: auto;
362
+ }
363
+ section#analytics div.content i {
364
+ font-size: 100px;
365
+ color: #ffd37b;
366
+ animation: rotating 2s infinite;
367
+ }
368
+ section#analytics div.content p {
369
+ color: rgba(255, 255, 255, 0.4);
222
370
  }
223
371
 
224
- .json-formatter-custom.json-formatter-row {
372
+ div.viewer {
373
+ background-color: #262626;
374
+ margin-bottom: 20px;
375
+ margin-top: 0;
376
+ padding: 10px;
377
+ overflow: hidden;
378
+ }
379
+ div.viewer.hidden {
380
+ display: none;
381
+ }
382
+ div.viewer:not(:last-child) {
383
+ margin-bottom: 20px;
384
+ }
385
+ div.viewer .json-formatter-custom.json-formatter-row {
225
386
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
226
387
  font-size: 14px;
227
388
  }
228
- .json-formatter-custom.json-formatter-row span {
389
+ div.viewer .json-formatter-custom.json-formatter-row span {
229
390
  position: relative;
230
391
  display: inline-block;
231
392
  }
232
- .json-formatter-custom.json-formatter-row:not(:last-child) {
393
+ div.viewer .json-formatter-custom.json-formatter-row:not(:last-child) {
233
394
  margin-bottom: 2px;
234
395
  }
235
- .json-formatter-custom.json-formatter-row > span {
396
+ div.viewer .json-formatter-custom.json-formatter-row > span {
236
397
  width: 100%;
237
398
  overflow-y: auto;
238
399
  border-radius: 5px;
239
400
  }
240
- .json-formatter-custom.json-formatter-row > span > span {
401
+ div.viewer .json-formatter-custom.json-formatter-row > span > span {
241
402
  padding: 5px 0;
242
403
  }
243
- .json-formatter-custom.json-formatter-row, .json-formatter-custom.json-formatter-row a, .json-formatter-custom.json-formatter-row a:hover {
404
+ div.viewer .json-formatter-custom.json-formatter-row, div.viewer .json-formatter-custom.json-formatter-row a, div.viewer .json-formatter-custom.json-formatter-row a:hover {
244
405
  color: rgba(255, 255, 255, 0.2);
245
406
  text-decoration: none;
246
407
  font-weight: 300;
247
408
  }
248
- .json-formatter-custom.json-formatter-row .json-formatter-row {
409
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-row {
249
410
  margin-left: 20px;
250
411
  }
251
- .json-formatter-custom.json-formatter-row .json-formatter-row > span {
412
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-row > span {
252
413
  display: flex;
253
414
  }
254
- .json-formatter-custom.json-formatter-row .json-formatter-children.json-formatter-empty {
415
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-children.json-formatter-empty {
255
416
  opacity: 0.5;
256
417
  margin-left: 1rem;
257
418
  }
258
- .json-formatter-custom.json-formatter-row .json-formatter-children.json-formatter-empty:after {
419
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-children.json-formatter-empty:after {
259
420
  display: none;
260
421
  }
261
- .json-formatter-custom.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-object:after {
422
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-object:after {
262
423
  content: "No properties";
263
424
  }
264
- .json-formatter-custom.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-array:after {
425
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-array:after {
265
426
  content: "[]";
266
427
  }
267
- .json-formatter-custom.json-formatter-row .json-formatter-string, .json-formatter-custom.json-formatter-row .json-formatter-stringifiable {
428
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-string, div.viewer .json-formatter-custom.json-formatter-row .json-formatter-stringifiable {
268
429
  display: inline-block;
269
430
  color: white;
270
431
  white-space: normal;
@@ -274,30 +435,30 @@ body > header div.buttons-container#container-select button {
274
435
  padding: 5px 10px;
275
436
  min-height: 20px;
276
437
  }
277
- .json-formatter-custom.json-formatter-row .json-formatter-number {
438
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-number {
278
439
  color: #7bff7b;
279
440
  }
280
- .json-formatter-custom.json-formatter-row .json-formatter-boolean {
441
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-boolean {
281
442
  color: #ff7b7b;
282
443
  }
283
- .json-formatter-custom.json-formatter-row .json-formatter-null {
444
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-null {
284
445
  color: #EEC97D;
285
446
  }
286
- .json-formatter-custom.json-formatter-row .json-formatter-undefined {
447
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-undefined {
287
448
  color: rgb(239, 143, 190);
288
449
  }
289
- .json-formatter-custom.json-formatter-row .json-formatter-function {
450
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-function {
290
451
  color: #FF20ED;
291
452
  }
292
- .json-formatter-custom.json-formatter-row .json-formatter-date {
453
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-date {
293
454
  background-color: fade(rgba(255, 255, 255, 0.2), 5%);
294
455
  }
295
- .json-formatter-custom.json-formatter-row .json-formatter-url {
456
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-url {
296
457
  text-decoration: underline;
297
458
  color: #027BFF;
298
459
  cursor: pointer;
299
460
  }
300
- .json-formatter-custom.json-formatter-row .json-formatter-key {
461
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-key {
301
462
  color: #7ba7ff;
302
463
  padding: 5px;
303
464
  padding-right: 10px;
@@ -307,113 +468,113 @@ body > header div.buttons-container#container-select button {
307
468
  margin-bottom: 0;
308
469
  min-height: 20px;
309
470
  }
310
- .json-formatter-custom.json-formatter-row .json-formatter-key.level-2 {
471
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-key.level-2 {
311
472
  color: #7ba7ff;
312
473
  }
313
- .json-formatter-custom.json-formatter-row .json-formatter-key.level-3 {
474
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-key.level-3 {
314
475
  color: #7b7bff;
315
476
  }
316
- .json-formatter-custom.json-formatter-row .json-formatter-key.level-4 {
477
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-key.level-4 {
317
478
  color: #a77bff;
318
479
  }
319
- .json-formatter-custom.json-formatter-row .json-formatter-key.level-5 {
480
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-key.level-5 {
320
481
  color: #d37bff;
321
482
  }
322
- .json-formatter-custom.json-formatter-row .json-formatter-key.level-6 {
483
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-key.level-6 {
323
484
  color: #ff7bff;
324
485
  }
325
- .json-formatter-custom.json-formatter-row .json-formatter-key.level-7 {
486
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-key.level-7 {
326
487
  color: #ff7bd3;
327
488
  }
328
- .json-formatter-custom.json-formatter-row .json-formatter-key.level-8 {
489
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-key.level-8 {
329
490
  color: #ff7ba7;
330
491
  }
331
- .json-formatter-custom.json-formatter-row .json-formatter-key.level-9 {
492
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-key.level-9 {
332
493
  color: #ff7b7b;
333
494
  }
334
- .json-formatter-custom.json-formatter-row .json-formatter-key.level-10 {
495
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-key.level-10 {
335
496
  color: #ffa77b;
336
497
  }
337
- .json-formatter-custom.json-formatter-row .json-formatter-key.level-11 {
498
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-key.level-11 {
338
499
  color: #ffd37b;
339
500
  }
340
- .json-formatter-custom.json-formatter-row .json-formatter-key.level-12 {
501
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-key.level-12 {
341
502
  color: #ffff7b;
342
503
  }
343
- .json-formatter-custom.json-formatter-row .json-formatter-key.level-13 {
504
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-key.level-13 {
344
505
  color: #d3ff7b;
345
506
  }
346
- .json-formatter-custom.json-formatter-row .json-formatter-key.level-14 {
507
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-key.level-14 {
347
508
  color: #a7ff7b;
348
509
  }
349
- .json-formatter-custom.json-formatter-row .json-formatter-key.level-15 {
510
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-key.level-15 {
350
511
  color: #7bff7b;
351
512
  }
352
- .json-formatter-custom.json-formatter-row .json-formatter-key.level-16 {
513
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-key.level-16 {
353
514
  color: #7bffa7;
354
515
  }
355
- .json-formatter-custom.json-formatter-row .json-formatter-key.level-17 {
516
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-key.level-17 {
356
517
  color: #7bffd3;
357
518
  }
358
- .json-formatter-custom.json-formatter-row .json-formatter-key.level-18 {
519
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-key.level-18 {
359
520
  color: #7bffff;
360
521
  }
361
- .json-formatter-custom.json-formatter-row .json-formatter-key.level-19 {
522
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-key.level-19 {
362
523
  color: #7bd3ff;
363
524
  }
364
- .json-formatter-custom.json-formatter-row .json-formatter-key.level-20 {
525
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-key.level-20 {
365
526
  color: #7ba7ff;
366
527
  }
367
- .json-formatter-custom.json-formatter-row .json-formatter-key.level-21 {
528
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-key.level-21 {
368
529
  color: #7b7bff;
369
530
  }
370
- .json-formatter-custom.json-formatter-row .json-formatter-key.level-22 {
531
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-key.level-22 {
371
532
  color: #a77bff;
372
533
  }
373
- .json-formatter-custom.json-formatter-row .json-formatter-key.level-23 {
534
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-key.level-23 {
374
535
  color: #d37bff;
375
536
  }
376
- .json-formatter-custom.json-formatter-row .json-formatter-key.level-24 {
537
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-key.level-24 {
377
538
  color: #ff7bff;
378
539
  }
379
- .json-formatter-custom.json-formatter-row .json-formatter-key.level-25 {
540
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-key.level-25 {
380
541
  color: #ff7bd3;
381
542
  }
382
- .json-formatter-custom.json-formatter-row .json-formatter-key.level-26 {
543
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-key.level-26 {
383
544
  color: #ff7ba7;
384
545
  }
385
- .json-formatter-custom.json-formatter-row .json-formatter-key.level-27 {
546
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-key.level-27 {
386
547
  color: #ff7b7b;
387
548
  }
388
- .json-formatter-custom.json-formatter-row .json-formatter-key.level-28 {
549
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-key.level-28 {
389
550
  color: #ffa77b;
390
551
  }
391
- .json-formatter-custom.json-formatter-row .json-formatter-key.level-29 {
552
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-key.level-29 {
392
553
  color: #ffd37b;
393
554
  }
394
- .json-formatter-custom.json-formatter-row .json-formatter-value {
555
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-value {
395
556
  padding-right: 10px;
396
557
  }
397
- .json-formatter-custom.json-formatter-row .json-formatter-value span {
558
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-value span {
398
559
  display: flex;
399
560
  }
400
- .json-formatter-custom.json-formatter-row .json-formatter-preview {
561
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-preview {
401
562
  padding-left: 10px;
402
563
  padding-top: 5px;
403
564
  padding-bottom: 5px;
404
565
  color: rgba(255, 255, 255, 0.3);
405
566
  }
406
- .json-formatter-custom.json-formatter-row .json-formatter-constructor-name,
407
- .json-formatter-custom.json-formatter-row .json-formatter-constructor-name + span > .json-formatter-number,
408
- .json-formatter-custom.json-formatter-row .json-formatter-bracket {
567
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-constructor-name,
568
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-constructor-name + span > .json-formatter-number,
569
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-bracket {
409
570
  color: rgba(255, 255, 255, 0.2);
410
571
  padding: 5px 0;
411
572
  }
412
- .json-formatter-custom.json-formatter-row .json-formatter-toggler-link {
573
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-toggler-link {
413
574
  cursor: pointer;
414
575
  display: flex;
415
576
  }
416
- .json-formatter-custom.json-formatter-row .json-formatter-toggler {
577
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-toggler {
417
578
  line-height: 1.2rem;
418
579
  font-size: 0.7rem;
419
580
  vertical-align: middle;
@@ -423,39 +584,39 @@ body > header div.buttons-container#container-select button {
423
584
  padding-right: 7px;
424
585
  padding-top: 5px;
425
586
  }
426
- .json-formatter-custom.json-formatter-row .json-formatter-toggler:after {
587
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-toggler:after {
427
588
  display: inline-block;
428
589
  transition: transform 100ms ease-in;
429
590
  content: "❯";
430
591
  }
431
- .json-formatter-custom.json-formatter-row > a > .json-formatter-preview-text {
592
+ div.viewer .json-formatter-custom.json-formatter-row > a > .json-formatter-preview-text {
432
593
  opacity: 0;
433
594
  transition: opacity 0.15s ease-in;
434
595
  font-style: italic;
435
596
  color: #7ba7ff;
436
597
  }
437
- .json-formatter-custom.json-formatter-row:hover > a > .json-formatter-preview-text {
598
+ div.viewer .json-formatter-custom.json-formatter-row:hover > a > .json-formatter-preview-text {
438
599
  opacity: 0.6;
439
600
  }
440
- .json-formatter-custom.json-formatter-row.json-formatter-open > a > .json-formatter-toggler {
601
+ div.viewer .json-formatter-custom.json-formatter-row.json-formatter-open > a > .json-formatter-toggler {
441
602
  opacity: 1;
442
603
  }
443
- .json-formatter-custom.json-formatter-row.json-formatter-open > .json-formatter-toggler-link .json-formatter-toggler:after {
604
+ div.viewer .json-formatter-custom.json-formatter-row.json-formatter-open > .json-formatter-toggler-link .json-formatter-toggler:after {
444
605
  transform: rotate(90deg);
445
606
  }
446
- .json-formatter-custom.json-formatter-row.json-formatter-open > .json-formatter-children:after {
607
+ div.viewer .json-formatter-custom.json-formatter-row.json-formatter-open > .json-formatter-children:after {
447
608
  display: inline-block;
448
609
  }
449
- .json-formatter-custom.json-formatter-row.json-formatter-open > a > .json-formatter-preview-text {
610
+ div.viewer .json-formatter-custom.json-formatter-row.json-formatter-open > a > .json-formatter-preview-text {
450
611
  display: none;
451
612
  }
452
- .json-formatter-custom.json-formatter-row.json-formatter-open.json-formatter-empty:after {
613
+ div.viewer .json-formatter-custom.json-formatter-row.json-formatter-open.json-formatter-empty:after {
453
614
  display: block;
454
615
  }
455
- .json-formatter-custom.json-formatter-row.json-formatter-open > a > .json-formatter-value .json-formatter-preview {
616
+ div.viewer .json-formatter-custom.json-formatter-row.json-formatter-open > a > .json-formatter-value .json-formatter-preview {
456
617
  display: none;
457
618
  }
458
- .json-formatter-custom.json-formatter-row button.json-formatter-copy {
619
+ div.viewer .json-formatter-custom.json-formatter-row button.json-formatter-copy {
459
620
  padding: 0;
460
621
  border: none;
461
622
  background-color: transparent;
@@ -467,39 +628,115 @@ body > header div.buttons-container#container-select button {
467
628
  opacity: 0;
468
629
  max-height: 28px;
469
630
  }
470
- .json-formatter-custom.json-formatter-row .json-formatter-toggler-link:hover button.json-formatter-copy {
631
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-toggler-link:hover button.json-formatter-copy {
471
632
  opacity: 0.2;
472
633
  }
473
- .json-formatter-custom.json-formatter-row .json-formatter-toggler-link button.json-formatter-copy:hover {
634
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-toggler-link button.json-formatter-copy:hover {
474
635
  opacity: 1;
475
636
  }
476
- .json-formatter-custom.json-formatter-row .json-formatter-row span:hover button.json-formatter-copy {
637
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-row span:hover button.json-formatter-copy {
477
638
  opacity: 0.2;
478
639
  }
479
- .json-formatter-custom.json-formatter-row .json-formatter-row span button.json-formatter-copy:hover {
640
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-row span button.json-formatter-copy:hover {
480
641
  opacity: 1;
481
642
  }
482
- .json-formatter-custom.json-formatter-row .json-formatter-string {
643
+ div.viewer .json-formatter-custom.json-formatter-row .json-formatter-string {
483
644
  max-height: 60px;
484
645
  }
485
646
 
486
- section#settings div.container p {
487
- color: rgba(255, 255, 255, 0.4);
488
- margin-left: 10px;
489
- margin-top: 0;
490
- }
491
- section#settings div.container p i {
492
- margin-right: 10px;
493
- }
494
- section#settings div.container p span {
495
- color: rgba(255, 255, 255, 0.2);
496
- }
497
- section#settings div.container div.panel button.checked {
647
+ div.search {
648
+ display: flex;
649
+ justify-content: space-around;
650
+ align-items: center;
651
+ border-radius: 10px;
652
+ width: 410px;
653
+ padding: 2px 10px;
654
+ margin: auto;
655
+ margin-bottom: 50px;
656
+ background-color: rgba(255, 255, 255, 0.05);
657
+ opacity: 0.4;
658
+ transition-duration: 0.1s;
659
+ }
660
+ div.search > i {
661
+ width: 20px;
662
+ margin: 0 15px;
663
+ }
664
+ div.search:hover {
665
+ opacity: 1;
666
+ }
667
+ div.search button {
668
+ display: inline-block !important;
669
+ background-color: transparent;
670
+ font-size: 20px;
671
+ padding: 10px 15px;
672
+ margin: 0;
673
+ color: rgba(255, 255, 255, 0.2);
674
+ }
675
+ div.search button i {
676
+ margin: 0;
677
+ }
678
+ div.search button:hover {
679
+ color: #fff;
680
+ }
681
+ div.search div.input {
682
+ background-color: transparent;
683
+ width: 380px;
684
+ }
685
+ div.search div.input:before {
686
+ text-align: center;
687
+ }
688
+
689
+ @keyframes popup {
690
+ 0% {
691
+ opacity: 0;
692
+ transform: translateY(20px);
693
+ }
694
+ 5% {
695
+ opacity: 1;
696
+ transform: none;
697
+ }
698
+ 95% {
699
+ opacity: 1;
700
+ transform: none;
701
+ }
702
+ 100% {
703
+ transform: translateY(-10px);
704
+ opacity: 0;
705
+ }
706
+ }
707
+ div.popups {
708
+ position: fixed;
709
+ bottom: 20px;
710
+ right: 20px;
711
+ z-index: 100;
712
+ }
713
+ div.popups div.popup-message {
714
+ display: flex;
498
715
  background-color: #ffd37b;
499
716
  color: #1e1e1e;
717
+ padding: 10px 15px;
718
+ width: 240px;
719
+ border-radius: 10px;
720
+ font-size: 14px;
721
+ text-align: center;
722
+ align-items: center;
723
+ margin-top: 5px;
724
+ box-shadow: 0 5px 10px 10px rgba(0, 0, 0, 0.1);
725
+ animation: popup 3s ease-in-out forwards;
500
726
  }
501
- section#settings div.container#groups-filter button.checked {
502
- pointer-events: all;
727
+ div.popups div.popup-message.error {
728
+ background-color: #ff7b7b;
729
+ }
730
+ div.popups div.popup-message.warning {
731
+ background-color: #e7ff7b;
732
+ }
733
+ div.popups div.popup-message span {
734
+ flex-basis: 90%;
735
+ }
736
+ div.popups div.popup-message i {
737
+ font-size: 25px;
738
+ margin-right: 10px;
739
+ margin-left: 5px;
503
740
  }
504
741
 
505
742
  @keyframes l43 {
@@ -553,247 +790,102 @@ div.curtain#loader > div {
553
790
  align-items: center;
554
791
  }
555
792
 
556
- @keyframes popup {
557
- 0% {
558
- opacity: 0;
559
- transform: translateY(20px);
560
- }
561
- 20% {
562
- opacity: 1;
563
- transform: none;
564
- }
565
- 80% {
566
- opacity: 1;
567
- transform: none;
568
- }
569
- 100% {
570
- transform: translateY(-10px);
571
- opacity: 0;
572
- }
573
- }
574
- div.popups {
575
- position: fixed;
576
- bottom: 20px;
577
- right: 20px;
578
- }
579
- div.popups div.popup-message {
580
- display: flex;
581
- background-color: #ffd37b;
582
- color: #1e1e1e;
583
- padding: 10px 30px;
584
- width: 200px;
585
- border-radius: 10px;
586
- text-align: center;
587
- align-items: center;
588
- margin-top: 5px;
589
- box-shadow: 0 5px 10px 10px rgba(0, 0, 0, 0.1);
590
- animation: popup 1s ease-in-out forwards;
591
- }
592
- div.popups div.popup-message i {
593
- font-size: 20px;
594
- }
595
- div.popups div.popup-message span {
596
- flex-basis: 90%;
597
- }
598
-
599
- div.search {
600
- display: flex;
601
- justify-content: space-around;
602
- align-items: center;
603
- border-radius: 10px;
604
- width: 410px;
605
- padding: 2px 10px;
606
- margin: auto;
607
- margin-bottom: 50px;
608
- background-color: rgba(255, 255, 255, 0.05);
609
- opacity: 0.4;
610
- transition-duration: 0.1s;
611
- }
612
- div.search > i {
613
- width: 20px;
614
- margin: 0 15px;
615
- }
616
- div.search:hover {
617
- opacity: 1;
618
- }
619
- div.search button {
620
- display: inline-block !important;
621
- background-color: transparent;
622
- font-size: 20px;
623
- padding: 10px 15px;
624
- margin: 0;
625
- color: rgba(255, 255, 255, 0.2);
626
- }
627
- div.search button i {
628
- margin: 0;
629
- }
630
- div.search button:hover {
631
- color: #fff;
632
- }
633
- div.search div.input {
634
- background-color: transparent;
635
- width: 380px;
636
- }
637
- div.search div.input:before {
638
- text-align: center;
639
- }
640
-
641
- div.container {
793
+ div.history {
642
794
  padding: 0 20px;
643
795
  margin-top: 0;
644
796
  }
645
- div.container div.meta {
797
+
798
+ header {
646
799
  display: flex;
647
- flex-wrap: wrap;
648
- border-radius: inherit;
649
- }
650
- div.container div.meta div.segment {
651
- display: inherit;
652
- flex-wrap: inherit;
800
+ justify-content: center;
801
+ align-items: center;
802
+ position: relative;
653
803
  }
654
- div.container div.meta span, div.container div.meta button {
655
- padding: 7px 15px;
656
- display: inline-block;
657
- background-color: rgba(255, 255, 255, 0.05);
658
- border-radius: 5px;
659
- margin-right: 5px;
660
- margin-bottom: 5px;
804
+ header button {
805
+ text-decoration: none;
661
806
  font-size: 14px;
807
+ color: rgba(255, 255, 255, 0.5);
808
+ vertical-align: top;
662
809
  }
663
- div.container div.meta button {
664
- min-width: 50px;
665
- margin-top: 0;
666
- margin-left: 0;
810
+ header button i {
811
+ margin-right: 10px;
667
812
  }
668
- div.container div.meta button i {
669
- float: none;
813
+ header button.icon-only i {
670
814
  margin-right: 0;
815
+ font-size: 16px;
671
816
  }
672
- div.container div.meta span.name b {
673
- font-weight: normal;
674
- color: #ffd37b;
675
- position: relative;
676
- display: inline-block;
677
- }
678
- div.container div.meta span.name b:after {
679
- content: "";
680
- display: inline-block;
681
- position: relative;
682
- height: 14px;
683
- width: 1px;
684
- background-color: rgba(255, 255, 255, 0.1);
685
- top: 2px;
686
- margin-left: 10px;
687
- margin-right: 5px;
688
- }
689
- div.container div.meta span.arrow {
690
- background: transparent;
691
- color: rgba(255, 255, 255, 0.3);
692
- padding: 8px 10px;
693
- padding-left: 12px;
694
- margin-right: 5px;
695
- }
696
- div.container div.meta button.activity i.fa-plug {
697
- color: #a7ff7b;
698
- }
699
- div.container div.meta button.activity i.fa-power-off {
700
- color: #ff7b7b;
701
- }
702
- div.container div.meta span.status {
703
- min-width: 35px;
704
- text-align: center;
705
- }
706
- div.container div.meta span.status.red {
707
- color: #ff7b7b;
708
- }
709
- div.container div.meta span.status.green {
710
- color: #a7ff7b;
711
- }
712
- div.container div.meta span.transport {
713
- color: rgba(255, 255, 255, 0.4);
714
- }
715
- div.container div.meta span.method {
817
+ header button.checked {
716
818
  background-color: #ffd37b;
717
819
  color: #1e1e1e;
718
820
  }
719
- div.container div.meta span.path {
720
- background-color: #ffa77b;
721
- color: #1e1e1e;
722
- }
723
- div.container div.meta span.time {
724
- width: 60px;
725
- text-align: center;
726
- }
727
- div.container div.meta span.calls-count, div.container div.meta span.name, div.container div.meta span.time {
821
+ header button:not(.checked) {
728
822
  color: rgba(255, 255, 255, 0.5);
823
+ background-color: rgba(255, 255, 255, 0.05);
729
824
  }
730
- div.container div.meta span.calls-count.active, div.container div.meta span.name.active, div.container div.meta span.time.active {
731
- color: #fff;
732
- }
733
- div.container div.meta span.calls-count i, div.container div.meta span.name i, div.container div.meta span.time i {
734
- opacity: 0.2;
735
- margin-right: 10px;
825
+ header hr {
826
+ position: relative;
827
+ width: 1px;
828
+ height: 25px;
829
+ border: none;
830
+ background-color: rgba(255, 255, 255, 0.1);
831
+ margin: 10px 10px;
736
832
  }
737
- div.container div.meta span.pending {
738
- min-width: 35px;
739
- text-align: center;
833
+ header div#tabs {
834
+ display: flex;
835
+ justify-content: center;
836
+ align-items: center;
740
837
  }
741
- div.container div.meta span.pending i:before {
742
- animation: pending 1s infinite;
838
+ header div#tabs button {
839
+ padding: 10px 20px;
743
840
  }
744
- div.container div.meta span.separator, div.container div.meta span.label {
745
- padding: 0 5px;
746
- color: rgba(0, 0, 0, 0.3);
747
- font-size: 12px;
748
- margin-right: 0;
749
- margin-bottom: 0;
841
+
842
+ div.expectation {
843
+ padding: 0 20px;
844
+ margin-top: 0;
750
845
  }
751
- div.container div.meta span.label {
752
- padding-left: 0;
846
+
847
+ @keyframes pending {
848
+ 0% {
849
+ content: "\f251";
850
+ }
851
+ 33% {
852
+ content: "\f252";
853
+ }
854
+ 66% {
855
+ content: "\f253";
856
+ }
753
857
  }
754
- div.container div.meta span.handled-with {
755
- background-color: transparent;
756
- color: rgba(255, 255, 255, 0.3);
757
- margin-right: 0;
758
- padding: 7px 5px;
858
+ div.empty {
859
+ display: flex;
860
+ justify-content: center;
861
+ align-items: center;
862
+ margin-top: 50px;
759
863
  }
760
- div.container div.meta span.handled-with span.handler-name {
761
- margin: 0;
762
- padding: 0;
763
- background-color: transparent;
864
+ div.empty i {
764
865
  color: #ffd37b;
866
+ font-size: 50px;
867
+ margin-right: 30px;
765
868
  }
766
- div.container div.meta span.handled-with span.handler-name.red {
767
- color: #ff7b7b;
768
- }
769
- div.container div.meta span.forward {
770
- background-color: #7b7bff;
771
- }
772
- div.container div.meta span.error {
773
- background-color: #ff4848;
774
- }
775
- div.container div.meta span.seed {
776
- background-color: #a7ff7b;
777
- color: #1e1e1e;
869
+ div.empty i:before {
870
+ animation: pending 1s infinite;
778
871
  }
779
- div.container div.meta span.cache {
780
- background-color: #e1e1ff;
781
- color: #1e1e1e;
872
+ div.empty p {
873
+ color: rgba(255, 255, 255, 0.3);
874
+ font-size: 25px;
875
+ font-weight: 300;
782
876
  }
783
- div.container.history:hover div.meta, div.container.expectation:hover div.meta {
877
+
878
+ div.curtain {
784
879
  cursor: pointer;
880
+ position: fixed;
881
+ overflow-y: auto;
882
+ top: 0;
883
+ left: 0;
884
+ height: calc(100% - 50px);
885
+ width: 100%;
886
+ padding-top: 50px;
887
+ background-color: rgba(30, 30, 30, 0.95);
785
888
  }
786
- div.container.history:hover div.meta span.time, div.container.history:hover div.meta span.transport, div.container.history:hover div.meta span.status, div.container.history:hover div.meta span.name, div.container.expectation:hover div.meta span.time, div.container.expectation:hover div.meta span.transport, div.container.expectation:hover div.meta span.status, div.container.expectation:hover div.meta span.name {
787
- background-color: rgba(255, 255, 255, 0.15);
788
- }
789
- div.container pre {
790
- margin: 0;
791
- margin-bottom: 20px;
792
- overflow: hidden;
793
- }
794
- div.container pre.hidden {
795
- display: none;
796
- }
797
- div.container pre:not(:last-child) {
798
- margin-bottom: 20px;
889
+ div.curtain > * {
890
+ cursor: auto;
799
891
  }