lynx-console 0.2.0 → 0.2.2
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.
- package/dist/index.cjs +615 -112
- package/dist/index.css +0 -388
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +616 -113
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/components/BottomSheet.css +0 -7
- package/src/components/BottomSheet.tsx +24 -3
- package/src/components/ConsolePanel.css +0 -141
- package/src/components/FloatingButton.css +0 -8
- package/src/components/FloatingButton.tsx +15 -2
- package/src/components/LogPanel.tsx +214 -26
- package/src/components/NetworkDetailSection.tsx +71 -9
- package/src/components/NetworkPanel.css +0 -91
- package/src/components/NetworkPanel.tsx +168 -20
- package/src/components/PerformancePanel.css +0 -60
- package/src/components/PerformancePanel.tsx +159 -29
- package/src/components/Tabs.css +0 -9
- package/src/components/Tabs.tsx +21 -3
- package/src/index.tsx +29 -22
- package/src/styles/ThemeContext.ts +10 -0
- package/src/styles/theme.ts +111 -0
- package/src/styles/global.css +0 -8
- package/src/styles/vars/color.ts +0 -41
- package/src/styles/vars/dimension.ts +0 -10
- package/src/styles/vars/index.css +0 -71
- package/src/styles/vars/index.ts +0 -18
- package/src/styles/vars/radius.ts +0 -2
package/dist/index.css
CHANGED
|
@@ -1,75 +1,3 @@
|
|
|
1
|
-
:root {
|
|
2
|
-
--lynx-console-font-weight-regular: 400;
|
|
3
|
-
--lynx-console-font-weight-medium: 500;
|
|
4
|
-
--lynx-console-font-weight-bold: 700;
|
|
5
|
-
--lynx-console-duration-d4: 200ms;
|
|
6
|
-
--lynx-console-duration-d6: 300ms;
|
|
7
|
-
--lynx-console-dimension-x2: 8px;
|
|
8
|
-
--lynx-console-dimension-x3: 12px;
|
|
9
|
-
--lynx-console-dimension-x4: 16px;
|
|
10
|
-
--lynx-console-dimension-x6: 24px;
|
|
11
|
-
--lynx-console-dimension-spacing-x-global-gutter: 16px;
|
|
12
|
-
--lynx-console-radius-r6: 24px;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.data-lynx-console-color-mode__light-only {
|
|
16
|
-
--lynx-console-color-palette-blue-100: #eff6ff;
|
|
17
|
-
--lynx-console-color-palette-blue-600: #5e98fe;
|
|
18
|
-
--lynx-console-color-palette-gray-100: #f7f8f9;
|
|
19
|
-
--lynx-console-color-palette-gray-400: #dcdee3;
|
|
20
|
-
--lynx-console-color-palette-green-100: #edfaf6;
|
|
21
|
-
--lynx-console-color-palette-green-600: #10ab7d;
|
|
22
|
-
--lynx-console-color-palette-purple-100: #f5f3fe;
|
|
23
|
-
--lynx-console-color-palette-purple-600: #9f84fb;
|
|
24
|
-
--lynx-console-color-palette-red-100: #fdf0f0;
|
|
25
|
-
--lynx-console-color-palette-red-600: #fc6a66;
|
|
26
|
-
--lynx-console-color-palette-red-900: #921708;
|
|
27
|
-
--lynx-console-color-palette-static-white: #ffffff;
|
|
28
|
-
--lynx-console-color-palette-yellow-100: #fff7de;
|
|
29
|
-
--lynx-console-color-palette-yellow-600: #c49725;
|
|
30
|
-
--lynx-console-color-palette-yellow-900: #4f3e1f;
|
|
31
|
-
--lynx-console-color-fg-neutral: #1a1c20;
|
|
32
|
-
--lynx-console-color-fg-placeholder: #b0b3ba;
|
|
33
|
-
--lynx-console-color-fg-disabled: #d1d3d8;
|
|
34
|
-
--lynx-console-color-fg-neutral-muted: #555d6d;
|
|
35
|
-
--lynx-console-color-fg-neutral-subtle: #868b94;
|
|
36
|
-
--lynx-console-color-bg-overlay: #00000074;
|
|
37
|
-
--lynx-console-color-bg-layer-default: #ffffff;
|
|
38
|
-
--lynx-console-color-bg-layer-floating: #ffffff;
|
|
39
|
-
--lynx-console-color-bg-neutral-weak: #f3f4f5;
|
|
40
|
-
--lynx-console-color-stroke-neutral-subtle: #0000000c;
|
|
41
|
-
--lynx-console-color-stroke-neutral-weak: #dcdee3;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
.data-lynx-console-color-mode__dark-only {
|
|
45
|
-
--lynx-console-color-palette-blue-100: #202742;
|
|
46
|
-
--lynx-console-color-palette-blue-600: #1e82eb;
|
|
47
|
-
--lynx-console-color-palette-gray-100: #16171b;
|
|
48
|
-
--lynx-console-color-palette-gray-400: #393d46;
|
|
49
|
-
--lynx-console-color-palette-green-100: #202926;
|
|
50
|
-
--lynx-console-color-palette-green-600: #1b946d;
|
|
51
|
-
--lynx-console-color-palette-purple-100: #28213b;
|
|
52
|
-
--lynx-console-color-palette-purple-600: #8e6bee;
|
|
53
|
-
--lynx-console-color-palette-red-100: #322323;
|
|
54
|
-
--lynx-console-color-palette-red-600: #f73526;
|
|
55
|
-
--lynx-console-color-palette-red-900: #f8c5c3;
|
|
56
|
-
--lynx-console-color-palette-static-white: #ffffff;
|
|
57
|
-
--lynx-console-color-palette-yellow-100: #302819;
|
|
58
|
-
--lynx-console-color-palette-yellow-600: #b6720d;
|
|
59
|
-
--lynx-console-color-palette-yellow-900: #e5d49b;
|
|
60
|
-
--lynx-console-color-fg-neutral: #f3f4f5;
|
|
61
|
-
--lynx-console-color-fg-placeholder: #868b94;
|
|
62
|
-
--lynx-console-color-fg-disabled: #5b606a;
|
|
63
|
-
--lynx-console-color-fg-neutral-muted: #dcdee3;
|
|
64
|
-
--lynx-console-color-fg-neutral-subtle: #b0b3ba;
|
|
65
|
-
--lynx-console-color-bg-overlay: #00000074;
|
|
66
|
-
--lynx-console-color-bg-layer-default: #16171b;
|
|
67
|
-
--lynx-console-color-bg-layer-floating: #1d2025;
|
|
68
|
-
--lynx-console-color-bg-neutral-weak: #2b2e35;
|
|
69
|
-
--lynx-console-color-stroke-neutral-subtle: #ffffff0d;
|
|
70
|
-
--lynx-console-color-stroke-neutral-weak: #393d46;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
1
|
.bs-overlay {
|
|
74
2
|
position: fixed;
|
|
75
3
|
top: 0;
|
|
@@ -89,8 +17,6 @@
|
|
|
89
17
|
bottom: 0;
|
|
90
18
|
left: 0;
|
|
91
19
|
z-index: 9998;
|
|
92
|
-
background: var(--lynx-console-color-bg-overlay);
|
|
93
|
-
transition: opacity var(--lynx-console-duration-d6) cubic-bezier(0.4, 0, 0.2, 1);
|
|
94
20
|
}
|
|
95
21
|
|
|
96
22
|
.bs-content {
|
|
@@ -100,10 +26,8 @@
|
|
|
100
26
|
flex-direction: column;
|
|
101
27
|
box-sizing: border-box;
|
|
102
28
|
word-break: break-all;
|
|
103
|
-
background: var(--lynx-console-color-bg-layer-floating);
|
|
104
29
|
border-top-left-radius: 24px;
|
|
105
30
|
border-top-right-radius: 24px;
|
|
106
|
-
transition: transform var(--lynx-console-duration-d6) cubic-bezier(0.4, 0, 0.2, 1);
|
|
107
31
|
height: 500px;
|
|
108
32
|
overflow: hidden;
|
|
109
33
|
}
|
|
@@ -122,7 +46,6 @@
|
|
|
122
46
|
.bs-handle {
|
|
123
47
|
width: 36px;
|
|
124
48
|
height: 4px;
|
|
125
|
-
background-color: var(--lynx-console-color-palette-gray-400);
|
|
126
49
|
border-radius: 9999px;
|
|
127
50
|
margin-top: 12px;
|
|
128
51
|
}
|
|
@@ -141,8 +64,6 @@
|
|
|
141
64
|
.bs-title {
|
|
142
65
|
font-size: 1.25rem;
|
|
143
66
|
line-height: 1.6875rem;
|
|
144
|
-
font-weight: var(--lynx-console-font-weight-bold);
|
|
145
|
-
color: var(--lynx-console-color-fg-neutral);
|
|
146
67
|
}
|
|
147
68
|
|
|
148
69
|
.bs-body {
|
|
@@ -178,8 +99,6 @@
|
|
|
178
99
|
.cp-placeholderText {
|
|
179
100
|
font-size: 0.875rem;
|
|
180
101
|
line-height: 1.1875rem;
|
|
181
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
182
|
-
color: var(--lynx-console-color-fg-disabled);
|
|
183
102
|
}
|
|
184
103
|
|
|
185
104
|
.cp-logContainer {
|
|
@@ -206,15 +125,12 @@
|
|
|
206
125
|
flex-direction: row;
|
|
207
126
|
align-items: center;
|
|
208
127
|
padding: 3px 6px;
|
|
209
|
-
background-color: var(--lynx-console-color-bg-neutral-weak);
|
|
210
128
|
border-radius: 4px;
|
|
211
129
|
}
|
|
212
130
|
|
|
213
131
|
.cp-filterButtonText {
|
|
214
132
|
font-size: 0.8125rem;
|
|
215
133
|
line-height: 1.125rem;
|
|
216
|
-
font-weight: var(--lynx-console-font-weight-medium);
|
|
217
|
-
color: var(--lynx-console-color-fg-neutral-muted);
|
|
218
134
|
}
|
|
219
135
|
|
|
220
136
|
.cp-filterDropdown {
|
|
@@ -222,9 +138,7 @@
|
|
|
222
138
|
top: 100%;
|
|
223
139
|
left: 0;
|
|
224
140
|
margin-top: 4px;
|
|
225
|
-
background-color: var(--lynx-console-color-bg-layer-floating);
|
|
226
141
|
border-width: 1px;
|
|
227
|
-
border-color: var(--lynx-console-color-stroke-neutral-subtle);
|
|
228
142
|
border-style: solid;
|
|
229
143
|
border-radius: 8px;
|
|
230
144
|
padding: 4px 0;
|
|
@@ -243,46 +157,12 @@
|
|
|
243
157
|
.cp-filterCheckbox {
|
|
244
158
|
font-size: 0.8125rem;
|
|
245
159
|
line-height: 1.125rem;
|
|
246
|
-
font-weight: var(--lynx-console-font-weight-medium);
|
|
247
160
|
width: 16px;
|
|
248
161
|
}
|
|
249
162
|
|
|
250
|
-
.cp-filterCheckbox--log {
|
|
251
|
-
color: var(--lynx-console-color-palette-green-600);
|
|
252
|
-
}
|
|
253
|
-
|
|
254
|
-
.cp-filterCheckbox--info {
|
|
255
|
-
color: var(--lynx-console-color-palette-blue-600);
|
|
256
|
-
}
|
|
257
|
-
|
|
258
|
-
.cp-filterCheckbox--warn {
|
|
259
|
-
color: var(--lynx-console-color-palette-yellow-600);
|
|
260
|
-
}
|
|
261
|
-
|
|
262
|
-
.cp-filterCheckbox--error {
|
|
263
|
-
color: var(--lynx-console-color-palette-red-600);
|
|
264
|
-
}
|
|
265
|
-
|
|
266
163
|
.cp-filterLabel {
|
|
267
164
|
font-size: 0.8125rem;
|
|
268
165
|
line-height: 1.125rem;
|
|
269
|
-
font-weight: var(--lynx-console-font-weight-medium);
|
|
270
|
-
}
|
|
271
|
-
|
|
272
|
-
.cp-filterLabel--log {
|
|
273
|
-
color: var(--lynx-console-color-palette-green-600);
|
|
274
|
-
}
|
|
275
|
-
|
|
276
|
-
.cp-filterLabel--info {
|
|
277
|
-
color: var(--lynx-console-color-palette-blue-600);
|
|
278
|
-
}
|
|
279
|
-
|
|
280
|
-
.cp-filterLabel--warn {
|
|
281
|
-
color: var(--lynx-console-color-palette-yellow-600);
|
|
282
|
-
}
|
|
283
|
-
|
|
284
|
-
.cp-filterLabel--error {
|
|
285
|
-
color: var(--lynx-console-color-palette-red-600);
|
|
286
166
|
}
|
|
287
167
|
|
|
288
168
|
.cp-searchWrapper {
|
|
@@ -293,7 +173,6 @@
|
|
|
293
173
|
margin-left: 8px;
|
|
294
174
|
margin-right: 8px;
|
|
295
175
|
border-bottom-width: 1px;
|
|
296
|
-
border-bottom-color: var(--lynx-console-color-stroke-neutral-subtle);
|
|
297
176
|
border-bottom-style: solid;
|
|
298
177
|
gap: 8px;
|
|
299
178
|
}
|
|
@@ -301,17 +180,12 @@
|
|
|
301
180
|
.cp-searchPrompt {
|
|
302
181
|
font-size: 1.125rem;
|
|
303
182
|
line-height: 1.5rem;
|
|
304
|
-
font-weight: var(--lynx-console-font-weight-medium);
|
|
305
|
-
color: var(--lynx-console-color-fg-placeholder);
|
|
306
183
|
}
|
|
307
184
|
|
|
308
185
|
.cp-searchInput {
|
|
309
186
|
flex: 1;
|
|
310
187
|
font-size: 0.8125rem;
|
|
311
188
|
line-height: 1.125rem;
|
|
312
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
313
|
-
color: var(--lynx-console-color-fg-neutral);
|
|
314
|
-
caret-color: var(--lynx-console-color-palette-green-600);
|
|
315
189
|
}
|
|
316
190
|
|
|
317
191
|
.cp-searchClear {
|
|
@@ -321,21 +195,16 @@
|
|
|
321
195
|
.cp-searchClearText {
|
|
322
196
|
font-size: 0.8125rem;
|
|
323
197
|
line-height: 1.125rem;
|
|
324
|
-
font-weight: var(--lynx-console-font-weight-medium);
|
|
325
|
-
color: var(--lynx-console-color-fg-placeholder);
|
|
326
198
|
}
|
|
327
199
|
|
|
328
200
|
.cp-clearButton {
|
|
329
201
|
padding: 3px 6px;
|
|
330
|
-
background-color: var(--lynx-console-color-bg-neutral-weak);
|
|
331
202
|
border-radius: 4px;
|
|
332
203
|
}
|
|
333
204
|
|
|
334
205
|
.cp-clearButtonText {
|
|
335
206
|
font-size: 0.8125rem;
|
|
336
207
|
line-height: 1.125rem;
|
|
337
|
-
font-weight: var(--lynx-console-font-weight-medium);
|
|
338
|
-
color: var(--lynx-console-color-fg-neutral-muted);
|
|
339
208
|
}
|
|
340
209
|
|
|
341
210
|
.cp-logList {
|
|
@@ -347,18 +216,9 @@
|
|
|
347
216
|
.cp-logItem {
|
|
348
217
|
padding: 8px;
|
|
349
218
|
border-bottom-width: 1px;
|
|
350
|
-
border-bottom-color: var(--lynx-console-color-stroke-neutral-weak);
|
|
351
219
|
border-bottom-style: solid;
|
|
352
220
|
}
|
|
353
221
|
|
|
354
|
-
.cp-logItem--warn {
|
|
355
|
-
background-color: var(--lynx-console-color-palette-yellow-100);
|
|
356
|
-
}
|
|
357
|
-
|
|
358
|
-
.cp-logItem--error {
|
|
359
|
-
background-color: var(--lynx-console-color-palette-red-100);
|
|
360
|
-
}
|
|
361
|
-
|
|
362
222
|
.cp-logItemHeader {
|
|
363
223
|
display: flex;
|
|
364
224
|
flex-direction: row;
|
|
@@ -369,38 +229,17 @@
|
|
|
369
229
|
.cp-logLevel {
|
|
370
230
|
font-size: 0.75rem;
|
|
371
231
|
line-height: 1rem;
|
|
372
|
-
font-weight: var(--lynx-console-font-weight-bold);
|
|
373
232
|
margin-right: 8px;
|
|
374
233
|
}
|
|
375
234
|
|
|
376
|
-
.cp-logLevel--log {
|
|
377
|
-
color: var(--lynx-console-color-palette-green-600);
|
|
378
|
-
}
|
|
379
|
-
|
|
380
|
-
.cp-logLevel--info {
|
|
381
|
-
color: var(--lynx-console-color-palette-blue-600);
|
|
382
|
-
}
|
|
383
|
-
|
|
384
|
-
.cp-logLevel--warn {
|
|
385
|
-
color: var(--lynx-console-color-palette-yellow-600);
|
|
386
|
-
}
|
|
387
|
-
|
|
388
|
-
.cp-logLevel--error {
|
|
389
|
-
color: var(--lynx-console-color-palette-red-600);
|
|
390
|
-
}
|
|
391
|
-
|
|
392
235
|
.cp-logTime {
|
|
393
236
|
font-size: 0.75rem;
|
|
394
237
|
line-height: 1rem;
|
|
395
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
396
|
-
color: var(--lynx-console-color-fg-neutral-subtle);
|
|
397
238
|
}
|
|
398
239
|
|
|
399
240
|
.cp-toggleIndicator {
|
|
400
241
|
font-size: 0.75rem;
|
|
401
242
|
line-height: 1rem;
|
|
402
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
403
|
-
color: var(--lynx-console-color-fg-neutral-subtle);
|
|
404
243
|
margin-left: 4px;
|
|
405
244
|
align-self: flex-start;
|
|
406
245
|
}
|
|
@@ -408,8 +247,6 @@
|
|
|
408
247
|
.cp-logMessage {
|
|
409
248
|
font-size: 0.8125rem;
|
|
410
249
|
line-height: 1.125rem;
|
|
411
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
412
|
-
color: var(--lynx-console-color-fg-neutral);
|
|
413
250
|
word-break: break-all;
|
|
414
251
|
}
|
|
415
252
|
|
|
@@ -423,59 +260,16 @@
|
|
|
423
260
|
.cp-logArgItem {
|
|
424
261
|
font-size: 0.8125rem;
|
|
425
262
|
line-height: 1.125rem;
|
|
426
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
427
|
-
}
|
|
428
|
-
|
|
429
|
-
.cp-argNull {
|
|
430
|
-
color: var(--lynx-console-color-fg-neutral-subtle);
|
|
431
|
-
}
|
|
432
|
-
|
|
433
|
-
.cp-argUndefined {
|
|
434
|
-
color: var(--lynx-console-color-fg-neutral-subtle);
|
|
435
263
|
}
|
|
436
264
|
|
|
437
265
|
.cp-argString {
|
|
438
266
|
font-size: 0.8125rem;
|
|
439
267
|
line-height: 1.125rem;
|
|
440
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
441
|
-
}
|
|
442
|
-
|
|
443
|
-
.cp-argString--log {
|
|
444
|
-
color: var(--lynx-console-color-fg-neutral);
|
|
445
|
-
}
|
|
446
|
-
|
|
447
|
-
.cp-argString--info {
|
|
448
|
-
color: var(--lynx-console-color-fg-neutral);
|
|
449
|
-
}
|
|
450
|
-
|
|
451
|
-
.cp-argString--warn {
|
|
452
|
-
color: var(--lynx-console-color-palette-yellow-900);
|
|
453
|
-
}
|
|
454
|
-
|
|
455
|
-
.cp-argString--error {
|
|
456
|
-
color: var(--lynx-console-color-palette-red-900);
|
|
457
268
|
}
|
|
458
269
|
|
|
459
270
|
.cp-argPrimitive {
|
|
460
271
|
font-size: 0.8125rem;
|
|
461
272
|
line-height: 1.125rem;
|
|
462
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
463
|
-
}
|
|
464
|
-
|
|
465
|
-
.cp-argPrimitive--log {
|
|
466
|
-
color: var(--lynx-console-color-palette-blue-600);
|
|
467
|
-
}
|
|
468
|
-
|
|
469
|
-
.cp-argPrimitive--info {
|
|
470
|
-
color: var(--lynx-console-color-palette-blue-600);
|
|
471
|
-
}
|
|
472
|
-
|
|
473
|
-
.cp-argPrimitive--warn {
|
|
474
|
-
color: var(--lynx-console-color-palette-yellow-900);
|
|
475
|
-
}
|
|
476
|
-
|
|
477
|
-
.cp-argPrimitive--error {
|
|
478
|
-
color: var(--lynx-console-color-palette-red-900);
|
|
479
273
|
}
|
|
480
274
|
|
|
481
275
|
.cp-argObject {
|
|
@@ -493,8 +287,6 @@
|
|
|
493
287
|
.cp-argObjectPreview {
|
|
494
288
|
font-size: 0.8125rem;
|
|
495
289
|
line-height: 1.125rem;
|
|
496
|
-
font-weight: var(--lynx-console-font-weight-medium);
|
|
497
|
-
color: var(--lynx-console-color-fg-neutral);
|
|
498
290
|
}
|
|
499
291
|
|
|
500
292
|
.cp-argObjectContent {
|
|
@@ -513,15 +305,11 @@
|
|
|
513
305
|
.cp-argObjectKey {
|
|
514
306
|
font-size: 0.8125rem;
|
|
515
307
|
line-height: 1.125rem;
|
|
516
|
-
font-weight: var(--lynx-console-font-weight-medium);
|
|
517
|
-
color: var(--lynx-console-color-palette-purple-600);
|
|
518
308
|
}
|
|
519
309
|
|
|
520
310
|
.cp-argObjectJson {
|
|
521
311
|
font-size: 0.8125rem;
|
|
522
312
|
line-height: 1.125rem;
|
|
523
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
524
|
-
color: var(--lynx-console-color-fg-neutral);
|
|
525
313
|
}
|
|
526
314
|
|
|
527
315
|
.cp-replInputRow {
|
|
@@ -536,8 +324,6 @@
|
|
|
536
324
|
.cp-replPrompt {
|
|
537
325
|
font-size: 1.625rem;
|
|
538
326
|
line-height: 2.1875rem;
|
|
539
|
-
font-weight: var(--lynx-console-font-weight-medium);
|
|
540
|
-
color: var(--lynx-console-color-fg-placeholder);
|
|
541
327
|
padding-bottom: 8px;
|
|
542
328
|
}
|
|
543
329
|
|
|
@@ -545,15 +331,11 @@
|
|
|
545
331
|
flex: 1;
|
|
546
332
|
font-size: 1rem;
|
|
547
333
|
line-height: 1.375rem;
|
|
548
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
549
|
-
color: var(--lynx-console-color-fg-neutral);
|
|
550
|
-
caret-color: var(--lynx-console-color-palette-green-600);
|
|
551
334
|
padding-bottom: 8px;
|
|
552
335
|
}
|
|
553
336
|
|
|
554
337
|
.cp-replRunButton {
|
|
555
338
|
padding: 4px 10px;
|
|
556
|
-
background-color: var(--lynx-console-color-palette-green-100);
|
|
557
339
|
border-radius: 4px;
|
|
558
340
|
margin-bottom: 8px;
|
|
559
341
|
}
|
|
@@ -561,8 +343,6 @@
|
|
|
561
343
|
.cp-replRunButtonText {
|
|
562
344
|
font-size: 0.8125rem;
|
|
563
345
|
line-height: 1.125rem;
|
|
564
|
-
font-weight: var(--lynx-console-font-weight-medium);
|
|
565
|
-
color: var(--lynx-console-color-palette-green-600);
|
|
566
346
|
}
|
|
567
347
|
|
|
568
348
|
.np-container {
|
|
@@ -584,21 +364,16 @@
|
|
|
584
364
|
.np-count {
|
|
585
365
|
font-size: 0.8125rem;
|
|
586
366
|
line-height: 1.125rem;
|
|
587
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
588
|
-
color: var(--lynx-console-color-fg-neutral-subtle);
|
|
589
367
|
}
|
|
590
368
|
|
|
591
369
|
.np-clearButton {
|
|
592
370
|
padding: 3px 6px;
|
|
593
|
-
background-color: var(--lynx-console-color-bg-neutral-weak);
|
|
594
371
|
border-radius: 4px;
|
|
595
372
|
}
|
|
596
373
|
|
|
597
374
|
.np-clearButtonText {
|
|
598
375
|
font-size: 0.8125rem;
|
|
599
376
|
line-height: 1.125rem;
|
|
600
|
-
font-weight: var(--lynx-console-font-weight-medium);
|
|
601
|
-
color: var(--lynx-console-color-fg-neutral-muted);
|
|
602
377
|
}
|
|
603
378
|
|
|
604
379
|
.np-list {
|
|
@@ -615,25 +390,14 @@
|
|
|
615
390
|
.np-placeholderText {
|
|
616
391
|
font-size: 0.875rem;
|
|
617
392
|
line-height: 1.1875rem;
|
|
618
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
619
|
-
color: var(--lynx-console-color-fg-disabled);
|
|
620
393
|
}
|
|
621
394
|
|
|
622
395
|
.np-item {
|
|
623
396
|
padding: 8px;
|
|
624
397
|
border-bottom-width: 1px;
|
|
625
|
-
border-bottom-color: var(--lynx-console-color-stroke-neutral-weak);
|
|
626
398
|
border-bottom-style: solid;
|
|
627
399
|
}
|
|
628
400
|
|
|
629
|
-
.np-item--pending {
|
|
630
|
-
background-color: var(--lynx-console-color-palette-gray-100);
|
|
631
|
-
}
|
|
632
|
-
|
|
633
|
-
.np-item--error {
|
|
634
|
-
background-color: var(--lynx-console-color-palette-red-100);
|
|
635
|
-
}
|
|
636
|
-
|
|
637
401
|
.np-itemHeader {
|
|
638
402
|
display: flex;
|
|
639
403
|
flex-direction: row;
|
|
@@ -645,68 +409,23 @@
|
|
|
645
409
|
.np-method {
|
|
646
410
|
font-size: 0.75rem;
|
|
647
411
|
line-height: 1rem;
|
|
648
|
-
font-weight: var(--lynx-console-font-weight-bold);
|
|
649
412
|
padding: 0 4px;
|
|
650
413
|
border-radius: 2px;
|
|
651
|
-
color: var(--lynx-console-color-fg-neutral);
|
|
652
|
-
background-color: var(--lynx-console-color-bg-neutral-weak);
|
|
653
|
-
}
|
|
654
|
-
|
|
655
|
-
.np-method--GET {
|
|
656
|
-
color: var(--lynx-console-color-palette-blue-600);
|
|
657
|
-
background-color: var(--lynx-console-color-palette-blue-100);
|
|
658
|
-
}
|
|
659
|
-
|
|
660
|
-
.np-method--POST {
|
|
661
|
-
color: var(--lynx-console-color-palette-green-600);
|
|
662
|
-
background-color: var(--lynx-console-color-palette-green-100);
|
|
663
|
-
}
|
|
664
|
-
|
|
665
|
-
.np-method--PUT {
|
|
666
|
-
color: var(--lynx-console-color-palette-yellow-600);
|
|
667
|
-
background-color: var(--lynx-console-color-palette-yellow-100);
|
|
668
|
-
}
|
|
669
|
-
|
|
670
|
-
.np-method--PATCH {
|
|
671
|
-
color: var(--lynx-console-color-palette-purple-600);
|
|
672
|
-
background-color: var(--lynx-console-color-palette-purple-100);
|
|
673
|
-
}
|
|
674
|
-
|
|
675
|
-
.np-method--DELETE {
|
|
676
|
-
color: var(--lynx-console-color-palette-red-600);
|
|
677
|
-
background-color: var(--lynx-console-color-palette-red-100);
|
|
678
414
|
}
|
|
679
415
|
|
|
680
416
|
.np-statusCode {
|
|
681
417
|
font-size: 0.75rem;
|
|
682
418
|
line-height: 1rem;
|
|
683
|
-
font-weight: var(--lynx-console-font-weight-bold);
|
|
684
|
-
}
|
|
685
|
-
|
|
686
|
-
.np-statusCode--success {
|
|
687
|
-
color: var(--lynx-console-color-palette-green-600);
|
|
688
|
-
}
|
|
689
|
-
|
|
690
|
-
.np-statusCode--error {
|
|
691
|
-
color: var(--lynx-console-color-palette-red-600);
|
|
692
|
-
}
|
|
693
|
-
|
|
694
|
-
.np-statusCode--pending {
|
|
695
|
-
color: var(--lynx-console-color-fg-neutral-subtle);
|
|
696
419
|
}
|
|
697
420
|
|
|
698
421
|
.np-time {
|
|
699
422
|
font-size: 0.75rem;
|
|
700
423
|
line-height: 1rem;
|
|
701
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
702
|
-
color: var(--lynx-console-color-fg-neutral-subtle);
|
|
703
424
|
}
|
|
704
425
|
|
|
705
426
|
.np-url {
|
|
706
427
|
font-size: 0.8125rem;
|
|
707
428
|
line-height: 1.125rem;
|
|
708
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
709
|
-
color: var(--lynx-console-color-fg-neutral);
|
|
710
429
|
word-break: break-all;
|
|
711
430
|
margin-bottom: 4px;
|
|
712
431
|
}
|
|
@@ -714,8 +433,6 @@
|
|
|
714
433
|
.np-path {
|
|
715
434
|
font-size: 0.8125rem;
|
|
716
435
|
line-height: 1.125rem;
|
|
717
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
718
|
-
color: var(--lynx-console-color-fg-neutral);
|
|
719
436
|
word-break: break-all;
|
|
720
437
|
white-space: pre-wrap;
|
|
721
438
|
overflow: visible;
|
|
@@ -725,15 +442,12 @@
|
|
|
725
442
|
.np-details {
|
|
726
443
|
font-size: 0.8125rem;
|
|
727
444
|
line-height: 1.125rem;
|
|
728
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
729
|
-
color: var(--lynx-console-color-fg-neutral-subtle);
|
|
730
445
|
}
|
|
731
446
|
|
|
732
447
|
.np-detailsContainer {
|
|
733
448
|
margin-top: 12px;
|
|
734
449
|
padding-top: 12px;
|
|
735
450
|
border-top-width: 1px;
|
|
736
|
-
border-top-color: var(--lynx-console-color-stroke-neutral-subtle);
|
|
737
451
|
border-top-style: solid;
|
|
738
452
|
}
|
|
739
453
|
|
|
@@ -750,19 +464,9 @@
|
|
|
750
464
|
cursor: pointer;
|
|
751
465
|
}
|
|
752
466
|
|
|
753
|
-
.np-tab--active {
|
|
754
|
-
background-color: var(--lynx-console-color-bg-neutral-weak);
|
|
755
|
-
}
|
|
756
|
-
|
|
757
467
|
.np-tabText {
|
|
758
468
|
font-size: 0.875rem;
|
|
759
469
|
line-height: 1.1875rem;
|
|
760
|
-
font-weight: var(--lynx-console-font-weight-medium);
|
|
761
|
-
color: var(--lynx-console-color-fg-neutral-subtle);
|
|
762
|
-
}
|
|
763
|
-
|
|
764
|
-
.np-tabText--active {
|
|
765
|
-
color: var(--lynx-console-color-fg-neutral);
|
|
766
470
|
}
|
|
767
471
|
|
|
768
472
|
.np-tabContent {
|
|
@@ -776,8 +480,6 @@
|
|
|
776
480
|
.np-detailSectionTitle {
|
|
777
481
|
font-size: 0.8125rem;
|
|
778
482
|
line-height: 1.125rem;
|
|
779
|
-
font-weight: var(--lynx-console-font-weight-bold);
|
|
780
|
-
color: var(--lynx-console-color-fg-neutral);
|
|
781
483
|
margin-bottom: 8px;
|
|
782
484
|
}
|
|
783
485
|
|
|
@@ -792,15 +494,12 @@
|
|
|
792
494
|
flex-direction: row;
|
|
793
495
|
gap: 8px;
|
|
794
496
|
padding: 4px 8px;
|
|
795
|
-
background-color: var(--lynx-console-color-bg-neutral-weak);
|
|
796
497
|
border-radius: 2px;
|
|
797
498
|
}
|
|
798
499
|
|
|
799
500
|
.np-tableKey {
|
|
800
501
|
font-size: 0.8125rem;
|
|
801
502
|
line-height: 1.125rem;
|
|
802
|
-
font-weight: var(--lynx-console-font-weight-bold);
|
|
803
|
-
color: var(--lynx-console-color-fg-neutral-subtle);
|
|
804
503
|
min-width: 70px;
|
|
805
504
|
flex-shrink: 0;
|
|
806
505
|
}
|
|
@@ -808,8 +507,6 @@
|
|
|
808
507
|
.np-tableValue {
|
|
809
508
|
font-size: 0.8125rem;
|
|
810
509
|
line-height: 1.125rem;
|
|
811
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
812
|
-
color: var(--lynx-console-color-fg-neutral);
|
|
813
510
|
word-break: break-all;
|
|
814
511
|
flex: 1;
|
|
815
512
|
}
|
|
@@ -817,10 +514,7 @@
|
|
|
817
514
|
.np-bodyText {
|
|
818
515
|
font-size: 0.8125rem;
|
|
819
516
|
line-height: 1.125rem;
|
|
820
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
821
|
-
color: var(--lynx-console-color-fg-neutral);
|
|
822
517
|
padding: 8px;
|
|
823
|
-
background-color: var(--lynx-console-color-bg-neutral-weak);
|
|
824
518
|
border-radius: 4px;
|
|
825
519
|
word-break: break-all;
|
|
826
520
|
white-space: pre-wrap;
|
|
@@ -829,10 +523,7 @@
|
|
|
829
523
|
.np-errorText {
|
|
830
524
|
font-size: 0.8125rem;
|
|
831
525
|
line-height: 1.125rem;
|
|
832
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
833
|
-
color: var(--lynx-console-color-palette-red-600);
|
|
834
526
|
padding: 8px;
|
|
835
|
-
background-color: var(--lynx-console-color-palette-red-100);
|
|
836
527
|
border-radius: 4px;
|
|
837
528
|
word-break: break-all;
|
|
838
529
|
}
|
|
@@ -840,8 +531,6 @@
|
|
|
840
531
|
.np-emptyText {
|
|
841
532
|
font-size: 0.8125rem;
|
|
842
533
|
line-height: 1.125rem;
|
|
843
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
844
|
-
color: var(--lynx-console-color-fg-disabled);
|
|
845
534
|
text-align: center;
|
|
846
535
|
padding: 16px 0;
|
|
847
536
|
}
|
|
@@ -861,28 +550,22 @@
|
|
|
861
550
|
margin-bottom: 8px;
|
|
862
551
|
padding-bottom: 4px;
|
|
863
552
|
border-bottom-width: 1px;
|
|
864
|
-
border-bottom-color: var(--lynx-console-color-stroke-neutral-subtle);
|
|
865
553
|
border-bottom-style: solid;
|
|
866
554
|
}
|
|
867
555
|
|
|
868
556
|
.pp-count {
|
|
869
557
|
font-size: 0.8125rem;
|
|
870
558
|
line-height: 1.125rem;
|
|
871
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
872
|
-
color: var(--lynx-console-color-fg-neutral-subtle);
|
|
873
559
|
}
|
|
874
560
|
|
|
875
561
|
.pp-clearButton {
|
|
876
562
|
padding: 3px 6px;
|
|
877
|
-
background-color: var(--lynx-console-color-bg-neutral-weak);
|
|
878
563
|
border-radius: 4px;
|
|
879
564
|
}
|
|
880
565
|
|
|
881
566
|
.pp-clearButtonText {
|
|
882
567
|
font-size: 0.8125rem;
|
|
883
568
|
line-height: 1.125rem;
|
|
884
|
-
font-weight: var(--lynx-console-font-weight-medium);
|
|
885
|
-
color: var(--lynx-console-color-fg-neutral-muted);
|
|
886
569
|
}
|
|
887
570
|
|
|
888
571
|
.pp-list {
|
|
@@ -899,14 +582,11 @@
|
|
|
899
582
|
.pp-placeholderText {
|
|
900
583
|
font-size: 0.875rem;
|
|
901
584
|
line-height: 1.1875rem;
|
|
902
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
903
|
-
color: var(--lynx-console-color-fg-disabled);
|
|
904
585
|
}
|
|
905
586
|
|
|
906
587
|
.pp-item {
|
|
907
588
|
padding: 8px;
|
|
908
589
|
border-bottom-width: 1px;
|
|
909
|
-
border-bottom-color: var(--lynx-console-color-stroke-neutral-weak);
|
|
910
590
|
border-bottom-style: solid;
|
|
911
591
|
}
|
|
912
592
|
|
|
@@ -921,45 +601,18 @@
|
|
|
921
601
|
.pp-entryType {
|
|
922
602
|
font-size: 0.75rem;
|
|
923
603
|
line-height: 1rem;
|
|
924
|
-
font-weight: var(--lynx-console-font-weight-bold);
|
|
925
604
|
padding: 0 6px;
|
|
926
605
|
border-radius: 2px;
|
|
927
|
-
color: var(--lynx-console-color-fg-neutral);
|
|
928
|
-
background-color: var(--lynx-console-color-bg-neutral-weak);
|
|
929
|
-
}
|
|
930
|
-
|
|
931
|
-
.pp-entryType--init {
|
|
932
|
-
color: var(--lynx-console-color-palette-blue-600);
|
|
933
|
-
background-color: var(--lynx-console-color-palette-blue-100);
|
|
934
|
-
}
|
|
935
|
-
|
|
936
|
-
.pp-entryType--metric {
|
|
937
|
-
color: var(--lynx-console-color-palette-green-600);
|
|
938
|
-
background-color: var(--lynx-console-color-palette-green-100);
|
|
939
|
-
}
|
|
940
|
-
|
|
941
|
-
.pp-entryType--pipeline {
|
|
942
|
-
color: var(--lynx-console-color-palette-purple-600);
|
|
943
|
-
background-color: var(--lynx-console-color-palette-purple-100);
|
|
944
|
-
}
|
|
945
|
-
|
|
946
|
-
.pp-entryType--resource {
|
|
947
|
-
color: var(--lynx-console-color-palette-yellow-600);
|
|
948
|
-
background-color: var(--lynx-console-color-palette-yellow-100);
|
|
949
606
|
}
|
|
950
607
|
|
|
951
608
|
.pp-entryName {
|
|
952
609
|
font-size: 0.75rem;
|
|
953
610
|
line-height: 1rem;
|
|
954
|
-
font-weight: var(--lynx-console-font-weight-medium);
|
|
955
|
-
color: var(--lynx-console-color-fg-neutral);
|
|
956
611
|
}
|
|
957
612
|
|
|
958
613
|
.pp-timestamp {
|
|
959
614
|
font-size: 0.75rem;
|
|
960
615
|
line-height: 1rem;
|
|
961
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
962
|
-
color: var(--lynx-console-color-fg-neutral-subtle);
|
|
963
616
|
}
|
|
964
617
|
|
|
965
618
|
.pp-fcpMetricHeader {
|
|
@@ -972,9 +625,6 @@
|
|
|
972
625
|
.pp-fcpHighlight {
|
|
973
626
|
font-size: 0.8125rem;
|
|
974
627
|
line-height: 1.125rem;
|
|
975
|
-
font-weight: var(--lynx-console-font-weight-bold);
|
|
976
|
-
color: var(--lynx-console-color-palette-blue-600);
|
|
977
|
-
background-color: var(--lynx-console-color-palette-blue-100);
|
|
978
628
|
padding: 4px 8px;
|
|
979
629
|
border-radius: 4px;
|
|
980
630
|
margin-top: 4px;
|
|
@@ -993,15 +643,12 @@
|
|
|
993
643
|
align-items: center;
|
|
994
644
|
gap: 8px;
|
|
995
645
|
padding: 4px 8px;
|
|
996
|
-
background-color: var(--lynx-console-color-bg-neutral-weak);
|
|
997
646
|
border-radius: 2px;
|
|
998
647
|
}
|
|
999
648
|
|
|
1000
649
|
.pp-metricName {
|
|
1001
650
|
font-size: 0.8125rem;
|
|
1002
651
|
line-height: 1.125rem;
|
|
1003
|
-
font-weight: var(--lynx-console-font-weight-medium);
|
|
1004
|
-
color: var(--lynx-console-color-fg-neutral-subtle);
|
|
1005
652
|
min-width: 100px;
|
|
1006
653
|
flex-shrink: 0;
|
|
1007
654
|
}
|
|
@@ -1009,8 +656,6 @@
|
|
|
1009
656
|
.pp-metricValue {
|
|
1010
657
|
font-size: 0.8125rem;
|
|
1011
658
|
line-height: 1.125rem;
|
|
1012
|
-
font-weight: var(--lynx-console-font-weight-bold);
|
|
1013
|
-
color: var(--lynx-console-color-palette-green-600);
|
|
1014
659
|
flex: 1;
|
|
1015
660
|
}
|
|
1016
661
|
|
|
@@ -1030,13 +675,10 @@
|
|
|
1030
675
|
.pp-fcpSectionDescription {
|
|
1031
676
|
font-size: 0.8125rem;
|
|
1032
677
|
line-height: 1.125rem;
|
|
1033
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
1034
|
-
color: var(--lynx-console-color-fg-neutral-subtle);
|
|
1035
678
|
margin-bottom: 4px;
|
|
1036
679
|
}
|
|
1037
680
|
|
|
1038
681
|
.pp-fcpMetric {
|
|
1039
|
-
background-color: var(--lynx-console-color-bg-layer-default);
|
|
1040
682
|
border-radius: 4px;
|
|
1041
683
|
display: flex;
|
|
1042
684
|
flex-direction: column;
|
|
@@ -1046,51 +688,38 @@
|
|
|
1046
688
|
.pp-fcpMetricName {
|
|
1047
689
|
font-size: 0.75rem;
|
|
1048
690
|
line-height: 1rem;
|
|
1049
|
-
font-weight: var(--lynx-console-font-weight-bold);
|
|
1050
|
-
color: var(--lynx-console-color-fg-neutral);
|
|
1051
691
|
}
|
|
1052
692
|
|
|
1053
693
|
.pp-fcpMetricValue {
|
|
1054
694
|
font-size: 0.6875rem;
|
|
1055
695
|
line-height: 0.9375rem;
|
|
1056
|
-
font-weight: var(--lynx-console-font-weight-bold);
|
|
1057
|
-
color: var(--lynx-console-color-palette-blue-600);
|
|
1058
696
|
}
|
|
1059
697
|
|
|
1060
698
|
.pp-fcpMetricDescription {
|
|
1061
699
|
font-size: 0.8125rem;
|
|
1062
700
|
line-height: 1.125rem;
|
|
1063
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
1064
|
-
color: var(--lynx-console-color-fg-neutral-subtle);
|
|
1065
701
|
}
|
|
1066
702
|
|
|
1067
703
|
.pp-fcpMetricFormula {
|
|
1068
704
|
font-size: 0.875rem;
|
|
1069
705
|
line-height: 1.1875rem;
|
|
1070
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
1071
|
-
color: var(--lynx-console-color-fg-disabled);
|
|
1072
706
|
font-family: monospace;
|
|
1073
707
|
}
|
|
1074
708
|
|
|
1075
709
|
.pp-rawEntrySection {
|
|
1076
710
|
padding: 12px;
|
|
1077
|
-
background-color: var(--lynx-console-color-bg-neutral-weak);
|
|
1078
711
|
border-radius: 4px;
|
|
1079
712
|
}
|
|
1080
713
|
|
|
1081
714
|
.pp-detailTitle {
|
|
1082
715
|
font-size: 0.8125rem;
|
|
1083
716
|
line-height: 1.125rem;
|
|
1084
|
-
font-weight: var(--lynx-console-font-weight-bold);
|
|
1085
|
-
color: var(--lynx-console-color-fg-neutral);
|
|
1086
717
|
margin-bottom: 8px;
|
|
1087
718
|
}
|
|
1088
719
|
|
|
1089
720
|
.pp-rawEntry {
|
|
1090
721
|
font-size: 0.8125rem;
|
|
1091
722
|
line-height: 1.125rem;
|
|
1092
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
1093
|
-
color: var(--lynx-console-color-fg-neutral-subtle);
|
|
1094
723
|
font-family: monospace;
|
|
1095
724
|
white-space: pre-wrap;
|
|
1096
725
|
word-break: break-all;
|
|
@@ -1104,12 +733,10 @@
|
|
|
1104
733
|
|
|
1105
734
|
.tabs-header {
|
|
1106
735
|
display: flex;
|
|
1107
|
-
box-shadow: inset 0 -1px 0 0 var(--lynx-console-color-stroke-neutral-subtle);
|
|
1108
736
|
}
|
|
1109
737
|
|
|
1110
738
|
.tabs-triggerButton {
|
|
1111
739
|
flex: 1;
|
|
1112
|
-
color: var(--lynx-console-color-fg-neutral-subtle);
|
|
1113
740
|
display: flex;
|
|
1114
741
|
justify-content: center;
|
|
1115
742
|
align-items: center;
|
|
@@ -1120,12 +747,6 @@
|
|
|
1120
747
|
.tabs-triggerButtonText {
|
|
1121
748
|
font-size: 1rem;
|
|
1122
749
|
line-height: 1.375rem;
|
|
1123
|
-
font-weight: var(--lynx-console-font-weight-bold);
|
|
1124
|
-
color: var(--lynx-console-color-fg-neutral-subtle);
|
|
1125
|
-
}
|
|
1126
|
-
|
|
1127
|
-
.tabs-triggerButtonText--active {
|
|
1128
|
-
color: var(--lynx-console-color-fg-neutral);
|
|
1129
750
|
}
|
|
1130
751
|
|
|
1131
752
|
.tabs-triggerButtonText--t4 {
|
|
@@ -1159,7 +780,6 @@
|
|
|
1159
780
|
}
|
|
1160
781
|
|
|
1161
782
|
.tabs-triggerIndicatorLine {
|
|
1162
|
-
background-color: var(--lynx-console-color-fg-neutral);
|
|
1163
783
|
width: 100%;
|
|
1164
784
|
height: 2px;
|
|
1165
785
|
}
|
|
@@ -1183,7 +803,6 @@
|
|
|
1183
803
|
align-items: center;
|
|
1184
804
|
gap: 8px;
|
|
1185
805
|
overflow: visible;
|
|
1186
|
-
transition: transform var(--lynx-console-duration-d4) cubic-bezier(0.4, 0, 0.2, 1);
|
|
1187
806
|
}
|
|
1188
807
|
|
|
1189
808
|
.fb-button {
|
|
@@ -1194,7 +813,6 @@
|
|
|
1194
813
|
padding-top: 4px;
|
|
1195
814
|
padding-bottom: 4px;
|
|
1196
815
|
border-radius: 12px;
|
|
1197
|
-
background-color: var(--lynx-console-color-palette-green-600);
|
|
1198
816
|
display: flex;
|
|
1199
817
|
flex-direction: column;
|
|
1200
818
|
align-items: center;
|
|
@@ -1216,16 +834,12 @@
|
|
|
1216
834
|
.fb-title {
|
|
1217
835
|
font-size: 0.875rem;
|
|
1218
836
|
line-height: 1.1875rem;
|
|
1219
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
1220
|
-
color: var(--lynx-console-color-palette-static-white);
|
|
1221
837
|
text-align: center;
|
|
1222
838
|
}
|
|
1223
839
|
|
|
1224
840
|
.fb-subtitle {
|
|
1225
841
|
font-size: 0.8125rem;
|
|
1226
842
|
line-height: 1.125rem;
|
|
1227
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
1228
|
-
color: var(--lynx-console-color-palette-static-white);
|
|
1229
843
|
text-align: center;
|
|
1230
844
|
}
|
|
1231
845
|
|
|
@@ -1234,7 +848,6 @@
|
|
|
1234
848
|
width: 32px;
|
|
1235
849
|
height: 32px;
|
|
1236
850
|
border-radius: 16px;
|
|
1237
|
-
background-color: var(--lynx-console-color-palette-green-600);
|
|
1238
851
|
display: flex;
|
|
1239
852
|
align-items: center;
|
|
1240
853
|
justify-content: center;
|
|
@@ -1245,7 +858,6 @@
|
|
|
1245
858
|
font-size: 20px;
|
|
1246
859
|
line-height: 32px;
|
|
1247
860
|
margin-bottom: 5px;
|
|
1248
|
-
color: var(--lynx-console-color-palette-static-white);
|
|
1249
861
|
text-align: center;
|
|
1250
862
|
}
|
|
1251
863
|
|