lynx-console 0.2.1 → 0.2.3
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 -120
- package/dist/index.css +0 -397
- package/dist/index.css.map +1 -1
- package/dist/index.mjs +616 -121
- package/dist/index.mjs.map +1 -1
- package/dist/setup.cjs +0 -1
- package/dist/setup.d.cts +0 -1
- package/dist/setup.d.cts.map +1 -1
- package/dist/setup.d.mts +0 -1
- package/dist/setup.d.mts.map +1 -1
- package/dist/setup.mjs +0 -1
- package/dist/setup.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 +157 -35
- package/src/components/Tabs.css +0 -9
- package/src/components/Tabs.tsx +21 -3
- package/src/index.tsx +29 -23
- 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,84 +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
|
-
page {
|
|
74
|
-
background-color: var(--lynx-console-color-bg-layer-default);
|
|
75
|
-
font-size: 16px;
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
text {
|
|
79
|
-
color: var(--lynx-console-color-fg-neutral);
|
|
80
|
-
}
|
|
81
|
-
|
|
82
1
|
.bs-overlay {
|
|
83
2
|
position: fixed;
|
|
84
3
|
top: 0;
|
|
@@ -98,8 +17,6 @@ text {
|
|
|
98
17
|
bottom: 0;
|
|
99
18
|
left: 0;
|
|
100
19
|
z-index: 9998;
|
|
101
|
-
background: var(--lynx-console-color-bg-overlay);
|
|
102
|
-
transition: opacity var(--lynx-console-duration-d6) cubic-bezier(0.4, 0, 0.2, 1);
|
|
103
20
|
}
|
|
104
21
|
|
|
105
22
|
.bs-content {
|
|
@@ -109,10 +26,8 @@ text {
|
|
|
109
26
|
flex-direction: column;
|
|
110
27
|
box-sizing: border-box;
|
|
111
28
|
word-break: break-all;
|
|
112
|
-
background: var(--lynx-console-color-bg-layer-floating);
|
|
113
29
|
border-top-left-radius: 24px;
|
|
114
30
|
border-top-right-radius: 24px;
|
|
115
|
-
transition: transform var(--lynx-console-duration-d6) cubic-bezier(0.4, 0, 0.2, 1);
|
|
116
31
|
height: 500px;
|
|
117
32
|
overflow: hidden;
|
|
118
33
|
}
|
|
@@ -131,7 +46,6 @@ text {
|
|
|
131
46
|
.bs-handle {
|
|
132
47
|
width: 36px;
|
|
133
48
|
height: 4px;
|
|
134
|
-
background-color: var(--lynx-console-color-palette-gray-400);
|
|
135
49
|
border-radius: 9999px;
|
|
136
50
|
margin-top: 12px;
|
|
137
51
|
}
|
|
@@ -150,8 +64,6 @@ text {
|
|
|
150
64
|
.bs-title {
|
|
151
65
|
font-size: 1.25rem;
|
|
152
66
|
line-height: 1.6875rem;
|
|
153
|
-
font-weight: var(--lynx-console-font-weight-bold);
|
|
154
|
-
color: var(--lynx-console-color-fg-neutral);
|
|
155
67
|
}
|
|
156
68
|
|
|
157
69
|
.bs-body {
|
|
@@ -187,8 +99,6 @@ text {
|
|
|
187
99
|
.cp-placeholderText {
|
|
188
100
|
font-size: 0.875rem;
|
|
189
101
|
line-height: 1.1875rem;
|
|
190
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
191
|
-
color: var(--lynx-console-color-fg-disabled);
|
|
192
102
|
}
|
|
193
103
|
|
|
194
104
|
.cp-logContainer {
|
|
@@ -215,15 +125,12 @@ text {
|
|
|
215
125
|
flex-direction: row;
|
|
216
126
|
align-items: center;
|
|
217
127
|
padding: 3px 6px;
|
|
218
|
-
background-color: var(--lynx-console-color-bg-neutral-weak);
|
|
219
128
|
border-radius: 4px;
|
|
220
129
|
}
|
|
221
130
|
|
|
222
131
|
.cp-filterButtonText {
|
|
223
132
|
font-size: 0.8125rem;
|
|
224
133
|
line-height: 1.125rem;
|
|
225
|
-
font-weight: var(--lynx-console-font-weight-medium);
|
|
226
|
-
color: var(--lynx-console-color-fg-neutral-muted);
|
|
227
134
|
}
|
|
228
135
|
|
|
229
136
|
.cp-filterDropdown {
|
|
@@ -231,9 +138,7 @@ text {
|
|
|
231
138
|
top: 100%;
|
|
232
139
|
left: 0;
|
|
233
140
|
margin-top: 4px;
|
|
234
|
-
background-color: var(--lynx-console-color-bg-layer-floating);
|
|
235
141
|
border-width: 1px;
|
|
236
|
-
border-color: var(--lynx-console-color-stroke-neutral-subtle);
|
|
237
142
|
border-style: solid;
|
|
238
143
|
border-radius: 8px;
|
|
239
144
|
padding: 4px 0;
|
|
@@ -252,46 +157,12 @@ text {
|
|
|
252
157
|
.cp-filterCheckbox {
|
|
253
158
|
font-size: 0.8125rem;
|
|
254
159
|
line-height: 1.125rem;
|
|
255
|
-
font-weight: var(--lynx-console-font-weight-medium);
|
|
256
160
|
width: 16px;
|
|
257
161
|
}
|
|
258
162
|
|
|
259
|
-
.cp-filterCheckbox--log {
|
|
260
|
-
color: var(--lynx-console-color-palette-green-600);
|
|
261
|
-
}
|
|
262
|
-
|
|
263
|
-
.cp-filterCheckbox--info {
|
|
264
|
-
color: var(--lynx-console-color-palette-blue-600);
|
|
265
|
-
}
|
|
266
|
-
|
|
267
|
-
.cp-filterCheckbox--warn {
|
|
268
|
-
color: var(--lynx-console-color-palette-yellow-600);
|
|
269
|
-
}
|
|
270
|
-
|
|
271
|
-
.cp-filterCheckbox--error {
|
|
272
|
-
color: var(--lynx-console-color-palette-red-600);
|
|
273
|
-
}
|
|
274
|
-
|
|
275
163
|
.cp-filterLabel {
|
|
276
164
|
font-size: 0.8125rem;
|
|
277
165
|
line-height: 1.125rem;
|
|
278
|
-
font-weight: var(--lynx-console-font-weight-medium);
|
|
279
|
-
}
|
|
280
|
-
|
|
281
|
-
.cp-filterLabel--log {
|
|
282
|
-
color: var(--lynx-console-color-palette-green-600);
|
|
283
|
-
}
|
|
284
|
-
|
|
285
|
-
.cp-filterLabel--info {
|
|
286
|
-
color: var(--lynx-console-color-palette-blue-600);
|
|
287
|
-
}
|
|
288
|
-
|
|
289
|
-
.cp-filterLabel--warn {
|
|
290
|
-
color: var(--lynx-console-color-palette-yellow-600);
|
|
291
|
-
}
|
|
292
|
-
|
|
293
|
-
.cp-filterLabel--error {
|
|
294
|
-
color: var(--lynx-console-color-palette-red-600);
|
|
295
166
|
}
|
|
296
167
|
|
|
297
168
|
.cp-searchWrapper {
|
|
@@ -302,7 +173,6 @@ text {
|
|
|
302
173
|
margin-left: 8px;
|
|
303
174
|
margin-right: 8px;
|
|
304
175
|
border-bottom-width: 1px;
|
|
305
|
-
border-bottom-color: var(--lynx-console-color-stroke-neutral-subtle);
|
|
306
176
|
border-bottom-style: solid;
|
|
307
177
|
gap: 8px;
|
|
308
178
|
}
|
|
@@ -310,17 +180,12 @@ text {
|
|
|
310
180
|
.cp-searchPrompt {
|
|
311
181
|
font-size: 1.125rem;
|
|
312
182
|
line-height: 1.5rem;
|
|
313
|
-
font-weight: var(--lynx-console-font-weight-medium);
|
|
314
|
-
color: var(--lynx-console-color-fg-placeholder);
|
|
315
183
|
}
|
|
316
184
|
|
|
317
185
|
.cp-searchInput {
|
|
318
186
|
flex: 1;
|
|
319
187
|
font-size: 0.8125rem;
|
|
320
188
|
line-height: 1.125rem;
|
|
321
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
322
|
-
color: var(--lynx-console-color-fg-neutral);
|
|
323
|
-
caret-color: var(--lynx-console-color-palette-green-600);
|
|
324
189
|
}
|
|
325
190
|
|
|
326
191
|
.cp-searchClear {
|
|
@@ -330,21 +195,16 @@ text {
|
|
|
330
195
|
.cp-searchClearText {
|
|
331
196
|
font-size: 0.8125rem;
|
|
332
197
|
line-height: 1.125rem;
|
|
333
|
-
font-weight: var(--lynx-console-font-weight-medium);
|
|
334
|
-
color: var(--lynx-console-color-fg-placeholder);
|
|
335
198
|
}
|
|
336
199
|
|
|
337
200
|
.cp-clearButton {
|
|
338
201
|
padding: 3px 6px;
|
|
339
|
-
background-color: var(--lynx-console-color-bg-neutral-weak);
|
|
340
202
|
border-radius: 4px;
|
|
341
203
|
}
|
|
342
204
|
|
|
343
205
|
.cp-clearButtonText {
|
|
344
206
|
font-size: 0.8125rem;
|
|
345
207
|
line-height: 1.125rem;
|
|
346
|
-
font-weight: var(--lynx-console-font-weight-medium);
|
|
347
|
-
color: var(--lynx-console-color-fg-neutral-muted);
|
|
348
208
|
}
|
|
349
209
|
|
|
350
210
|
.cp-logList {
|
|
@@ -356,18 +216,9 @@ text {
|
|
|
356
216
|
.cp-logItem {
|
|
357
217
|
padding: 8px;
|
|
358
218
|
border-bottom-width: 1px;
|
|
359
|
-
border-bottom-color: var(--lynx-console-color-stroke-neutral-weak);
|
|
360
219
|
border-bottom-style: solid;
|
|
361
220
|
}
|
|
362
221
|
|
|
363
|
-
.cp-logItem--warn {
|
|
364
|
-
background-color: var(--lynx-console-color-palette-yellow-100);
|
|
365
|
-
}
|
|
366
|
-
|
|
367
|
-
.cp-logItem--error {
|
|
368
|
-
background-color: var(--lynx-console-color-palette-red-100);
|
|
369
|
-
}
|
|
370
|
-
|
|
371
222
|
.cp-logItemHeader {
|
|
372
223
|
display: flex;
|
|
373
224
|
flex-direction: row;
|
|
@@ -378,38 +229,17 @@ text {
|
|
|
378
229
|
.cp-logLevel {
|
|
379
230
|
font-size: 0.75rem;
|
|
380
231
|
line-height: 1rem;
|
|
381
|
-
font-weight: var(--lynx-console-font-weight-bold);
|
|
382
232
|
margin-right: 8px;
|
|
383
233
|
}
|
|
384
234
|
|
|
385
|
-
.cp-logLevel--log {
|
|
386
|
-
color: var(--lynx-console-color-palette-green-600);
|
|
387
|
-
}
|
|
388
|
-
|
|
389
|
-
.cp-logLevel--info {
|
|
390
|
-
color: var(--lynx-console-color-palette-blue-600);
|
|
391
|
-
}
|
|
392
|
-
|
|
393
|
-
.cp-logLevel--warn {
|
|
394
|
-
color: var(--lynx-console-color-palette-yellow-600);
|
|
395
|
-
}
|
|
396
|
-
|
|
397
|
-
.cp-logLevel--error {
|
|
398
|
-
color: var(--lynx-console-color-palette-red-600);
|
|
399
|
-
}
|
|
400
|
-
|
|
401
235
|
.cp-logTime {
|
|
402
236
|
font-size: 0.75rem;
|
|
403
237
|
line-height: 1rem;
|
|
404
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
405
|
-
color: var(--lynx-console-color-fg-neutral-subtle);
|
|
406
238
|
}
|
|
407
239
|
|
|
408
240
|
.cp-toggleIndicator {
|
|
409
241
|
font-size: 0.75rem;
|
|
410
242
|
line-height: 1rem;
|
|
411
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
412
|
-
color: var(--lynx-console-color-fg-neutral-subtle);
|
|
413
243
|
margin-left: 4px;
|
|
414
244
|
align-self: flex-start;
|
|
415
245
|
}
|
|
@@ -417,8 +247,6 @@ text {
|
|
|
417
247
|
.cp-logMessage {
|
|
418
248
|
font-size: 0.8125rem;
|
|
419
249
|
line-height: 1.125rem;
|
|
420
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
421
|
-
color: var(--lynx-console-color-fg-neutral);
|
|
422
250
|
word-break: break-all;
|
|
423
251
|
}
|
|
424
252
|
|
|
@@ -432,59 +260,16 @@ text {
|
|
|
432
260
|
.cp-logArgItem {
|
|
433
261
|
font-size: 0.8125rem;
|
|
434
262
|
line-height: 1.125rem;
|
|
435
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
436
|
-
}
|
|
437
|
-
|
|
438
|
-
.cp-argNull {
|
|
439
|
-
color: var(--lynx-console-color-fg-neutral-subtle);
|
|
440
|
-
}
|
|
441
|
-
|
|
442
|
-
.cp-argUndefined {
|
|
443
|
-
color: var(--lynx-console-color-fg-neutral-subtle);
|
|
444
263
|
}
|
|
445
264
|
|
|
446
265
|
.cp-argString {
|
|
447
266
|
font-size: 0.8125rem;
|
|
448
267
|
line-height: 1.125rem;
|
|
449
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
450
|
-
}
|
|
451
|
-
|
|
452
|
-
.cp-argString--log {
|
|
453
|
-
color: var(--lynx-console-color-fg-neutral);
|
|
454
|
-
}
|
|
455
|
-
|
|
456
|
-
.cp-argString--info {
|
|
457
|
-
color: var(--lynx-console-color-fg-neutral);
|
|
458
|
-
}
|
|
459
|
-
|
|
460
|
-
.cp-argString--warn {
|
|
461
|
-
color: var(--lynx-console-color-palette-yellow-900);
|
|
462
|
-
}
|
|
463
|
-
|
|
464
|
-
.cp-argString--error {
|
|
465
|
-
color: var(--lynx-console-color-palette-red-900);
|
|
466
268
|
}
|
|
467
269
|
|
|
468
270
|
.cp-argPrimitive {
|
|
469
271
|
font-size: 0.8125rem;
|
|
470
272
|
line-height: 1.125rem;
|
|
471
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
472
|
-
}
|
|
473
|
-
|
|
474
|
-
.cp-argPrimitive--log {
|
|
475
|
-
color: var(--lynx-console-color-palette-blue-600);
|
|
476
|
-
}
|
|
477
|
-
|
|
478
|
-
.cp-argPrimitive--info {
|
|
479
|
-
color: var(--lynx-console-color-palette-blue-600);
|
|
480
|
-
}
|
|
481
|
-
|
|
482
|
-
.cp-argPrimitive--warn {
|
|
483
|
-
color: var(--lynx-console-color-palette-yellow-900);
|
|
484
|
-
}
|
|
485
|
-
|
|
486
|
-
.cp-argPrimitive--error {
|
|
487
|
-
color: var(--lynx-console-color-palette-red-900);
|
|
488
273
|
}
|
|
489
274
|
|
|
490
275
|
.cp-argObject {
|
|
@@ -502,8 +287,6 @@ text {
|
|
|
502
287
|
.cp-argObjectPreview {
|
|
503
288
|
font-size: 0.8125rem;
|
|
504
289
|
line-height: 1.125rem;
|
|
505
|
-
font-weight: var(--lynx-console-font-weight-medium);
|
|
506
|
-
color: var(--lynx-console-color-fg-neutral);
|
|
507
290
|
}
|
|
508
291
|
|
|
509
292
|
.cp-argObjectContent {
|
|
@@ -522,15 +305,11 @@ text {
|
|
|
522
305
|
.cp-argObjectKey {
|
|
523
306
|
font-size: 0.8125rem;
|
|
524
307
|
line-height: 1.125rem;
|
|
525
|
-
font-weight: var(--lynx-console-font-weight-medium);
|
|
526
|
-
color: var(--lynx-console-color-palette-purple-600);
|
|
527
308
|
}
|
|
528
309
|
|
|
529
310
|
.cp-argObjectJson {
|
|
530
311
|
font-size: 0.8125rem;
|
|
531
312
|
line-height: 1.125rem;
|
|
532
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
533
|
-
color: var(--lynx-console-color-fg-neutral);
|
|
534
313
|
}
|
|
535
314
|
|
|
536
315
|
.cp-replInputRow {
|
|
@@ -545,8 +324,6 @@ text {
|
|
|
545
324
|
.cp-replPrompt {
|
|
546
325
|
font-size: 1.625rem;
|
|
547
326
|
line-height: 2.1875rem;
|
|
548
|
-
font-weight: var(--lynx-console-font-weight-medium);
|
|
549
|
-
color: var(--lynx-console-color-fg-placeholder);
|
|
550
327
|
padding-bottom: 8px;
|
|
551
328
|
}
|
|
552
329
|
|
|
@@ -554,15 +331,11 @@ text {
|
|
|
554
331
|
flex: 1;
|
|
555
332
|
font-size: 1rem;
|
|
556
333
|
line-height: 1.375rem;
|
|
557
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
558
|
-
color: var(--lynx-console-color-fg-neutral);
|
|
559
|
-
caret-color: var(--lynx-console-color-palette-green-600);
|
|
560
334
|
padding-bottom: 8px;
|
|
561
335
|
}
|
|
562
336
|
|
|
563
337
|
.cp-replRunButton {
|
|
564
338
|
padding: 4px 10px;
|
|
565
|
-
background-color: var(--lynx-console-color-palette-green-100);
|
|
566
339
|
border-radius: 4px;
|
|
567
340
|
margin-bottom: 8px;
|
|
568
341
|
}
|
|
@@ -570,8 +343,6 @@ text {
|
|
|
570
343
|
.cp-replRunButtonText {
|
|
571
344
|
font-size: 0.8125rem;
|
|
572
345
|
line-height: 1.125rem;
|
|
573
|
-
font-weight: var(--lynx-console-font-weight-medium);
|
|
574
|
-
color: var(--lynx-console-color-palette-green-600);
|
|
575
346
|
}
|
|
576
347
|
|
|
577
348
|
.np-container {
|
|
@@ -593,21 +364,16 @@ text {
|
|
|
593
364
|
.np-count {
|
|
594
365
|
font-size: 0.8125rem;
|
|
595
366
|
line-height: 1.125rem;
|
|
596
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
597
|
-
color: var(--lynx-console-color-fg-neutral-subtle);
|
|
598
367
|
}
|
|
599
368
|
|
|
600
369
|
.np-clearButton {
|
|
601
370
|
padding: 3px 6px;
|
|
602
|
-
background-color: var(--lynx-console-color-bg-neutral-weak);
|
|
603
371
|
border-radius: 4px;
|
|
604
372
|
}
|
|
605
373
|
|
|
606
374
|
.np-clearButtonText {
|
|
607
375
|
font-size: 0.8125rem;
|
|
608
376
|
line-height: 1.125rem;
|
|
609
|
-
font-weight: var(--lynx-console-font-weight-medium);
|
|
610
|
-
color: var(--lynx-console-color-fg-neutral-muted);
|
|
611
377
|
}
|
|
612
378
|
|
|
613
379
|
.np-list {
|
|
@@ -624,25 +390,14 @@ text {
|
|
|
624
390
|
.np-placeholderText {
|
|
625
391
|
font-size: 0.875rem;
|
|
626
392
|
line-height: 1.1875rem;
|
|
627
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
628
|
-
color: var(--lynx-console-color-fg-disabled);
|
|
629
393
|
}
|
|
630
394
|
|
|
631
395
|
.np-item {
|
|
632
396
|
padding: 8px;
|
|
633
397
|
border-bottom-width: 1px;
|
|
634
|
-
border-bottom-color: var(--lynx-console-color-stroke-neutral-weak);
|
|
635
398
|
border-bottom-style: solid;
|
|
636
399
|
}
|
|
637
400
|
|
|
638
|
-
.np-item--pending {
|
|
639
|
-
background-color: var(--lynx-console-color-palette-gray-100);
|
|
640
|
-
}
|
|
641
|
-
|
|
642
|
-
.np-item--error {
|
|
643
|
-
background-color: var(--lynx-console-color-palette-red-100);
|
|
644
|
-
}
|
|
645
|
-
|
|
646
401
|
.np-itemHeader {
|
|
647
402
|
display: flex;
|
|
648
403
|
flex-direction: row;
|
|
@@ -654,68 +409,23 @@ text {
|
|
|
654
409
|
.np-method {
|
|
655
410
|
font-size: 0.75rem;
|
|
656
411
|
line-height: 1rem;
|
|
657
|
-
font-weight: var(--lynx-console-font-weight-bold);
|
|
658
412
|
padding: 0 4px;
|
|
659
413
|
border-radius: 2px;
|
|
660
|
-
color: var(--lynx-console-color-fg-neutral);
|
|
661
|
-
background-color: var(--lynx-console-color-bg-neutral-weak);
|
|
662
|
-
}
|
|
663
|
-
|
|
664
|
-
.np-method--GET {
|
|
665
|
-
color: var(--lynx-console-color-palette-blue-600);
|
|
666
|
-
background-color: var(--lynx-console-color-palette-blue-100);
|
|
667
|
-
}
|
|
668
|
-
|
|
669
|
-
.np-method--POST {
|
|
670
|
-
color: var(--lynx-console-color-palette-green-600);
|
|
671
|
-
background-color: var(--lynx-console-color-palette-green-100);
|
|
672
|
-
}
|
|
673
|
-
|
|
674
|
-
.np-method--PUT {
|
|
675
|
-
color: var(--lynx-console-color-palette-yellow-600);
|
|
676
|
-
background-color: var(--lynx-console-color-palette-yellow-100);
|
|
677
|
-
}
|
|
678
|
-
|
|
679
|
-
.np-method--PATCH {
|
|
680
|
-
color: var(--lynx-console-color-palette-purple-600);
|
|
681
|
-
background-color: var(--lynx-console-color-palette-purple-100);
|
|
682
|
-
}
|
|
683
|
-
|
|
684
|
-
.np-method--DELETE {
|
|
685
|
-
color: var(--lynx-console-color-palette-red-600);
|
|
686
|
-
background-color: var(--lynx-console-color-palette-red-100);
|
|
687
414
|
}
|
|
688
415
|
|
|
689
416
|
.np-statusCode {
|
|
690
417
|
font-size: 0.75rem;
|
|
691
418
|
line-height: 1rem;
|
|
692
|
-
font-weight: var(--lynx-console-font-weight-bold);
|
|
693
|
-
}
|
|
694
|
-
|
|
695
|
-
.np-statusCode--success {
|
|
696
|
-
color: var(--lynx-console-color-palette-green-600);
|
|
697
|
-
}
|
|
698
|
-
|
|
699
|
-
.np-statusCode--error {
|
|
700
|
-
color: var(--lynx-console-color-palette-red-600);
|
|
701
|
-
}
|
|
702
|
-
|
|
703
|
-
.np-statusCode--pending {
|
|
704
|
-
color: var(--lynx-console-color-fg-neutral-subtle);
|
|
705
419
|
}
|
|
706
420
|
|
|
707
421
|
.np-time {
|
|
708
422
|
font-size: 0.75rem;
|
|
709
423
|
line-height: 1rem;
|
|
710
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
711
|
-
color: var(--lynx-console-color-fg-neutral-subtle);
|
|
712
424
|
}
|
|
713
425
|
|
|
714
426
|
.np-url {
|
|
715
427
|
font-size: 0.8125rem;
|
|
716
428
|
line-height: 1.125rem;
|
|
717
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
718
|
-
color: var(--lynx-console-color-fg-neutral);
|
|
719
429
|
word-break: break-all;
|
|
720
430
|
margin-bottom: 4px;
|
|
721
431
|
}
|
|
@@ -723,8 +433,6 @@ text {
|
|
|
723
433
|
.np-path {
|
|
724
434
|
font-size: 0.8125rem;
|
|
725
435
|
line-height: 1.125rem;
|
|
726
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
727
|
-
color: var(--lynx-console-color-fg-neutral);
|
|
728
436
|
word-break: break-all;
|
|
729
437
|
white-space: pre-wrap;
|
|
730
438
|
overflow: visible;
|
|
@@ -734,15 +442,12 @@ text {
|
|
|
734
442
|
.np-details {
|
|
735
443
|
font-size: 0.8125rem;
|
|
736
444
|
line-height: 1.125rem;
|
|
737
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
738
|
-
color: var(--lynx-console-color-fg-neutral-subtle);
|
|
739
445
|
}
|
|
740
446
|
|
|
741
447
|
.np-detailsContainer {
|
|
742
448
|
margin-top: 12px;
|
|
743
449
|
padding-top: 12px;
|
|
744
450
|
border-top-width: 1px;
|
|
745
|
-
border-top-color: var(--lynx-console-color-stroke-neutral-subtle);
|
|
746
451
|
border-top-style: solid;
|
|
747
452
|
}
|
|
748
453
|
|
|
@@ -759,19 +464,9 @@ text {
|
|
|
759
464
|
cursor: pointer;
|
|
760
465
|
}
|
|
761
466
|
|
|
762
|
-
.np-tab--active {
|
|
763
|
-
background-color: var(--lynx-console-color-bg-neutral-weak);
|
|
764
|
-
}
|
|
765
|
-
|
|
766
467
|
.np-tabText {
|
|
767
468
|
font-size: 0.875rem;
|
|
768
469
|
line-height: 1.1875rem;
|
|
769
|
-
font-weight: var(--lynx-console-font-weight-medium);
|
|
770
|
-
color: var(--lynx-console-color-fg-neutral-subtle);
|
|
771
|
-
}
|
|
772
|
-
|
|
773
|
-
.np-tabText--active {
|
|
774
|
-
color: var(--lynx-console-color-fg-neutral);
|
|
775
470
|
}
|
|
776
471
|
|
|
777
472
|
.np-tabContent {
|
|
@@ -785,8 +480,6 @@ text {
|
|
|
785
480
|
.np-detailSectionTitle {
|
|
786
481
|
font-size: 0.8125rem;
|
|
787
482
|
line-height: 1.125rem;
|
|
788
|
-
font-weight: var(--lynx-console-font-weight-bold);
|
|
789
|
-
color: var(--lynx-console-color-fg-neutral);
|
|
790
483
|
margin-bottom: 8px;
|
|
791
484
|
}
|
|
792
485
|
|
|
@@ -801,15 +494,12 @@ text {
|
|
|
801
494
|
flex-direction: row;
|
|
802
495
|
gap: 8px;
|
|
803
496
|
padding: 4px 8px;
|
|
804
|
-
background-color: var(--lynx-console-color-bg-neutral-weak);
|
|
805
497
|
border-radius: 2px;
|
|
806
498
|
}
|
|
807
499
|
|
|
808
500
|
.np-tableKey {
|
|
809
501
|
font-size: 0.8125rem;
|
|
810
502
|
line-height: 1.125rem;
|
|
811
|
-
font-weight: var(--lynx-console-font-weight-bold);
|
|
812
|
-
color: var(--lynx-console-color-fg-neutral-subtle);
|
|
813
503
|
min-width: 70px;
|
|
814
504
|
flex-shrink: 0;
|
|
815
505
|
}
|
|
@@ -817,8 +507,6 @@ text {
|
|
|
817
507
|
.np-tableValue {
|
|
818
508
|
font-size: 0.8125rem;
|
|
819
509
|
line-height: 1.125rem;
|
|
820
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
821
|
-
color: var(--lynx-console-color-fg-neutral);
|
|
822
510
|
word-break: break-all;
|
|
823
511
|
flex: 1;
|
|
824
512
|
}
|
|
@@ -826,10 +514,7 @@ text {
|
|
|
826
514
|
.np-bodyText {
|
|
827
515
|
font-size: 0.8125rem;
|
|
828
516
|
line-height: 1.125rem;
|
|
829
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
830
|
-
color: var(--lynx-console-color-fg-neutral);
|
|
831
517
|
padding: 8px;
|
|
832
|
-
background-color: var(--lynx-console-color-bg-neutral-weak);
|
|
833
518
|
border-radius: 4px;
|
|
834
519
|
word-break: break-all;
|
|
835
520
|
white-space: pre-wrap;
|
|
@@ -838,10 +523,7 @@ text {
|
|
|
838
523
|
.np-errorText {
|
|
839
524
|
font-size: 0.8125rem;
|
|
840
525
|
line-height: 1.125rem;
|
|
841
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
842
|
-
color: var(--lynx-console-color-palette-red-600);
|
|
843
526
|
padding: 8px;
|
|
844
|
-
background-color: var(--lynx-console-color-palette-red-100);
|
|
845
527
|
border-radius: 4px;
|
|
846
528
|
word-break: break-all;
|
|
847
529
|
}
|
|
@@ -849,8 +531,6 @@ text {
|
|
|
849
531
|
.np-emptyText {
|
|
850
532
|
font-size: 0.8125rem;
|
|
851
533
|
line-height: 1.125rem;
|
|
852
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
853
|
-
color: var(--lynx-console-color-fg-disabled);
|
|
854
534
|
text-align: center;
|
|
855
535
|
padding: 16px 0;
|
|
856
536
|
}
|
|
@@ -870,28 +550,22 @@ text {
|
|
|
870
550
|
margin-bottom: 8px;
|
|
871
551
|
padding-bottom: 4px;
|
|
872
552
|
border-bottom-width: 1px;
|
|
873
|
-
border-bottom-color: var(--lynx-console-color-stroke-neutral-subtle);
|
|
874
553
|
border-bottom-style: solid;
|
|
875
554
|
}
|
|
876
555
|
|
|
877
556
|
.pp-count {
|
|
878
557
|
font-size: 0.8125rem;
|
|
879
558
|
line-height: 1.125rem;
|
|
880
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
881
|
-
color: var(--lynx-console-color-fg-neutral-subtle);
|
|
882
559
|
}
|
|
883
560
|
|
|
884
561
|
.pp-clearButton {
|
|
885
562
|
padding: 3px 6px;
|
|
886
|
-
background-color: var(--lynx-console-color-bg-neutral-weak);
|
|
887
563
|
border-radius: 4px;
|
|
888
564
|
}
|
|
889
565
|
|
|
890
566
|
.pp-clearButtonText {
|
|
891
567
|
font-size: 0.8125rem;
|
|
892
568
|
line-height: 1.125rem;
|
|
893
|
-
font-weight: var(--lynx-console-font-weight-medium);
|
|
894
|
-
color: var(--lynx-console-color-fg-neutral-muted);
|
|
895
569
|
}
|
|
896
570
|
|
|
897
571
|
.pp-list {
|
|
@@ -908,14 +582,11 @@ text {
|
|
|
908
582
|
.pp-placeholderText {
|
|
909
583
|
font-size: 0.875rem;
|
|
910
584
|
line-height: 1.1875rem;
|
|
911
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
912
|
-
color: var(--lynx-console-color-fg-disabled);
|
|
913
585
|
}
|
|
914
586
|
|
|
915
587
|
.pp-item {
|
|
916
588
|
padding: 8px;
|
|
917
589
|
border-bottom-width: 1px;
|
|
918
|
-
border-bottom-color: var(--lynx-console-color-stroke-neutral-weak);
|
|
919
590
|
border-bottom-style: solid;
|
|
920
591
|
}
|
|
921
592
|
|
|
@@ -930,45 +601,18 @@ text {
|
|
|
930
601
|
.pp-entryType {
|
|
931
602
|
font-size: 0.75rem;
|
|
932
603
|
line-height: 1rem;
|
|
933
|
-
font-weight: var(--lynx-console-font-weight-bold);
|
|
934
604
|
padding: 0 6px;
|
|
935
605
|
border-radius: 2px;
|
|
936
|
-
color: var(--lynx-console-color-fg-neutral);
|
|
937
|
-
background-color: var(--lynx-console-color-bg-neutral-weak);
|
|
938
|
-
}
|
|
939
|
-
|
|
940
|
-
.pp-entryType--init {
|
|
941
|
-
color: var(--lynx-console-color-palette-blue-600);
|
|
942
|
-
background-color: var(--lynx-console-color-palette-blue-100);
|
|
943
|
-
}
|
|
944
|
-
|
|
945
|
-
.pp-entryType--metric {
|
|
946
|
-
color: var(--lynx-console-color-palette-green-600);
|
|
947
|
-
background-color: var(--lynx-console-color-palette-green-100);
|
|
948
|
-
}
|
|
949
|
-
|
|
950
|
-
.pp-entryType--pipeline {
|
|
951
|
-
color: var(--lynx-console-color-palette-purple-600);
|
|
952
|
-
background-color: var(--lynx-console-color-palette-purple-100);
|
|
953
|
-
}
|
|
954
|
-
|
|
955
|
-
.pp-entryType--resource {
|
|
956
|
-
color: var(--lynx-console-color-palette-yellow-600);
|
|
957
|
-
background-color: var(--lynx-console-color-palette-yellow-100);
|
|
958
606
|
}
|
|
959
607
|
|
|
960
608
|
.pp-entryName {
|
|
961
609
|
font-size: 0.75rem;
|
|
962
610
|
line-height: 1rem;
|
|
963
|
-
font-weight: var(--lynx-console-font-weight-medium);
|
|
964
|
-
color: var(--lynx-console-color-fg-neutral);
|
|
965
611
|
}
|
|
966
612
|
|
|
967
613
|
.pp-timestamp {
|
|
968
614
|
font-size: 0.75rem;
|
|
969
615
|
line-height: 1rem;
|
|
970
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
971
|
-
color: var(--lynx-console-color-fg-neutral-subtle);
|
|
972
616
|
}
|
|
973
617
|
|
|
974
618
|
.pp-fcpMetricHeader {
|
|
@@ -981,9 +625,6 @@ text {
|
|
|
981
625
|
.pp-fcpHighlight {
|
|
982
626
|
font-size: 0.8125rem;
|
|
983
627
|
line-height: 1.125rem;
|
|
984
|
-
font-weight: var(--lynx-console-font-weight-bold);
|
|
985
|
-
color: var(--lynx-console-color-palette-blue-600);
|
|
986
|
-
background-color: var(--lynx-console-color-palette-blue-100);
|
|
987
628
|
padding: 4px 8px;
|
|
988
629
|
border-radius: 4px;
|
|
989
630
|
margin-top: 4px;
|
|
@@ -1002,15 +643,12 @@ text {
|
|
|
1002
643
|
align-items: center;
|
|
1003
644
|
gap: 8px;
|
|
1004
645
|
padding: 4px 8px;
|
|
1005
|
-
background-color: var(--lynx-console-color-bg-neutral-weak);
|
|
1006
646
|
border-radius: 2px;
|
|
1007
647
|
}
|
|
1008
648
|
|
|
1009
649
|
.pp-metricName {
|
|
1010
650
|
font-size: 0.8125rem;
|
|
1011
651
|
line-height: 1.125rem;
|
|
1012
|
-
font-weight: var(--lynx-console-font-weight-medium);
|
|
1013
|
-
color: var(--lynx-console-color-fg-neutral-subtle);
|
|
1014
652
|
min-width: 100px;
|
|
1015
653
|
flex-shrink: 0;
|
|
1016
654
|
}
|
|
@@ -1018,8 +656,6 @@ text {
|
|
|
1018
656
|
.pp-metricValue {
|
|
1019
657
|
font-size: 0.8125rem;
|
|
1020
658
|
line-height: 1.125rem;
|
|
1021
|
-
font-weight: var(--lynx-console-font-weight-bold);
|
|
1022
|
-
color: var(--lynx-console-color-palette-green-600);
|
|
1023
659
|
flex: 1;
|
|
1024
660
|
}
|
|
1025
661
|
|
|
@@ -1039,13 +675,10 @@ text {
|
|
|
1039
675
|
.pp-fcpSectionDescription {
|
|
1040
676
|
font-size: 0.8125rem;
|
|
1041
677
|
line-height: 1.125rem;
|
|
1042
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
1043
|
-
color: var(--lynx-console-color-fg-neutral-subtle);
|
|
1044
678
|
margin-bottom: 4px;
|
|
1045
679
|
}
|
|
1046
680
|
|
|
1047
681
|
.pp-fcpMetric {
|
|
1048
|
-
background-color: var(--lynx-console-color-bg-layer-default);
|
|
1049
682
|
border-radius: 4px;
|
|
1050
683
|
display: flex;
|
|
1051
684
|
flex-direction: column;
|
|
@@ -1055,51 +688,38 @@ text {
|
|
|
1055
688
|
.pp-fcpMetricName {
|
|
1056
689
|
font-size: 0.75rem;
|
|
1057
690
|
line-height: 1rem;
|
|
1058
|
-
font-weight: var(--lynx-console-font-weight-bold);
|
|
1059
|
-
color: var(--lynx-console-color-fg-neutral);
|
|
1060
691
|
}
|
|
1061
692
|
|
|
1062
693
|
.pp-fcpMetricValue {
|
|
1063
694
|
font-size: 0.6875rem;
|
|
1064
695
|
line-height: 0.9375rem;
|
|
1065
|
-
font-weight: var(--lynx-console-font-weight-bold);
|
|
1066
|
-
color: var(--lynx-console-color-palette-blue-600);
|
|
1067
696
|
}
|
|
1068
697
|
|
|
1069
698
|
.pp-fcpMetricDescription {
|
|
1070
699
|
font-size: 0.8125rem;
|
|
1071
700
|
line-height: 1.125rem;
|
|
1072
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
1073
|
-
color: var(--lynx-console-color-fg-neutral-subtle);
|
|
1074
701
|
}
|
|
1075
702
|
|
|
1076
703
|
.pp-fcpMetricFormula {
|
|
1077
704
|
font-size: 0.875rem;
|
|
1078
705
|
line-height: 1.1875rem;
|
|
1079
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
1080
|
-
color: var(--lynx-console-color-fg-disabled);
|
|
1081
706
|
font-family: monospace;
|
|
1082
707
|
}
|
|
1083
708
|
|
|
1084
709
|
.pp-rawEntrySection {
|
|
1085
710
|
padding: 12px;
|
|
1086
|
-
background-color: var(--lynx-console-color-bg-neutral-weak);
|
|
1087
711
|
border-radius: 4px;
|
|
1088
712
|
}
|
|
1089
713
|
|
|
1090
714
|
.pp-detailTitle {
|
|
1091
715
|
font-size: 0.8125rem;
|
|
1092
716
|
line-height: 1.125rem;
|
|
1093
|
-
font-weight: var(--lynx-console-font-weight-bold);
|
|
1094
|
-
color: var(--lynx-console-color-fg-neutral);
|
|
1095
717
|
margin-bottom: 8px;
|
|
1096
718
|
}
|
|
1097
719
|
|
|
1098
720
|
.pp-rawEntry {
|
|
1099
721
|
font-size: 0.8125rem;
|
|
1100
722
|
line-height: 1.125rem;
|
|
1101
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
1102
|
-
color: var(--lynx-console-color-fg-neutral-subtle);
|
|
1103
723
|
font-family: monospace;
|
|
1104
724
|
white-space: pre-wrap;
|
|
1105
725
|
word-break: break-all;
|
|
@@ -1113,12 +733,10 @@ text {
|
|
|
1113
733
|
|
|
1114
734
|
.tabs-header {
|
|
1115
735
|
display: flex;
|
|
1116
|
-
box-shadow: inset 0 -1px 0 0 var(--lynx-console-color-stroke-neutral-subtle);
|
|
1117
736
|
}
|
|
1118
737
|
|
|
1119
738
|
.tabs-triggerButton {
|
|
1120
739
|
flex: 1;
|
|
1121
|
-
color: var(--lynx-console-color-fg-neutral-subtle);
|
|
1122
740
|
display: flex;
|
|
1123
741
|
justify-content: center;
|
|
1124
742
|
align-items: center;
|
|
@@ -1129,12 +747,6 @@ text {
|
|
|
1129
747
|
.tabs-triggerButtonText {
|
|
1130
748
|
font-size: 1rem;
|
|
1131
749
|
line-height: 1.375rem;
|
|
1132
|
-
font-weight: var(--lynx-console-font-weight-bold);
|
|
1133
|
-
color: var(--lynx-console-color-fg-neutral-subtle);
|
|
1134
|
-
}
|
|
1135
|
-
|
|
1136
|
-
.tabs-triggerButtonText--active {
|
|
1137
|
-
color: var(--lynx-console-color-fg-neutral);
|
|
1138
750
|
}
|
|
1139
751
|
|
|
1140
752
|
.tabs-triggerButtonText--t4 {
|
|
@@ -1168,7 +780,6 @@ text {
|
|
|
1168
780
|
}
|
|
1169
781
|
|
|
1170
782
|
.tabs-triggerIndicatorLine {
|
|
1171
|
-
background-color: var(--lynx-console-color-fg-neutral);
|
|
1172
783
|
width: 100%;
|
|
1173
784
|
height: 2px;
|
|
1174
785
|
}
|
|
@@ -1192,7 +803,6 @@ text {
|
|
|
1192
803
|
align-items: center;
|
|
1193
804
|
gap: 8px;
|
|
1194
805
|
overflow: visible;
|
|
1195
|
-
transition: transform var(--lynx-console-duration-d4) cubic-bezier(0.4, 0, 0.2, 1);
|
|
1196
806
|
}
|
|
1197
807
|
|
|
1198
808
|
.fb-button {
|
|
@@ -1203,7 +813,6 @@ text {
|
|
|
1203
813
|
padding-top: 4px;
|
|
1204
814
|
padding-bottom: 4px;
|
|
1205
815
|
border-radius: 12px;
|
|
1206
|
-
background-color: var(--lynx-console-color-palette-green-600);
|
|
1207
816
|
display: flex;
|
|
1208
817
|
flex-direction: column;
|
|
1209
818
|
align-items: center;
|
|
@@ -1225,16 +834,12 @@ text {
|
|
|
1225
834
|
.fb-title {
|
|
1226
835
|
font-size: 0.875rem;
|
|
1227
836
|
line-height: 1.1875rem;
|
|
1228
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
1229
|
-
color: var(--lynx-console-color-palette-static-white);
|
|
1230
837
|
text-align: center;
|
|
1231
838
|
}
|
|
1232
839
|
|
|
1233
840
|
.fb-subtitle {
|
|
1234
841
|
font-size: 0.8125rem;
|
|
1235
842
|
line-height: 1.125rem;
|
|
1236
|
-
font-weight: var(--lynx-console-font-weight-regular);
|
|
1237
|
-
color: var(--lynx-console-color-palette-static-white);
|
|
1238
843
|
text-align: center;
|
|
1239
844
|
}
|
|
1240
845
|
|
|
@@ -1243,7 +848,6 @@ text {
|
|
|
1243
848
|
width: 32px;
|
|
1244
849
|
height: 32px;
|
|
1245
850
|
border-radius: 16px;
|
|
1246
|
-
background-color: var(--lynx-console-color-palette-green-600);
|
|
1247
851
|
display: flex;
|
|
1248
852
|
align-items: center;
|
|
1249
853
|
justify-content: center;
|
|
@@ -1254,7 +858,6 @@ text {
|
|
|
1254
858
|
font-size: 20px;
|
|
1255
859
|
line-height: 32px;
|
|
1256
860
|
margin-bottom: 5px;
|
|
1257
|
-
color: var(--lynx-console-color-palette-static-white);
|
|
1258
861
|
text-align: center;
|
|
1259
862
|
}
|
|
1260
863
|
|