@sourcegraph/cody-web 0.7.7 → 0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{agent.worker-BZzA02C_.mjs → agent.worker-CpzEAjEs.mjs} +5621 -6158
- package/dist/agent.worker.js +2 -2
- package/dist/{browser-hDxNMh5y.mjs → browser-7p2xtDk0.mjs} +7051 -6548
- package/dist/{git-log-PGCFF8k9.mjs → git-log-C_pMreBK.mjs} +2 -2
- package/dist/{index-CoR5ltqq.mjs → index-BY36TK4z.mjs} +36 -8
- package/dist/index.js +2541 -649
- package/dist/lib/agent/agent.client.d.ts.map +1 -1
- package/dist/{shell-CWTEC0Ll.mjs → shell-Ct82N9eV.mjs} +4 -3
- package/dist/style.css +654 -1098
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/util-DHv3aBr3.mjs +28 -0
- package/package.json +2 -2
package/dist/style.css
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
.
|
|
1
|
+
._editor_s4gjm_1 {
|
|
2
2
|
position: relative;
|
|
3
3
|
}
|
|
4
4
|
|
|
5
5
|
/* ContentEditable */
|
|
6
|
-
._content-
|
|
6
|
+
._content-editable_s4gjm_6 {
|
|
7
7
|
border: 0;
|
|
8
8
|
display: block;
|
|
9
9
|
position: relative;
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
/* Placeholder */
|
|
14
|
-
.
|
|
14
|
+
._placeholder_s4gjm_14 {
|
|
15
15
|
opacity: 0.6;
|
|
16
16
|
overflow: hidden;
|
|
17
17
|
position: absolute;
|
|
@@ -26,37 +26,39 @@
|
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
/* Theme */
|
|
29
|
-
._theme-
|
|
29
|
+
._theme-paragraph_s4gjm_29 {
|
|
30
30
|
margin: 0;
|
|
31
31
|
}
|
|
32
32
|
|
|
33
|
-
|
|
34
|
-
padding: 0.5rem;
|
|
35
|
-
}
|
|
33
|
+
|
|
36
34
|
:root {
|
|
37
35
|
--description-font-size: 0.9em; /* match VS Code quickpick description */
|
|
38
36
|
}
|
|
39
37
|
|
|
40
|
-
.
|
|
38
|
+
._title_1nc1q_5, ._description_1nc1q_5, ._warning_1nc1q_5 {
|
|
41
39
|
white-space: nowrap;
|
|
42
40
|
text-overflow: ellipsis;
|
|
43
41
|
overflow: hidden;
|
|
44
42
|
}
|
|
45
43
|
|
|
46
|
-
.
|
|
44
|
+
._row_1nc1q_11 {
|
|
47
45
|
display: flex;
|
|
48
46
|
align-items: center;
|
|
49
47
|
gap: 0.35rem;
|
|
50
48
|
}
|
|
51
49
|
|
|
52
|
-
.
|
|
50
|
+
._description_1nc1q_5, ._warning_1nc1q_5 {
|
|
53
51
|
font-size: var(--description-font-size);
|
|
54
52
|
opacity: 0.7;
|
|
55
53
|
}
|
|
56
54
|
|
|
57
|
-
.
|
|
55
|
+
._description_1nc1q_5 {
|
|
58
56
|
flex: 1;
|
|
59
57
|
}
|
|
58
|
+
|
|
59
|
+
._title_1nc1q_5:hover {
|
|
60
|
+
direction: rtl;
|
|
61
|
+
}
|
|
60
62
|
._context-item-mention-node_1eamp_1 {
|
|
61
63
|
--mention-color-opacity: 70%;
|
|
62
64
|
color: color-mix(in lch, var(--vscode-inputOption-activeForeground) calc(1.2*var(--mention-color-opacity)), transparent);
|
|
@@ -259,6 +261,257 @@ kbd {
|
|
|
259
261
|
._excluded_kr5rq_7 {
|
|
260
262
|
text-decoration: line-through !important;
|
|
261
263
|
}
|
|
264
|
+
:root {
|
|
265
|
+
--code-font-size: #{(12/14)}em;
|
|
266
|
+
--code-font-family: sfmono-regular, consolas, menlo, dejavu sans mono, monospace;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
._code_1suzz_6 {
|
|
270
|
+
white-space: pre;
|
|
271
|
+
line-height: 1rem;
|
|
272
|
+
font-size: var(--code-font-size);
|
|
273
|
+
font-family: var(--code-font-family);
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
._small_1suzz_13 {
|
|
277
|
+
font-size: 0.75rem;
|
|
278
|
+
line-height: 1rem;
|
|
279
|
+
|
|
280
|
+
/* Bootstrap applies `font-weight: 400;` to `small` element,
|
|
281
|
+
but we want to control `font-weight` only with `strong` or `.font-weight-medium`. */
|
|
282
|
+
font-weight: inherit;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
._code-excerpt_1gr2h_1 .line,
|
|
286
|
+
._code-excerpt_1gr2h_1 .code {
|
|
287
|
+
/* stylelint-disable-next-line declaration-property-unit-allowed-list */
|
|
288
|
+
height: 18px;
|
|
289
|
+
vertical-align: middle;
|
|
290
|
+
padding: 0;
|
|
291
|
+
}
|
|
292
|
+
._code-excerpt_1gr2h_1 .line {
|
|
293
|
+
min-width: 1.5rem;
|
|
294
|
+
text-align: right;
|
|
295
|
+
user-select: none;
|
|
296
|
+
}
|
|
297
|
+
._code-excerpt_1gr2h_1 .line::before {
|
|
298
|
+
/* draw line number with css so it cannot be copied to clipboard */
|
|
299
|
+
content: attr(data-line);
|
|
300
|
+
color: var(--cody-chat-code-text-muted);
|
|
301
|
+
}
|
|
302
|
+
._code-excerpt_1gr2h_1 .code {
|
|
303
|
+
white-space: pre;
|
|
304
|
+
padding-left: 1rem;
|
|
305
|
+
}
|
|
306
|
+
._code-excerpt-error_1gr2h_1 {
|
|
307
|
+
width: 100%;
|
|
308
|
+
}
|
|
309
|
+
._code-excerpt-alert_1gr2h_1 {
|
|
310
|
+
margin-bottom: 0;
|
|
311
|
+
color: #c92a2a;
|
|
312
|
+
}
|
|
313
|
+
._code-excerpt_1gr2h_1 .hl-text {
|
|
314
|
+
color: #657b83;
|
|
315
|
+
}
|
|
316
|
+
:root {
|
|
317
|
+
--cody-chat-code-background: var(--vscode-textCodeBlock-background);
|
|
318
|
+
--cody-chat-code-header-background: var(--vscode-titleBar-inactiveBackground);
|
|
319
|
+
--cody-chat-code-subtle-background: var(--vscode-titleBar-inactiveBackground);
|
|
320
|
+
--cody-chat-code-border-color: var(--vscode-widget-border);
|
|
321
|
+
--cody-chat-code-text-muted: var(--vscode-input-placeholderForeground);
|
|
322
|
+
--cody-chat-code-focus-border: var(--vscode-focusBorder);
|
|
323
|
+
|
|
324
|
+
--mark-bg: #f8e688;
|
|
325
|
+
--text-muted-highlighted: #566880;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
._result-container_3o126_13 {
|
|
329
|
+
contain: paint;
|
|
330
|
+
border-radius: 4px;
|
|
331
|
+
border: solid 1px var(--cody-chat-code-border-color);
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
._result-container_3o126_13 .match-highlight {
|
|
335
|
+
color: var(--text-muted-highlighted);
|
|
336
|
+
background-color: var(--mark-bg);
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
._result-container_3o126_13 .sr-only {
|
|
340
|
+
position: absolute;
|
|
341
|
+
width: 0.0625rem;
|
|
342
|
+
height: 0.0625rem;
|
|
343
|
+
padding: 0;
|
|
344
|
+
margin: -0.0625rem;
|
|
345
|
+
overflow: hidden;
|
|
346
|
+
clip: rect(0, 0, 0, 0);
|
|
347
|
+
white-space: nowrap;
|
|
348
|
+
border: 0;
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
._header_3o126_36 {
|
|
352
|
+
padding: 0.45rem 0.5rem;
|
|
353
|
+
display: flex;
|
|
354
|
+
align-items: center;
|
|
355
|
+
flex-wrap: wrap;
|
|
356
|
+
|
|
357
|
+
position: sticky;
|
|
358
|
+
top: 0;
|
|
359
|
+
|
|
360
|
+
/* Show on top of search result contents */
|
|
361
|
+
z-index: 1;
|
|
362
|
+
|
|
363
|
+
border-bottom: 1px solid var(--cody-chat-code-border-color);
|
|
364
|
+
background-color: var(--cody-chat-code-header-background);
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
._header-title_3o126_1 {
|
|
368
|
+
flex: 1 1 auto;
|
|
369
|
+
display: flex;
|
|
370
|
+
flex-wrap: wrap;
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
._result_3o126_13 {
|
|
374
|
+
background-color: var(--cody-chat-code-background);
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
._search-result-match_3o126_62 {
|
|
378
|
+
/* Don't use cascading link style */
|
|
379
|
+
text-decoration: none;
|
|
380
|
+
display: flex;
|
|
381
|
+
align-items: flex-start;
|
|
382
|
+
overflow-x: auto;
|
|
383
|
+
overflow-y: hidden;
|
|
384
|
+
position: relative;
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
._horizontal-divider-between_3o126_72:not(:last-child) {
|
|
388
|
+
border-bottom: 1px solid var(--cody-chat-code-border-color);
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
._focusable-block_3o126_78:focus-visible {
|
|
392
|
+
box-shadow: inset 0 0 0 1px var(--cody-chat-code-focus-border);
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
._clickable_3o126_84 {
|
|
396
|
+
cursor: pointer;
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
._clickable_3o126_84:hover {
|
|
400
|
+
text-decoration: none;
|
|
401
|
+
background-color: var(--cody-chat-code-subtle-background);
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
._divider-between_3o126_92 > *:not(:last-child)::after {
|
|
405
|
+
content: ' ';
|
|
406
|
+
height: 1rem;
|
|
407
|
+
margin: 0 0.75rem;
|
|
408
|
+
border-right: 1px solid var(--cody-chat-code-border-color);
|
|
409
|
+
display: block;
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
._divider-vertical_3o126_102 {
|
|
413
|
+
border-bottom: 1px solid var(--cody-chat-code-border-color);
|
|
414
|
+
width: 100%;
|
|
415
|
+
margin: 0.5rem 0;
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
._divider_3o126_92 {
|
|
419
|
+
border-right: 1px solid var(--cody-chat-code-border-color);
|
|
420
|
+
height: 1rem;
|
|
421
|
+
margin: 0 0.5rem;
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
._title_3o126_114 {
|
|
425
|
+
display: flex;
|
|
426
|
+
align-items: center;
|
|
427
|
+
flex-grow: 1;
|
|
428
|
+
min-width: 0;
|
|
429
|
+
flex-wrap: wrap;
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
._title-inner_3o126_122 {
|
|
433
|
+
overflow-wrap: anywhere;
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
._toggle-matches-button_3o126_126 {
|
|
437
|
+
width: 100%;
|
|
438
|
+
text-align: left;
|
|
439
|
+
border: none;
|
|
440
|
+
padding: 0.25rem 0.5rem;
|
|
441
|
+
border-top: 1px solid var(--cody-chat-code-border-color);
|
|
442
|
+
background-color: var(--cody-chat-code-background);
|
|
443
|
+
color: var(--cody-chat-code-text-muted);
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
._toggle-matches-button_3o126_126:hover {
|
|
447
|
+
color: inherit;
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
._toggle-matches-button--expanded_3o126_1 {
|
|
451
|
+
position: sticky;
|
|
452
|
+
bottom: 0;
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
._toggle-matches-button-text_3o126_1 {
|
|
456
|
+
margin-left: 0.125rem;
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
._chunk_1q5wi_1 {
|
|
460
|
+
position: relative;
|
|
461
|
+
overflow-x: auto;
|
|
462
|
+
padding: 0.25rem 0.5rem;
|
|
463
|
+
background-color: var(--cody-chat-code-background);
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
._chunk_1q5wi_1:first-child {
|
|
467
|
+
padding-top: 0.5rem;
|
|
468
|
+
}
|
|
469
|
+
|
|
470
|
+
._chunk_1q5wi_1:last-child {
|
|
471
|
+
padding-bottom: 0.5rem;
|
|
472
|
+
}
|
|
473
|
+
._root_15z33_1 {
|
|
474
|
+
display: flex;
|
|
475
|
+
flex-direction: column;
|
|
476
|
+
gap: 0.25rem;
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
._link-container_15z33_7 {
|
|
480
|
+
display: inline-flex;
|
|
481
|
+
padding: 2px 4px 2px 2px;
|
|
482
|
+
min-width: 0;
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
._header_15z33_13 {
|
|
486
|
+
display: flex;
|
|
487
|
+
gap: 0.25rem;
|
|
488
|
+
align-items: center;
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
._context-item-link_15z33_19 {
|
|
492
|
+
background: none;
|
|
493
|
+
border: none;
|
|
494
|
+
color: var(--vscode-textLink-foreground);
|
|
495
|
+
font-size: inherit;
|
|
496
|
+
padding: 0;
|
|
497
|
+
margin: 0;
|
|
498
|
+
text-align: left;
|
|
499
|
+
font-weight: normal;
|
|
500
|
+
display: flex;
|
|
501
|
+
align-items: center;
|
|
502
|
+
gap: 0.125rem;
|
|
503
|
+
overflow: hidden;
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
/* In light high contrast, --vscode-textLink-foreground provides little
|
|
507
|
+
contrast; instead inherit the --code-foreground color from the container. */
|
|
508
|
+
body[data-vscode-theme-kind='vscode-high-contrast-light'] ._context-item-link_15z33_19 {
|
|
509
|
+
color: inherit;
|
|
510
|
+
}
|
|
511
|
+
|
|
512
|
+
._code-block_15z33_40 {
|
|
513
|
+
margin-bottom: 0.25rem;
|
|
514
|
+
}
|
|
262
515
|
._dots-holder_10c80_1 {
|
|
263
516
|
display: flex;
|
|
264
517
|
gap: 0.2rem;
|
|
@@ -690,37 +943,16 @@ body[data-vscode-theme-kind='vscode-light'] ._content_1kf9a_116 pre > code {
|
|
|
690
943
|
align-items: center;
|
|
691
944
|
gap: calc(var(--spacing) / 4);
|
|
692
945
|
}
|
|
693
|
-
._context-
|
|
946
|
+
._context-item_911i8_1 {
|
|
694
947
|
display: inline-flex;
|
|
695
948
|
padding: 2px 4px 2px 2px;
|
|
696
949
|
}
|
|
697
950
|
|
|
698
|
-
._context-item-
|
|
951
|
+
._context-item-metadata_911i8_6 {
|
|
699
952
|
color: var(--vscode-disabledForeground);
|
|
700
953
|
padding-left: 0.1rem;
|
|
701
954
|
text-wrap: nowrap;
|
|
702
955
|
}
|
|
703
|
-
|
|
704
|
-
._context-item-link_13e3r_12 {
|
|
705
|
-
background: none;
|
|
706
|
-
border: none;
|
|
707
|
-
color: var(--vscode-textLink-foreground);
|
|
708
|
-
font-size: inherit;
|
|
709
|
-
padding: 0;
|
|
710
|
-
margin: 0;
|
|
711
|
-
text-align: left;
|
|
712
|
-
font-weight: normal;
|
|
713
|
-
display: flex;
|
|
714
|
-
align-items: center;
|
|
715
|
-
gap: 0.125rem;
|
|
716
|
-
overflow: hidden;
|
|
717
|
-
}
|
|
718
|
-
|
|
719
|
-
/* In light high contrast, --vscode-textLink-foreground provides little
|
|
720
|
-
contrast; instead inherit the --code-foreground color from the container. */
|
|
721
|
-
body[data-vscode-theme-kind='vscode-high-contrast-light'] ._context-item-link_13e3r_12 {
|
|
722
|
-
color: inherit;
|
|
723
|
-
}
|
|
724
956
|
._user-avatar_tzwlo_1 {
|
|
725
957
|
isolation: isolate;
|
|
726
958
|
display: inline-flex;
|
|
@@ -926,6 +1158,12 @@ button > ._model-title-with-icon_rn0uf_1 ._model-provider_rn0uf_17,
|
|
|
926
1158
|
button > ._model-title-with-icon_rn0uf_1 ._badge_rn0uf_35 {
|
|
927
1159
|
display: none;
|
|
928
1160
|
}
|
|
1161
|
+
._info-message_6yx2w_1 {
|
|
1162
|
+
--mention-color-opacity: 70%;
|
|
1163
|
+
|
|
1164
|
+
border: 1px solid color-mix(in lch, var(--vscode-inputOption-activeBackground) calc(1.2* var(--mention-color-opacity)), transparent);
|
|
1165
|
+
background-color: color-mix(in lch, var(--vscode-inputOption-activeBackground) var(--mention-color-opacity), transparent);
|
|
1166
|
+
}
|
|
929
1167
|
._chat-disabled_rc7no_1 {
|
|
930
1168
|
text-align: center;
|
|
931
1169
|
padding: 0.5rem 0.25rem;
|
|
@@ -1060,692 +1298,6 @@ not include this in the cody web package since highlights styles is already
|
|
|
1060
1298
|
imported in Sourcegraph shell.
|
|
1061
1299
|
*/
|
|
1062
1300
|
/*@import url('../../../vscode/webviews/utils/highlight.css');*/
|
|
1063
|
-
:root {
|
|
1064
|
-
--vscode-actionBar-toggledBackground: #383a49;
|
|
1065
|
-
--vscode-activityBar-activeBorder: #0078d4;
|
|
1066
|
-
--vscode-activityBar-background: #181818;
|
|
1067
|
-
--vscode-activityBar-border: #2b2b2b;
|
|
1068
|
-
--vscode-activityBar-dropBorder: #d7d7d7;
|
|
1069
|
-
--vscode-activityBar-foreground: #d7d7d7;
|
|
1070
|
-
--vscode-activityBar-inactiveForeground: #868686;
|
|
1071
|
-
--vscode-activityBarBadge-background: #0078d4;
|
|
1072
|
-
--vscode-activityBarBadge-foreground: #ffffff;
|
|
1073
|
-
--vscode-activityBarTop-activeBorder: #e7e7e7;
|
|
1074
|
-
--vscode-activityBarTop-dropBorder: #e7e7e7;
|
|
1075
|
-
--vscode-activityBarTop-foreground: #e7e7e7;
|
|
1076
|
-
--vscode-activityBarTop-inactiveForeground: rgba(231, 231, 231, 0.6);
|
|
1077
|
-
--vscode-badge-background: #616161;
|
|
1078
|
-
--vscode-badge-foreground: #f8f8f8;
|
|
1079
|
-
--vscode-banner-background: #04395e;
|
|
1080
|
-
--vscode-banner-foreground: #ffffff;
|
|
1081
|
-
--vscode-banner-iconForeground: #3794ff;
|
|
1082
|
-
--vscode-breadcrumb-activeSelectionForeground: #e0e0e0;
|
|
1083
|
-
--vscode-breadcrumb-background: #1f1f1f;
|
|
1084
|
-
--vscode-breadcrumb-focusForeground: #e0e0e0;
|
|
1085
|
-
--vscode-breadcrumb-foreground: rgba(204, 204, 204, 0.8);
|
|
1086
|
-
--vscode-breadcrumbPicker-background: #202020;
|
|
1087
|
-
--vscode-button-background: #0078d4;
|
|
1088
|
-
--vscode-button-border: rgba(255, 255, 255, 0.07);
|
|
1089
|
-
--vscode-button-foreground: #ffffff;
|
|
1090
|
-
--vscode-button-hoverBackground: #026ec1;
|
|
1091
|
-
--vscode-button-secondaryBackground: #313131;
|
|
1092
|
-
--vscode-button-secondaryForeground: #cccccc;
|
|
1093
|
-
--vscode-button-secondaryHoverBackground: #3c3c3c;
|
|
1094
|
-
--vscode-button-separator: rgba(255, 255, 255, 0.4);
|
|
1095
|
-
--vscode-charts-blue: #3794ff;
|
|
1096
|
-
--vscode-charts-foreground: #cccccc;
|
|
1097
|
-
--vscode-charts-green: #89d185;
|
|
1098
|
-
--vscode-charts-lines: rgba(204, 204, 204, 0.5);
|
|
1099
|
-
--vscode-charts-orange: #d18616;
|
|
1100
|
-
--vscode-charts-purple: #b180d7;
|
|
1101
|
-
--vscode-charts-red: #f14c4c;
|
|
1102
|
-
--vscode-charts-yellow: #cca700;
|
|
1103
|
-
--vscode-chat-avatarBackground: #1f1f1f;
|
|
1104
|
-
--vscode-chat-avatarForeground: #cccccc;
|
|
1105
|
-
--vscode-chat-requestBackground: rgba(31, 31, 31, 0.62);
|
|
1106
|
-
--vscode-chat-requestBorder: rgba(255, 255, 255, 0.1);
|
|
1107
|
-
--vscode-chat-slashCommandBackground: #34414b;
|
|
1108
|
-
--vscode-chat-slashCommandForeground: #40a6ff;
|
|
1109
|
-
--vscode-checkbox-background: #313131;
|
|
1110
|
-
--vscode-checkbox-border: #3c3c3c;
|
|
1111
|
-
--vscode-checkbox-foreground: #cccccc;
|
|
1112
|
-
--vscode-checkbox-selectBackground: #202020;
|
|
1113
|
-
--vscode-checkbox-selectBorder: #cccccc;
|
|
1114
|
-
--vscode-commandCenter-activeBackground: rgba(255, 255, 255, 0.08);
|
|
1115
|
-
--vscode-commandCenter-activeBorder: rgba(204, 204, 204, 0.3);
|
|
1116
|
-
--vscode-commandCenter-activeForeground: #cccccc;
|
|
1117
|
-
--vscode-commandCenter-background: rgba(255, 255, 255, 0.05);
|
|
1118
|
-
--vscode-commandCenter-border: rgba(204, 204, 204, 0.2);
|
|
1119
|
-
--vscode-commandCenter-debuggingBackground: rgba(0, 120, 212, 0.26);
|
|
1120
|
-
--vscode-commandCenter-foreground: #cccccc;
|
|
1121
|
-
--vscode-commandCenter-inactiveBorder: rgba(157, 157, 157, 0.25);
|
|
1122
|
-
--vscode-commandCenter-inactiveForeground: #9d9d9d;
|
|
1123
|
-
--vscode-commentsView-resolvedIcon: rgba(204, 204, 204, 0.5);
|
|
1124
|
-
--vscode-commentsView-unresolvedIcon: #0078d4;
|
|
1125
|
-
--vscode-debugConsole-errorForeground: #f85149;
|
|
1126
|
-
--vscode-debugConsole-infoForeground: #3794ff;
|
|
1127
|
-
--vscode-debugConsole-sourceForeground: #cccccc;
|
|
1128
|
-
--vscode-debugConsole-warningForeground: #cca700;
|
|
1129
|
-
--vscode-debugConsoleInputIcon-foreground: #cccccc;
|
|
1130
|
-
--vscode-debugExceptionWidget-background: #420b0d;
|
|
1131
|
-
--vscode-debugExceptionWidget-border: #a31515;
|
|
1132
|
-
--vscode-debugIcon-breakpointCurrentStackframeForeground: #ffcc00;
|
|
1133
|
-
--vscode-debugIcon-breakpointDisabledForeground: #848484;
|
|
1134
|
-
--vscode-debugIcon-breakpointForeground: #e51400;
|
|
1135
|
-
--vscode-debugIcon-breakpointStackframeForeground: #89d185;
|
|
1136
|
-
--vscode-debugIcon-breakpointUnverifiedForeground: #848484;
|
|
1137
|
-
--vscode-debugIcon-continueForeground: #75beff;
|
|
1138
|
-
--vscode-debugIcon-disconnectForeground: #f48771;
|
|
1139
|
-
--vscode-debugIcon-pauseForeground: #75beff;
|
|
1140
|
-
--vscode-debugIcon-restartForeground: #89d185;
|
|
1141
|
-
--vscode-debugIcon-startForeground: #89d185;
|
|
1142
|
-
--vscode-debugIcon-stepBackForeground: #75beff;
|
|
1143
|
-
--vscode-debugIcon-stepIntoForeground: #75beff;
|
|
1144
|
-
--vscode-debugIcon-stepOutForeground: #75beff;
|
|
1145
|
-
--vscode-debugIcon-stepOverForeground: #75beff;
|
|
1146
|
-
--vscode-debugIcon-stopForeground: #f48771;
|
|
1147
|
-
--vscode-debugTokenExpression-boolean: #4e94ce;
|
|
1148
|
-
--vscode-debugTokenExpression-error: #f48771;
|
|
1149
|
-
--vscode-debugTokenExpression-name: #c586c0;
|
|
1150
|
-
--vscode-debugTokenExpression-number: #b5cea8;
|
|
1151
|
-
--vscode-debugTokenExpression-string: #ce9178;
|
|
1152
|
-
--vscode-debugTokenExpression-value: rgba(204, 204, 204, 0.6);
|
|
1153
|
-
--vscode-debugToolBar-background: #181818;
|
|
1154
|
-
--vscode-debugView-exceptionLabelBackground: #6c2022;
|
|
1155
|
-
--vscode-debugView-exceptionLabelForeground: #cccccc;
|
|
1156
|
-
--vscode-debugView-stateLabelBackground: rgba(136, 136, 136, 0.27);
|
|
1157
|
-
--vscode-debugView-stateLabelForeground: #cccccc;
|
|
1158
|
-
--vscode-debugView-valueChangedHighlight: #569cd6;
|
|
1159
|
-
--vscode-descriptionForeground: #9d9d9d;
|
|
1160
|
-
--vscode-diffEditor-diagonalFill: rgba(204, 204, 204, 0.2);
|
|
1161
|
-
--vscode-diffEditor-insertedLineBackground: rgba(155, 185, 85, 0.2);
|
|
1162
|
-
--vscode-diffEditor-insertedTextBackground: rgba(156, 204, 44, 0.2);
|
|
1163
|
-
--vscode-diffEditor-move-border: rgba(139, 139, 139, 0.61);
|
|
1164
|
-
--vscode-diffEditor-moveActive-border: #ffa500;
|
|
1165
|
-
--vscode-diffEditor-removedLineBackground: rgba(255, 0, 0, 0.2);
|
|
1166
|
-
--vscode-diffEditor-removedTextBackground: rgba(255, 0, 0, 0.2);
|
|
1167
|
-
--vscode-diffEditor-unchangedCodeBackground: rgba(116, 116, 116, 0.16);
|
|
1168
|
-
--vscode-diffEditor-unchangedRegionBackground: #181818;
|
|
1169
|
-
--vscode-diffEditor-unchangedRegionForeground: #cccccc;
|
|
1170
|
-
--vscode-diffEditor-unchangedRegionShadow: #000000;
|
|
1171
|
-
--vscode-disabledForeground: rgba(204, 204, 204, 0.5);
|
|
1172
|
-
--vscode-dropdown-background: #313131;
|
|
1173
|
-
--vscode-dropdown-border: #3c3c3c;
|
|
1174
|
-
--vscode-dropdown-foreground: #cccccc;
|
|
1175
|
-
--vscode-dropdown-listBackground: #1f1f1f;
|
|
1176
|
-
--vscode-editor-background: #1f1f1f;
|
|
1177
|
-
--vscode-editor-findMatchBackground: #9e6a03;
|
|
1178
|
-
--vscode-editor-findMatchHighlightBackground: rgba(234, 92, 0, 0.33);
|
|
1179
|
-
--vscode-editor-findRangeHighlightBackground: rgba(58, 61, 65, 0.4);
|
|
1180
|
-
--vscode-editor-focusedStackFrameHighlightBackground: rgba(122, 189, 122, 0.3);
|
|
1181
|
-
--vscode-editor-foldBackground: rgba(38, 79, 120, 0.3);
|
|
1182
|
-
--vscode-editor-foreground: #cccccc;
|
|
1183
|
-
--vscode-editor-hoverHighlightBackground: rgba(38, 79, 120, 0.25);
|
|
1184
|
-
--vscode-editor-inactiveSelectionBackground: #3a3d41;
|
|
1185
|
-
--vscode-editor-inlineValuesBackground: rgba(255, 200, 0, 0.2);
|
|
1186
|
-
--vscode-editor-inlineValuesForeground: rgba(255, 255, 255, 0.5);
|
|
1187
|
-
--vscode-editor-lineHighlightBorder: #282828;
|
|
1188
|
-
--vscode-editor-linkedEditingBackground: rgba(255, 0, 0, 0.3);
|
|
1189
|
-
--vscode-editor-rangeHighlightBackground: rgba(255, 255, 255, 0.04);
|
|
1190
|
-
--vscode-editor-selectionBackground: #264f78;
|
|
1191
|
-
--vscode-editor-selectionHighlightBackground: rgba(173, 214, 255, 0.15);
|
|
1192
|
-
--vscode-editor-snippetFinalTabstopHighlightBorder: #525252;
|
|
1193
|
-
--vscode-editor-snippetTabstopHighlightBackground: rgba(124, 124, 124, 0.3);
|
|
1194
|
-
--vscode-editor-stackFrameHighlightBackground: rgba(255, 255, 0, 0.2);
|
|
1195
|
-
--vscode-editor-symbolHighlightBackground: rgba(234, 92, 0, 0.33);
|
|
1196
|
-
--vscode-editor-wordHighlightBackground: rgba(87, 87, 87, 0.72);
|
|
1197
|
-
--vscode-editor-wordHighlightStrongBackground: rgba(0, 73, 114, 0.72);
|
|
1198
|
-
--vscode-editor-wordHighlightTextBackground: rgba(87, 87, 87, 0.72);
|
|
1199
|
-
--vscode-editorActiveLineNumber-foreground: #c6c6c6;
|
|
1200
|
-
--vscode-editorBracketHighlight-foreground1: #ffd700;
|
|
1201
|
-
--vscode-editorBracketHighlight-foreground2: #da70d6;
|
|
1202
|
-
--vscode-editorBracketHighlight-foreground3: #179fff;
|
|
1203
|
-
--vscode-editorBracketHighlight-foreground4: rgba(0, 0, 0, 0);
|
|
1204
|
-
--vscode-editorBracketHighlight-foreground5: rgba(0, 0, 0, 0);
|
|
1205
|
-
--vscode-editorBracketHighlight-foreground6: rgba(0, 0, 0, 0);
|
|
1206
|
-
--vscode-editorBracketHighlight-unexpectedBracket-foreground: rgba(255, 18, 18, 0.8);
|
|
1207
|
-
--vscode-editorBracketMatch-background: rgba(0, 100, 0, 0.1);
|
|
1208
|
-
--vscode-editorBracketMatch-border: #888888;
|
|
1209
|
-
--vscode-editorBracketPairGuide-activeBackground1: rgba(0, 0, 0, 0);
|
|
1210
|
-
--vscode-editorBracketPairGuide-activeBackground2: rgba(0, 0, 0, 0);
|
|
1211
|
-
--vscode-editorBracketPairGuide-activeBackground3: rgba(0, 0, 0, 0);
|
|
1212
|
-
--vscode-editorBracketPairGuide-activeBackground4: rgba(0, 0, 0, 0);
|
|
1213
|
-
--vscode-editorBracketPairGuide-activeBackground5: rgba(0, 0, 0, 0);
|
|
1214
|
-
--vscode-editorBracketPairGuide-activeBackground6: rgba(0, 0, 0, 0);
|
|
1215
|
-
--vscode-editorBracketPairGuide-background1: rgba(0, 0, 0, 0);
|
|
1216
|
-
--vscode-editorBracketPairGuide-background2: rgba(0, 0, 0, 0);
|
|
1217
|
-
--vscode-editorBracketPairGuide-background3: rgba(0, 0, 0, 0);
|
|
1218
|
-
--vscode-editorBracketPairGuide-background4: rgba(0, 0, 0, 0);
|
|
1219
|
-
--vscode-editorBracketPairGuide-background5: rgba(0, 0, 0, 0);
|
|
1220
|
-
--vscode-editorBracketPairGuide-background6: rgba(0, 0, 0, 0);
|
|
1221
|
-
--vscode-editorCodeLens-foreground: #999999;
|
|
1222
|
-
--vscode-editorCommentsWidget-rangeActiveBackground: rgba(0, 120, 212, 0.1);
|
|
1223
|
-
--vscode-editorCommentsWidget-rangeBackground: rgba(0, 120, 212, 0.1);
|
|
1224
|
-
--vscode-editorCommentsWidget-replyInputBackground: #252526;
|
|
1225
|
-
--vscode-editorCommentsWidget-resolvedBorder: rgba(204, 204, 204, 0.5);
|
|
1226
|
-
--vscode-editorCommentsWidget-unresolvedBorder: #0078d4;
|
|
1227
|
-
--vscode-editorCursor-foreground: #aeafad;
|
|
1228
|
-
--vscode-editorError-foreground: #f14c4c;
|
|
1229
|
-
--vscode-editorGhostText-foreground: rgba(255, 255, 255, 0.34);
|
|
1230
|
-
--vscode-editorGroup-border: rgba(255, 255, 255, 0.09);
|
|
1231
|
-
--vscode-editorGroup-dropBackground: rgba(83, 89, 93, 0.5);
|
|
1232
|
-
--vscode-editorGroup-dropIntoPromptBackground: #202020;
|
|
1233
|
-
--vscode-editorGroup-dropIntoPromptForeground: #cccccc;
|
|
1234
|
-
--vscode-editorGroupHeader-noTabsBackground: #1f1f1f;
|
|
1235
|
-
--vscode-editorGroupHeader-tabsBackground: #181818;
|
|
1236
|
-
--vscode-editorGroupHeader-tabsBorder: #2b2b2b;
|
|
1237
|
-
--vscode-editorGutter-addedBackground: #2ea043;
|
|
1238
|
-
--vscode-editorGutter-background: #1f1f1f;
|
|
1239
|
-
--vscode-editorGutter-commentGlyphForeground: #cccccc;
|
|
1240
|
-
--vscode-editorGutter-commentRangeForeground: #37373d;
|
|
1241
|
-
--vscode-editorGutter-commentUnresolvedGlyphForeground: #cccccc;
|
|
1242
|
-
--vscode-editorGutter-deletedBackground: #f85149;
|
|
1243
|
-
--vscode-editorGutter-foldingControlForeground: #cccccc;
|
|
1244
|
-
--vscode-editorGutter-modifiedBackground: #0078d4;
|
|
1245
|
-
--vscode-editorHint-foreground: rgba(238, 238, 238, 0.7);
|
|
1246
|
-
--vscode-editorHoverWidget-background: #202020;
|
|
1247
|
-
--vscode-editorHoverWidget-border: #454545;
|
|
1248
|
-
--vscode-editorHoverWidget-foreground: #cccccc;
|
|
1249
|
-
--vscode-editorHoverWidget-highlightForeground: #2aaaff;
|
|
1250
|
-
--vscode-editorHoverWidget-statusBarBackground: #262626;
|
|
1251
|
-
--vscode-editorIndentGuide-activeBackground: rgba(227, 228, 226, 0.16);
|
|
1252
|
-
--vscode-editorIndentGuide-activeBackground1: #707070;
|
|
1253
|
-
--vscode-editorIndentGuide-activeBackground2: rgba(0, 0, 0, 0);
|
|
1254
|
-
--vscode-editorIndentGuide-activeBackground3: rgba(0, 0, 0, 0);
|
|
1255
|
-
--vscode-editorIndentGuide-activeBackground4: rgba(0, 0, 0, 0);
|
|
1256
|
-
--vscode-editorIndentGuide-activeBackground5: rgba(0, 0, 0, 0);
|
|
1257
|
-
--vscode-editorIndentGuide-activeBackground6: rgba(0, 0, 0, 0);
|
|
1258
|
-
--vscode-editorIndentGuide-background: rgba(227, 228, 226, 0.16);
|
|
1259
|
-
--vscode-editorIndentGuide-background1: #404040;
|
|
1260
|
-
--vscode-editorIndentGuide-background2: rgba(0, 0, 0, 0);
|
|
1261
|
-
--vscode-editorIndentGuide-background3: rgba(0, 0, 0, 0);
|
|
1262
|
-
--vscode-editorIndentGuide-background4: rgba(0, 0, 0, 0);
|
|
1263
|
-
--vscode-editorIndentGuide-background5: rgba(0, 0, 0, 0);
|
|
1264
|
-
--vscode-editorIndentGuide-background6: rgba(0, 0, 0, 0);
|
|
1265
|
-
--vscode-editorInfo-foreground: #3794ff;
|
|
1266
|
-
--vscode-editorInlayHint-background: rgba(97, 97, 97, 0.1);
|
|
1267
|
-
--vscode-editorInlayHint-foreground: #969696;
|
|
1268
|
-
--vscode-editorInlayHint-parameterBackground: rgba(97, 97, 97, 0.1);
|
|
1269
|
-
--vscode-editorInlayHint-parameterForeground: #969696;
|
|
1270
|
-
--vscode-editorInlayHint-typeBackground: rgba(97, 97, 97, 0.1);
|
|
1271
|
-
--vscode-editorInlayHint-typeForeground: #969696;
|
|
1272
|
-
--vscode-editorLightBulb-foreground: #ffcc00;
|
|
1273
|
-
--vscode-editorLightBulbAi-foreground: #ffcc00;
|
|
1274
|
-
--vscode-editorLightBulbAutoFix-foreground: #75beff;
|
|
1275
|
-
--vscode-editorLineNumber-activeForeground: #cccccc;
|
|
1276
|
-
--vscode-editorLineNumber-foreground: #6e7681;
|
|
1277
|
-
--vscode-editorLink-activeForeground: #4e94ce;
|
|
1278
|
-
--vscode-editorMarkerNavigation-background: #1f1f1f;
|
|
1279
|
-
--vscode-editorMarkerNavigationError-background: #f14c4c;
|
|
1280
|
-
--vscode-editorMarkerNavigationError-headerBackground: rgba(241, 76, 76, 0.1);
|
|
1281
|
-
--vscode-editorMarkerNavigationInfo-background: #3794ff;
|
|
1282
|
-
--vscode-editorMarkerNavigationInfo-headerBackground: rgba(55, 148, 255, 0.1);
|
|
1283
|
-
--vscode-editorMarkerNavigationWarning-background: #cca700;
|
|
1284
|
-
--vscode-editorMarkerNavigationWarning-headerBackground: rgba(204, 167, 0, 0.1);
|
|
1285
|
-
--vscode-editorMultiCursor-primary-foreground: #aeafad;
|
|
1286
|
-
--vscode-editorMultiCursor-secondary-foreground: #aeafad;
|
|
1287
|
-
--vscode-editorOverviewRuler-addedForeground: rgba(46, 160, 67, 0.6);
|
|
1288
|
-
--vscode-editorOverviewRuler-border: #010409;
|
|
1289
|
-
--vscode-editorOverviewRuler-bracketMatchForeground: #a0a0a0;
|
|
1290
|
-
--vscode-editorOverviewRuler-commentForeground: #37373d;
|
|
1291
|
-
--vscode-editorOverviewRuler-commentUnresolvedForeground: #37373d;
|
|
1292
|
-
--vscode-editorOverviewRuler-commonContentForeground: rgba(96, 96, 96, 0.4);
|
|
1293
|
-
--vscode-editorOverviewRuler-currentContentForeground: rgba(64, 200, 174, 0.5);
|
|
1294
|
-
--vscode-editorOverviewRuler-deletedForeground: rgba(248, 81, 73, 0.6);
|
|
1295
|
-
--vscode-editorOverviewRuler-errorForeground: rgba(255, 18, 18, 0.7);
|
|
1296
|
-
--vscode-editorOverviewRuler-findMatchForeground: rgba(209, 134, 22, 0.49);
|
|
1297
|
-
--vscode-editorOverviewRuler-incomingContentForeground: rgba(64, 166, 255, 0.5);
|
|
1298
|
-
--vscode-editorOverviewRuler-infoForeground: #3794ff;
|
|
1299
|
-
--vscode-editorOverviewRuler-inlineChatInserted: rgba(156, 204, 44, 0.12);
|
|
1300
|
-
--vscode-editorOverviewRuler-inlineChatRemoved: rgba(255, 0, 0, 0.12);
|
|
1301
|
-
--vscode-editorOverviewRuler-modifiedForeground: rgba(0, 120, 212, 0.6);
|
|
1302
|
-
--vscode-editorOverviewRuler-rangeHighlightForeground: rgba(0, 122, 204, 0.6);
|
|
1303
|
-
--vscode-editorOverviewRuler-selectionHighlightForeground: rgba(160, 160, 160, 0.8);
|
|
1304
|
-
--vscode-editorOverviewRuler-warningForeground: #cca700;
|
|
1305
|
-
--vscode-editorOverviewRuler-wordHighlightForeground: rgba(160, 160, 160, 0.8);
|
|
1306
|
-
--vscode-editorOverviewRuler-wordHighlightStrongForeground: rgba(192, 160, 192, 0.8);
|
|
1307
|
-
--vscode-editorOverviewRuler-wordHighlightTextForeground: rgba(160, 160, 160, 0.8);
|
|
1308
|
-
--vscode-editorPane-background: #1f1f1f;
|
|
1309
|
-
--vscode-editorRuler-foreground: #5a5a5a;
|
|
1310
|
-
--vscode-editorStickyScroll-background: #1f1f1f;
|
|
1311
|
-
--vscode-editorStickyScroll-shadow: #000000;
|
|
1312
|
-
--vscode-editorStickyScrollHover-background: #2a2d2e;
|
|
1313
|
-
--vscode-editorSuggestWidget-background: #202020;
|
|
1314
|
-
--vscode-editorSuggestWidget-border: #454545;
|
|
1315
|
-
--vscode-editorSuggestWidget-focusHighlightForeground: #2aaaff;
|
|
1316
|
-
--vscode-editorSuggestWidget-foreground: #cccccc;
|
|
1317
|
-
--vscode-editorSuggestWidget-highlightForeground: #2aaaff;
|
|
1318
|
-
--vscode-editorSuggestWidget-selectedBackground: #04395e;
|
|
1319
|
-
--vscode-editorSuggestWidget-selectedForeground: #ffffff;
|
|
1320
|
-
--vscode-editorSuggestWidget-selectedIconForeground: #ffffff;
|
|
1321
|
-
--vscode-editorSuggestWidgetStatus-foreground: rgba(204, 204, 204, 0.5);
|
|
1322
|
-
--vscode-editorUnicodeHighlight-border: #cca700;
|
|
1323
|
-
--vscode-editorUnnecessaryCode-opacity: rgba(0, 0, 0, 0.67);
|
|
1324
|
-
--vscode-editorWarning-foreground: #cca700;
|
|
1325
|
-
--vscode-editorWatermark-foreground: rgba(204, 204, 204, 0.6);
|
|
1326
|
-
--vscode-editorWhitespace-foreground: rgba(227, 228, 226, 0.16);
|
|
1327
|
-
--vscode-editorWidget-background: #202020;
|
|
1328
|
-
--vscode-editorWidget-border: #454545;
|
|
1329
|
-
--vscode-editorWidget-foreground: #cccccc;
|
|
1330
|
-
--vscode-errorForeground: #f85149;
|
|
1331
|
-
--vscode-extensionBadge-remoteBackground: #0078d4;
|
|
1332
|
-
--vscode-extensionBadge-remoteForeground: #ffffff;
|
|
1333
|
-
--vscode-extensionButton-background: #0078d4;
|
|
1334
|
-
--vscode-extensionButton-foreground: #ffffff;
|
|
1335
|
-
--vscode-extensionButton-hoverBackground: #026ec1;
|
|
1336
|
-
--vscode-extensionButton-prominentBackground: #0078d4;
|
|
1337
|
-
--vscode-extensionButton-prominentForeground: #ffffff;
|
|
1338
|
-
--vscode-extensionButton-prominentHoverBackground: #026ec1;
|
|
1339
|
-
--vscode-extensionButton-separator: rgba(255, 255, 255, 0.4);
|
|
1340
|
-
--vscode-extensionIcon-preReleaseForeground: #1d9271;
|
|
1341
|
-
--vscode-extensionIcon-sponsorForeground: #d758b3;
|
|
1342
|
-
--vscode-extensionIcon-starForeground: #ff8e00;
|
|
1343
|
-
--vscode-extensionIcon-verifiedForeground: #4daafc;
|
|
1344
|
-
--vscode-focusBorder: #0078d4;
|
|
1345
|
-
--vscode-foreground: #cccccc;
|
|
1346
|
-
--vscode-icon-foreground: #cccccc;
|
|
1347
|
-
--vscode-inlineChat-background: #202020;
|
|
1348
|
-
--vscode-inlineChat-border: #454545;
|
|
1349
|
-
--vscode-inlineChat-regionHighlight: rgba(38, 79, 120, 0.25);
|
|
1350
|
-
--vscode-inlineChat-shadow: rgba(0, 0, 0, 0.36);
|
|
1351
|
-
--vscode-inlineChatDiff-inserted: rgba(156, 204, 44, 0.1);
|
|
1352
|
-
--vscode-inlineChatDiff-removed: rgba(255, 0, 0, 0.1);
|
|
1353
|
-
--vscode-inlineChatInput-background: #313131;
|
|
1354
|
-
--vscode-inlineChatInput-border: #454545;
|
|
1355
|
-
--vscode-inlineChatInput-focusBorder: #0078d4;
|
|
1356
|
-
--vscode-inlineChatInput-placeholderForeground: #989898;
|
|
1357
|
-
--vscode-input-background: #313131;
|
|
1358
|
-
--vscode-input-border: #3c3c3c;
|
|
1359
|
-
--vscode-input-foreground: #cccccc;
|
|
1360
|
-
--vscode-input-placeholderForeground: #989898;
|
|
1361
|
-
--vscode-inputOption-activeBackground: rgba(36, 137, 219, 0.51);
|
|
1362
|
-
--vscode-inputOption-activeBorder: #2488db;
|
|
1363
|
-
--vscode-inputOption-activeForeground: #ffffff;
|
|
1364
|
-
--vscode-inputOption-hoverBackground: rgba(90, 93, 94, 0.5);
|
|
1365
|
-
--vscode-inputValidation-errorBackground: #5a1d1d;
|
|
1366
|
-
--vscode-inputValidation-errorBorder: #be1100;
|
|
1367
|
-
--vscode-inputValidation-infoBackground: #063b49;
|
|
1368
|
-
--vscode-inputValidation-infoBorder: #007acc;
|
|
1369
|
-
--vscode-inputValidation-warningBackground: #352a05;
|
|
1370
|
-
--vscode-inputValidation-warningBorder: #b89500;
|
|
1371
|
-
--vscode-interactive-activeCodeBorder: #007acc;
|
|
1372
|
-
--vscode-interactive-inactiveCodeBorder: #37373d;
|
|
1373
|
-
--vscode-keybindingLabel-background: rgba(128, 128, 128, 0.17);
|
|
1374
|
-
--vscode-keybindingLabel-border: rgba(51, 51, 51, 0.6);
|
|
1375
|
-
--vscode-keybindingLabel-bottomBorder: rgba(68, 68, 68, 0.6);
|
|
1376
|
-
--vscode-keybindingLabel-foreground: #cccccc;
|
|
1377
|
-
--vscode-keybindingTable-headerBackground: rgba(204, 204, 204, 0.04);
|
|
1378
|
-
--vscode-keybindingTable-rowsBackground: rgba(204, 204, 204, 0.04);
|
|
1379
|
-
--vscode-list-activeSelectionBackground: #04395e;
|
|
1380
|
-
--vscode-list-activeSelectionForeground: #ffffff;
|
|
1381
|
-
--vscode-list-activeSelectionIconForeground: #ffffff;
|
|
1382
|
-
--vscode-list-deemphasizedForeground: #8c8c8c;
|
|
1383
|
-
--vscode-list-dropBackground: #383b3d;
|
|
1384
|
-
--vscode-list-dropBetweenBackground: #cccccc;
|
|
1385
|
-
--vscode-list-errorForeground: #f88070;
|
|
1386
|
-
--vscode-list-filterMatchBackground: rgba(234, 92, 0, 0.33);
|
|
1387
|
-
--vscode-list-focusHighlightForeground: #2aaaff;
|
|
1388
|
-
--vscode-list-focusOutline: #0078d4;
|
|
1389
|
-
--vscode-list-highlightForeground: #2aaaff;
|
|
1390
|
-
--vscode-list-hoverBackground: #2a2d2e;
|
|
1391
|
-
--vscode-list-inactiveSelectionBackground: #37373d;
|
|
1392
|
-
--vscode-list-invalidItemForeground: #b89500;
|
|
1393
|
-
--vscode-list-warningForeground: #cca700;
|
|
1394
|
-
--vscode-listFilterWidget-background: #202020;
|
|
1395
|
-
--vscode-listFilterWidget-noMatchesOutline: #be1100;
|
|
1396
|
-
--vscode-listFilterWidget-outline: rgba(0, 0, 0, 0);
|
|
1397
|
-
--vscode-listFilterWidget-shadow: rgba(0, 0, 0, 0.36);
|
|
1398
|
-
--vscode-menu-background: #1f1f1f;
|
|
1399
|
-
--vscode-menu-border: #454545;
|
|
1400
|
-
--vscode-menu-foreground: #cccccc;
|
|
1401
|
-
--vscode-menu-selectionBackground: #0078d4;
|
|
1402
|
-
--vscode-menu-selectionForeground: #ffffff;
|
|
1403
|
-
--vscode-menu-separatorBackground: #454545;
|
|
1404
|
-
--vscode-menubar-selectionBackground: rgba(90, 93, 94, 0.31);
|
|
1405
|
-
--vscode-menubar-selectionForeground: #cccccc;
|
|
1406
|
-
--vscode-merge-commonContentBackground: rgba(96, 96, 96, 0.16);
|
|
1407
|
-
--vscode-merge-commonHeaderBackground: rgba(96, 96, 96, 0.4);
|
|
1408
|
-
--vscode-merge-currentContentBackground: rgba(64, 200, 174, 0.2);
|
|
1409
|
-
--vscode-merge-currentHeaderBackground: rgba(64, 200, 174, 0.5);
|
|
1410
|
-
--vscode-merge-incomingContentBackground: rgba(64, 166, 255, 0.2);
|
|
1411
|
-
--vscode-merge-incomingHeaderBackground: rgba(64, 166, 255, 0.5);
|
|
1412
|
-
--vscode-mergeEditor-change-background: rgba(155, 185, 85, 0.2);
|
|
1413
|
-
--vscode-mergeEditor-change-word-background: rgba(156, 204, 44, 0.2);
|
|
1414
|
-
--vscode-mergeEditor-changeBase-background: #4b1818;
|
|
1415
|
-
--vscode-mergeEditor-changeBase-word-background: #6f1313;
|
|
1416
|
-
--vscode-mergeEditor-conflict-handled-minimapOverViewRuler: rgba(173, 172, 168, 0.93);
|
|
1417
|
-
--vscode-mergeEditor-conflict-handledFocused-border: rgba(193, 193, 193, 0.8);
|
|
1418
|
-
--vscode-mergeEditor-conflict-handledUnfocused-border: rgba(134, 134, 134, 0.29);
|
|
1419
|
-
--vscode-mergeEditor-conflict-input1-background: rgba(64, 200, 174, 0.2);
|
|
1420
|
-
--vscode-mergeEditor-conflict-input2-background: rgba(64, 166, 255, 0.2);
|
|
1421
|
-
--vscode-mergeEditor-conflict-unhandled-minimapOverViewRuler: #fcba03;
|
|
1422
|
-
--vscode-mergeEditor-conflict-unhandledFocused-border: #ffa600;
|
|
1423
|
-
--vscode-mergeEditor-conflict-unhandledUnfocused-border: rgba(255, 166, 0, 0.48);
|
|
1424
|
-
--vscode-mergeEditor-conflictingLines-background: rgba(255, 234, 0, 0.28);
|
|
1425
|
-
--vscode-minimap-errorHighlight: rgba(255, 18, 18, 0.7);
|
|
1426
|
-
--vscode-minimap-findMatchHighlight: #d18616;
|
|
1427
|
-
--vscode-minimap-foregroundOpacity: #000000;
|
|
1428
|
-
--vscode-minimap-infoHighlight: #3794ff;
|
|
1429
|
-
--vscode-minimap-selectionHighlight: #264f78;
|
|
1430
|
-
--vscode-minimap-selectionOccurrenceHighlight: #676767;
|
|
1431
|
-
--vscode-minimap-warningHighlight: #cca700;
|
|
1432
|
-
--vscode-minimapGutter-addedBackground: #2ea043;
|
|
1433
|
-
--vscode-minimapGutter-deletedBackground: #f85149;
|
|
1434
|
-
--vscode-minimapGutter-modifiedBackground: #0078d4;
|
|
1435
|
-
--vscode-minimapSlider-activeBackground: rgba(191, 191, 191, 0.2);
|
|
1436
|
-
--vscode-minimapSlider-background: rgba(121, 121, 121, 0.2);
|
|
1437
|
-
--vscode-minimapSlider-hoverBackground: rgba(100, 100, 100, 0.35);
|
|
1438
|
-
--vscode-multiDiffEditor-border: #2b2b2b;
|
|
1439
|
-
--vscode-multiDiffEditor-headerBackground: #262626;
|
|
1440
|
-
--vscode-notebook-cellBorderColor: #37373d;
|
|
1441
|
-
--vscode-notebook-cellEditorBackground: #181818;
|
|
1442
|
-
--vscode-notebook-cellInsertionIndicator: #0078d4;
|
|
1443
|
-
--vscode-notebook-cellStatusBarItemHoverBackground: rgba(255, 255, 255, 0.15);
|
|
1444
|
-
--vscode-notebook-cellToolbarSeparator: rgba(128, 128, 128, 0.35);
|
|
1445
|
-
--vscode-notebook-editorBackground: #1f1f1f;
|
|
1446
|
-
--vscode-notebook-focusedCellBorder: #0078d4;
|
|
1447
|
-
--vscode-notebook-focusedEditorBorder: #0078d4;
|
|
1448
|
-
--vscode-notebook-inactiveFocusedCellBorder: #37373d;
|
|
1449
|
-
--vscode-notebook-selectedCellBackground: #37373d;
|
|
1450
|
-
--vscode-notebook-selectedCellBorder: #37373d;
|
|
1451
|
-
--vscode-notebook-symbolHighlightBackground: rgba(255, 255, 255, 0.04);
|
|
1452
|
-
--vscode-notebookEditorOverviewRuler-runningCellForeground: #89d185;
|
|
1453
|
-
--vscode-notebookScrollbarSlider-activeBackground: rgba(191, 191, 191, 0.4);
|
|
1454
|
-
--vscode-notebookScrollbarSlider-background: rgba(121, 121, 121, 0.4);
|
|
1455
|
-
--vscode-notebookScrollbarSlider-hoverBackground: rgba(100, 100, 100, 0.7);
|
|
1456
|
-
--vscode-notebookStatusErrorIcon-foreground: #f85149;
|
|
1457
|
-
--vscode-notebookStatusRunningIcon-foreground: #cccccc;
|
|
1458
|
-
--vscode-notebookStatusSuccessIcon-foreground: #89d185;
|
|
1459
|
-
--vscode-notificationCenter-border: #313131;
|
|
1460
|
-
--vscode-notificationCenterHeader-background: #1f1f1f;
|
|
1461
|
-
--vscode-notificationCenterHeader-foreground: #cccccc;
|
|
1462
|
-
--vscode-notificationLink-foreground: #4daafc;
|
|
1463
|
-
--vscode-notificationToast-border: #313131;
|
|
1464
|
-
--vscode-notifications-background: #1f1f1f;
|
|
1465
|
-
--vscode-notifications-border: #2b2b2b;
|
|
1466
|
-
--vscode-notifications-foreground: #cccccc;
|
|
1467
|
-
--vscode-notificationsErrorIcon-foreground: #f14c4c;
|
|
1468
|
-
--vscode-notificationsInfoIcon-foreground: #3794ff;
|
|
1469
|
-
--vscode-notificationsWarningIcon-foreground: #cca700;
|
|
1470
|
-
--vscode-panel-background: #181818;
|
|
1471
|
-
--vscode-panel-border: #2b2b2b;
|
|
1472
|
-
--vscode-panel-dropBorder: #cccccc;
|
|
1473
|
-
--vscode-panelInput-border: #2b2b2b;
|
|
1474
|
-
--vscode-panelSection-border: #2b2b2b;
|
|
1475
|
-
--vscode-panelSection-dropBackground: rgba(83, 89, 93, 0.5);
|
|
1476
|
-
--vscode-panelSectionHeader-background: rgba(128, 128, 128, 0.2);
|
|
1477
|
-
--vscode-panelStickyScroll-background: #181818;
|
|
1478
|
-
--vscode-panelStickyScroll-shadow: #000000;
|
|
1479
|
-
--vscode-panelTitle-activeBorder: #0078d4;
|
|
1480
|
-
--vscode-panelTitle-activeForeground: #cccccc;
|
|
1481
|
-
--vscode-panelTitle-inactiveForeground: #9d9d9d;
|
|
1482
|
-
--vscode-peekView-border: #3794ff;
|
|
1483
|
-
--vscode-peekViewEditor-background: #1f1f1f;
|
|
1484
|
-
--vscode-peekViewEditor-matchHighlightBackground: rgba(187, 128, 9, 0.4);
|
|
1485
|
-
--vscode-peekViewEditorGutter-background: #1f1f1f;
|
|
1486
|
-
--vscode-peekViewEditorStickyScroll-background: #1f1f1f;
|
|
1487
|
-
--vscode-peekViewResult-background: #1f1f1f;
|
|
1488
|
-
--vscode-peekViewResult-fileForeground: #ffffff;
|
|
1489
|
-
--vscode-peekViewResult-lineForeground: #bbbbbb;
|
|
1490
|
-
--vscode-peekViewResult-matchHighlightBackground: rgba(187, 128, 9, 0.4);
|
|
1491
|
-
--vscode-peekViewResult-selectionBackground: rgba(51, 153, 255, 0.2);
|
|
1492
|
-
--vscode-peekViewResult-selectionForeground: #ffffff;
|
|
1493
|
-
--vscode-peekViewTitle-background: #252526;
|
|
1494
|
-
--vscode-peekViewTitleDescription-foreground: rgba(204, 204, 204, 0.7);
|
|
1495
|
-
--vscode-peekViewTitleLabel-foreground: #ffffff;
|
|
1496
|
-
--vscode-pickerGroup-border: #3c3c3c;
|
|
1497
|
-
--vscode-pickerGroup-foreground: #3794ff;
|
|
1498
|
-
--vscode-ports-iconRunningProcessForeground: #369432;
|
|
1499
|
-
--vscode-problemsErrorIcon-foreground: #f14c4c;
|
|
1500
|
-
--vscode-problemsInfoIcon-foreground: #3794ff;
|
|
1501
|
-
--vscode-problemsWarningIcon-foreground: #cca700;
|
|
1502
|
-
--vscode-profileBadge-background: #4d4d4d;
|
|
1503
|
-
--vscode-profileBadge-foreground: #ffffff;
|
|
1504
|
-
--vscode-progressBar-background: #0078d4;
|
|
1505
|
-
--vscode-quickInput-background: #222222;
|
|
1506
|
-
--vscode-quickInput-foreground: #cccccc;
|
|
1507
|
-
--vscode-quickInputList-focusBackground: #04395e;
|
|
1508
|
-
--vscode-quickInputList-focusForeground: #ffffff;
|
|
1509
|
-
--vscode-quickInputList-focusIconForeground: #ffffff;
|
|
1510
|
-
--vscode-quickInputTitle-background: rgba(255, 255, 255, 0.1);
|
|
1511
|
-
--vscode-remoteHub-decorations-addedForegroundColor: #81b88b;
|
|
1512
|
-
--vscode-remoteHub-decorations-conflictForegroundColor: #e4676b;
|
|
1513
|
-
--vscode-remoteHub-decorations-deletedForegroundColor: #c74e39;
|
|
1514
|
-
--vscode-remoteHub-decorations-ignoredResourceForeground: #8c8c8c;
|
|
1515
|
-
--vscode-remoteHub-decorations-incomingAddedForegroundColor: #81b88b;
|
|
1516
|
-
--vscode-remoteHub-decorations-incomingDeletedForegroundColor: #c74e39;
|
|
1517
|
-
--vscode-remoteHub-decorations-incomingModifiedForegroundColor: #e2c08d;
|
|
1518
|
-
--vscode-remoteHub-decorations-incomingRenamedForegroundColor: #73c991;
|
|
1519
|
-
--vscode-remoteHub-decorations-modifiedForegroundColor: #e2c08d;
|
|
1520
|
-
--vscode-remoteHub-decorations-possibleConflictForegroundColor: #cca700;
|
|
1521
|
-
--vscode-remoteHub-decorations-submoduleForegroundColor: #8db9e2;
|
|
1522
|
-
--vscode-remoteHub-decorations-workspaceRepositoriesView-hasUncommittedChangesForegroundColor: #e2c08d;
|
|
1523
|
-
--vscode-sash-hover-size: 4px;
|
|
1524
|
-
--vscode-sash-hoverBorder: #0078d4;
|
|
1525
|
-
--vscode-sash-size: 4px;
|
|
1526
|
-
--vscode-scm-historyItemSelectedStatisticsBorder: rgba(255, 255, 255, 0.2);
|
|
1527
|
-
--vscode-scm-historyItemStatisticsBorder: rgba(204, 204, 204, 0.2);
|
|
1528
|
-
--vscode-scrollbar-shadow: #000000;
|
|
1529
|
-
--vscode-scrollbarSlider-activeBackground: rgba(191, 191, 191, 0.4);
|
|
1530
|
-
--vscode-scrollbarSlider-background: rgba(121, 121, 121, 0.4);
|
|
1531
|
-
--vscode-scrollbarSlider-hoverBackground: rgba(100, 100, 100, 0.7);
|
|
1532
|
-
--vscode-search-resultsInfoForeground: rgba(204, 204, 204, 0.65);
|
|
1533
|
-
--vscode-searchEditor-findMatchBackground: rgba(234, 92, 0, 0.22);
|
|
1534
|
-
--vscode-searchEditor-textInputBorder: #3c3c3c;
|
|
1535
|
-
--vscode-settings-checkboxBackground: #313131;
|
|
1536
|
-
--vscode-settings-checkboxBorder: #3c3c3c;
|
|
1537
|
-
--vscode-settings-checkboxForeground: #cccccc;
|
|
1538
|
-
--vscode-settings-dropdownBackground: #313131;
|
|
1539
|
-
--vscode-settings-dropdownBorder: #3c3c3c;
|
|
1540
|
-
--vscode-settings-dropdownForeground: #cccccc;
|
|
1541
|
-
--vscode-settings-dropdownListBorder: #454545;
|
|
1542
|
-
--vscode-settings-focusedRowBackground: rgba(42, 45, 46, 0.6);
|
|
1543
|
-
--vscode-settings-focusedRowBorder: #0078d4;
|
|
1544
|
-
--vscode-settings-headerBorder: #2b2b2b;
|
|
1545
|
-
--vscode-settings-headerForeground: #ffffff;
|
|
1546
|
-
--vscode-settings-modifiedItemIndicator: rgba(187, 128, 9, 0.4);
|
|
1547
|
-
--vscode-settings-numberInputBackground: #313131;
|
|
1548
|
-
--vscode-settings-numberInputBorder: #3c3c3c;
|
|
1549
|
-
--vscode-settings-numberInputForeground: #cccccc;
|
|
1550
|
-
--vscode-settings-rowHoverBackground: rgba(42, 45, 46, 0.3);
|
|
1551
|
-
--vscode-settings-sashBorder: #2b2b2b;
|
|
1552
|
-
--vscode-settings-settingsHeaderHoverForeground: rgba(255, 255, 255, 0.7);
|
|
1553
|
-
--vscode-settings-textInputBackground: #313131;
|
|
1554
|
-
--vscode-settings-textInputBorder: #3c3c3c;
|
|
1555
|
-
--vscode-settings-textInputForeground: #cccccc;
|
|
1556
|
-
--vscode-sideBar-background: #181818;
|
|
1557
|
-
--vscode-sideBar-border: #2b2b2b;
|
|
1558
|
-
--vscode-sideBar-dropBackground: rgba(83, 89, 93, 0.5);
|
|
1559
|
-
--vscode-sideBar-foreground: #cccccc;
|
|
1560
|
-
--vscode-sideBarActivityBarTop-border: #2b2b2b;
|
|
1561
|
-
--vscode-sideBarSectionHeader-background: #181818;
|
|
1562
|
-
--vscode-sideBarSectionHeader-border: #2b2b2b;
|
|
1563
|
-
--vscode-sideBarSectionHeader-foreground: #cccccc;
|
|
1564
|
-
--vscode-sideBarStickyScroll-background: #181818;
|
|
1565
|
-
--vscode-sideBarStickyScroll-shadow: #000000;
|
|
1566
|
-
--vscode-sideBarTitle-background: #181818;
|
|
1567
|
-
--vscode-sideBarTitle-foreground: #cccccc;
|
|
1568
|
-
--vscode-sideBySideEditor-horizontalBorder: rgba(255, 255, 255, 0.09);
|
|
1569
|
-
--vscode-sideBySideEditor-verticalBorder: rgba(255, 255, 255, 0.09);
|
|
1570
|
-
--vscode-simpleFindWidget-sashBorder: #454545;
|
|
1571
|
-
--vscode-statusBar-background: #181818;
|
|
1572
|
-
--vscode-statusBar-border: #2b2b2b;
|
|
1573
|
-
--vscode-statusBar-debuggingBackground: #0078d4;
|
|
1574
|
-
--vscode-statusBar-debuggingBorder: #2b2b2b;
|
|
1575
|
-
--vscode-statusBar-debuggingForeground: #ffffff;
|
|
1576
|
-
--vscode-statusBar-focusBorder: #0078d4;
|
|
1577
|
-
--vscode-statusBar-foreground: #cccccc;
|
|
1578
|
-
--vscode-statusBar-noFolderBackground: #1f1f1f;
|
|
1579
|
-
--vscode-statusBar-noFolderBorder: #2b2b2b;
|
|
1580
|
-
--vscode-statusBar-noFolderForeground: #cccccc;
|
|
1581
|
-
--vscode-statusBarItem-activeBackground: rgba(255, 255, 255, 0.18);
|
|
1582
|
-
--vscode-statusBarItem-compactHoverBackground: rgba(255, 255, 255, 0.2);
|
|
1583
|
-
--vscode-statusBarItem-errorBackground: #b91007;
|
|
1584
|
-
--vscode-statusBarItem-errorForeground: #ffffff;
|
|
1585
|
-
--vscode-statusBarItem-errorHoverBackground: rgba(255, 255, 255, 0.12);
|
|
1586
|
-
--vscode-statusBarItem-errorHoverForeground: #cccccc;
|
|
1587
|
-
--vscode-statusBarItem-focusBorder: #0078d4;
|
|
1588
|
-
--vscode-statusBarItem-hoverBackground: rgba(255, 255, 255, 0.12);
|
|
1589
|
-
--vscode-statusBarItem-hoverForeground: #cccccc;
|
|
1590
|
-
--vscode-statusBarItem-offlineBackground: #6c1717;
|
|
1591
|
-
--vscode-statusBarItem-offlineForeground: #ffffff;
|
|
1592
|
-
--vscode-statusBarItem-offlineHoverBackground: rgba(255, 255, 255, 0.12);
|
|
1593
|
-
--vscode-statusBarItem-offlineHoverForeground: #cccccc;
|
|
1594
|
-
--vscode-statusBarItem-prominentBackground: rgba(110, 118, 129, 0.4);
|
|
1595
|
-
--vscode-statusBarItem-prominentForeground: #cccccc;
|
|
1596
|
-
--vscode-statusBarItem-prominentHoverBackground: rgba(0, 0, 0, 0.3);
|
|
1597
|
-
--vscode-statusBarItem-prominentHoverForeground: #cccccc;
|
|
1598
|
-
--vscode-statusBarItem-remoteBackground: #0078d4;
|
|
1599
|
-
--vscode-statusBarItem-remoteForeground: #ffffff;
|
|
1600
|
-
--vscode-statusBarItem-remoteHoverBackground: rgba(255, 255, 255, 0.12);
|
|
1601
|
-
--vscode-statusBarItem-remoteHoverForeground: #cccccc;
|
|
1602
|
-
--vscode-statusBarItem-warningBackground: #7a6400;
|
|
1603
|
-
--vscode-statusBarItem-warningForeground: #ffffff;
|
|
1604
|
-
--vscode-statusBarItem-warningHoverBackground: rgba(255, 255, 255, 0.12);
|
|
1605
|
-
--vscode-statusBarItem-warningHoverForeground: #cccccc;
|
|
1606
|
-
--vscode-symbolIcon-arrayForeground: #cccccc;
|
|
1607
|
-
--vscode-symbolIcon-booleanForeground: #cccccc;
|
|
1608
|
-
--vscode-symbolIcon-classForeground: #ee9d28;
|
|
1609
|
-
--vscode-symbolIcon-colorForeground: #cccccc;
|
|
1610
|
-
--vscode-symbolIcon-constantForeground: #cccccc;
|
|
1611
|
-
--vscode-symbolIcon-constructorForeground: #b180d7;
|
|
1612
|
-
--vscode-symbolIcon-enumeratorForeground: #ee9d28;
|
|
1613
|
-
--vscode-symbolIcon-enumeratorMemberForeground: #75beff;
|
|
1614
|
-
--vscode-symbolIcon-eventForeground: #ee9d28;
|
|
1615
|
-
--vscode-symbolIcon-fieldForeground: #75beff;
|
|
1616
|
-
--vscode-symbolIcon-fileForeground: #cccccc;
|
|
1617
|
-
--vscode-symbolIcon-folderForeground: #cccccc;
|
|
1618
|
-
--vscode-symbolIcon-functionForeground: #b180d7;
|
|
1619
|
-
--vscode-symbolIcon-interfaceForeground: #75beff;
|
|
1620
|
-
--vscode-symbolIcon-keyForeground: #cccccc;
|
|
1621
|
-
--vscode-symbolIcon-keywordForeground: #cccccc;
|
|
1622
|
-
--vscode-symbolIcon-methodForeground: #b180d7;
|
|
1623
|
-
--vscode-symbolIcon-moduleForeground: #cccccc;
|
|
1624
|
-
--vscode-symbolIcon-namespaceForeground: #cccccc;
|
|
1625
|
-
--vscode-symbolIcon-nullForeground: #cccccc;
|
|
1626
|
-
--vscode-symbolIcon-numberForeground: #cccccc;
|
|
1627
|
-
--vscode-symbolIcon-objectForeground: #cccccc;
|
|
1628
|
-
--vscode-symbolIcon-operatorForeground: #cccccc;
|
|
1629
|
-
--vscode-symbolIcon-packageForeground: #cccccc;
|
|
1630
|
-
--vscode-symbolIcon-propertyForeground: #cccccc;
|
|
1631
|
-
--vscode-symbolIcon-referenceForeground: #cccccc;
|
|
1632
|
-
--vscode-symbolIcon-snippetForeground: #cccccc;
|
|
1633
|
-
--vscode-symbolIcon-stringForeground: #cccccc;
|
|
1634
|
-
--vscode-symbolIcon-structForeground: #cccccc;
|
|
1635
|
-
--vscode-symbolIcon-textForeground: #cccccc;
|
|
1636
|
-
--vscode-symbolIcon-typeParameterForeground: #cccccc;
|
|
1637
|
-
--vscode-symbolIcon-unitForeground: #cccccc;
|
|
1638
|
-
--vscode-symbolIcon-variableForeground: #75beff;
|
|
1639
|
-
--vscode-tab-activeBackground: #1f1f1f;
|
|
1640
|
-
--vscode-tab-activeBorder: #1f1f1f;
|
|
1641
|
-
--vscode-tab-activeBorderTop: #0078d4;
|
|
1642
|
-
--vscode-tab-activeForeground: #ffffff;
|
|
1643
|
-
--vscode-tab-activeModifiedBorder: #3399cc;
|
|
1644
|
-
--vscode-tab-border: #2b2b2b;
|
|
1645
|
-
--vscode-tab-dragAndDropBorder: #ffffff;
|
|
1646
|
-
--vscode-tab-hoverBackground: #1f1f1f;
|
|
1647
|
-
--vscode-tab-inactiveBackground: #181818;
|
|
1648
|
-
--vscode-tab-inactiveForeground: #9d9d9d;
|
|
1649
|
-
--vscode-tab-inactiveModifiedBorder: rgba(51, 153, 204, 0.5);
|
|
1650
|
-
--vscode-tab-lastPinnedBorder: rgba(204, 204, 204, 0.2);
|
|
1651
|
-
--vscode-tab-unfocusedActiveBackground: #1f1f1f;
|
|
1652
|
-
--vscode-tab-unfocusedActiveBorder: #1f1f1f;
|
|
1653
|
-
--vscode-tab-unfocusedActiveBorderTop: #2b2b2b;
|
|
1654
|
-
--vscode-tab-unfocusedActiveForeground: rgba(255, 255, 255, 0.5);
|
|
1655
|
-
--vscode-tab-unfocusedActiveModifiedBorder: rgba(51, 153, 204, 0.5);
|
|
1656
|
-
--vscode-tab-unfocusedHoverBackground: #1f1f1f;
|
|
1657
|
-
--vscode-tab-unfocusedInactiveBackground: #181818;
|
|
1658
|
-
--vscode-tab-unfocusedInactiveForeground: rgba(157, 157, 157, 0.5);
|
|
1659
|
-
--vscode-tab-unfocusedInactiveModifiedBorder: rgba(51, 153, 204, 0.25);
|
|
1660
|
-
--vscode-terminal-ansiBlack: #000000;
|
|
1661
|
-
--vscode-terminal-ansiBlue: #2472c8;
|
|
1662
|
-
--vscode-terminal-ansiBrightBlack: #666666;
|
|
1663
|
-
--vscode-terminal-ansiBrightBlue: #3b8eea;
|
|
1664
|
-
--vscode-terminal-ansiBrightCyan: #29b8db;
|
|
1665
|
-
--vscode-terminal-ansiBrightGreen: #23d18b;
|
|
1666
|
-
--vscode-terminal-ansiBrightMagenta: #d670d6;
|
|
1667
|
-
--vscode-terminal-ansiBrightRed: #f14c4c;
|
|
1668
|
-
--vscode-terminal-ansiBrightWhite: #e5e5e5;
|
|
1669
|
-
--vscode-terminal-ansiBrightYellow: #f5f543;
|
|
1670
|
-
--vscode-terminal-ansiCyan: #11a8cd;
|
|
1671
|
-
--vscode-terminal-ansiGreen: #0dbc79;
|
|
1672
|
-
--vscode-terminal-ansiMagenta: #bc3fbc;
|
|
1673
|
-
--vscode-terminal-ansiRed: #cd3131;
|
|
1674
|
-
--vscode-terminal-ansiWhite: #e5e5e5;
|
|
1675
|
-
--vscode-terminal-ansiYellow: #e5e510;
|
|
1676
|
-
--vscode-terminal-border: #2b2b2b;
|
|
1677
|
-
--vscode-terminal-dropBackground: rgba(83, 89, 93, 0.5);
|
|
1678
|
-
--vscode-terminal-findMatchBackground: #9e6a03;
|
|
1679
|
-
--vscode-terminal-findMatchHighlightBackground: rgba(234, 92, 0, 0.33);
|
|
1680
|
-
--vscode-terminal-foreground: #cccccc;
|
|
1681
|
-
--vscode-terminal-hoverHighlightBackground: rgba(38, 79, 120, 0.13);
|
|
1682
|
-
--vscode-terminal-inactiveSelectionBackground: #3a3d41;
|
|
1683
|
-
--vscode-terminal-selectionBackground: #264f78;
|
|
1684
|
-
--vscode-terminal-tab-activeBorder: #0078d4;
|
|
1685
|
-
--vscode-terminalCommandDecoration-defaultBackground: rgba(255, 255, 255, 0.25);
|
|
1686
|
-
--vscode-terminalCommandDecoration-errorBackground: #f14c4c;
|
|
1687
|
-
--vscode-terminalCommandDecoration-successBackground: #1b81a8;
|
|
1688
|
-
--vscode-terminalOverviewRuler-cursorForeground: rgba(160, 160, 160, 0.8);
|
|
1689
|
-
--vscode-terminalOverviewRuler-findMatchForeground: rgba(209, 134, 22, 0.49);
|
|
1690
|
-
--vscode-terminalStickyScrollHover-background: #2a2d2e;
|
|
1691
|
-
--vscode-testing-coverCountBadgeBackground: #616161;
|
|
1692
|
-
--vscode-testing-coverCountBadgeForeground: #f8f8f8;
|
|
1693
|
-
--vscode-testing-coveredBackground: rgba(156, 204, 44, 0.2);
|
|
1694
|
-
--vscode-testing-coveredBorder: rgba(156, 204, 44, 0.15);
|
|
1695
|
-
--vscode-testing-coveredGutterBackground: rgba(156, 204, 44, 0.12);
|
|
1696
|
-
--vscode-testing-iconErrored: #f14c4c;
|
|
1697
|
-
--vscode-testing-iconErrored-retired: rgba(241, 76, 76, 0.7);
|
|
1698
|
-
--vscode-testing-iconFailed: #f14c4c;
|
|
1699
|
-
--vscode-testing-iconFailed-retired: rgba(241, 76, 76, 0.7);
|
|
1700
|
-
--vscode-testing-iconPassed: #73c991;
|
|
1701
|
-
--vscode-testing-iconPassed-retired: rgba(115, 201, 145, 0.7);
|
|
1702
|
-
--vscode-testing-iconQueued: #cca700;
|
|
1703
|
-
--vscode-testing-iconQueued-retired: rgba(204, 167, 0, 0.7);
|
|
1704
|
-
--vscode-testing-iconSkipped: #848484;
|
|
1705
|
-
--vscode-testing-iconSkipped-retired: rgba(132, 132, 132, 0.7);
|
|
1706
|
-
--vscode-testing-iconUnset: #848484;
|
|
1707
|
-
--vscode-testing-iconUnset-retired: rgba(132, 132, 132, 0.7);
|
|
1708
|
-
--vscode-testing-message-error-decorationForeground: #f14c4c;
|
|
1709
|
-
--vscode-testing-message-error-lineBackground: rgba(255, 0, 0, 0.2);
|
|
1710
|
-
--vscode-testing-message-info-decorationForeground: rgba(204, 204, 204, 0.5);
|
|
1711
|
-
--vscode-testing-messagePeekBorder: #3794ff;
|
|
1712
|
-
--vscode-testing-messagePeekHeaderBackground: rgba(55, 148, 255, 0.1);
|
|
1713
|
-
--vscode-testing-peekBorder: #f14c4c;
|
|
1714
|
-
--vscode-testing-peekHeaderBackground: rgba(241, 76, 76, 0.1);
|
|
1715
|
-
--vscode-testing-runAction: #73c991;
|
|
1716
|
-
--vscode-testing-uncoveredBackground: rgba(255, 0, 0, 0.2);
|
|
1717
|
-
--vscode-testing-uncoveredBorder: rgba(255, 0, 0, 0.15);
|
|
1718
|
-
--vscode-testing-uncoveredBranchBackground: #781212;
|
|
1719
|
-
--vscode-testing-uncoveredGutterBackground: rgba(255, 0, 0, 0.3);
|
|
1720
|
-
--vscode-textBlockQuote-background: #2b2b2b;
|
|
1721
|
-
--vscode-textBlockQuote-border: #616161;
|
|
1722
|
-
--vscode-textCodeBlock-background: #2b2b2b;
|
|
1723
|
-
--vscode-textLink-activeForeground: #4daafc;
|
|
1724
|
-
--vscode-textLink-foreground: #4daafc;
|
|
1725
|
-
--vscode-textPreformat-background: #3c3c3c;
|
|
1726
|
-
--vscode-textPreformat-foreground: #d0d0d0;
|
|
1727
|
-
--vscode-textSeparator-foreground: #21262d;
|
|
1728
|
-
--vscode-titleBar-activeBackground: #181818;
|
|
1729
|
-
--vscode-titleBar-activeForeground: #cccccc;
|
|
1730
|
-
--vscode-titleBar-border: #2b2b2b;
|
|
1731
|
-
--vscode-titleBar-inactiveBackground: #1f1f1f;
|
|
1732
|
-
--vscode-titleBar-inactiveForeground: #9d9d9d;
|
|
1733
|
-
--vscode-toolbar-activeBackground: rgba(99, 102, 103, 0.31);
|
|
1734
|
-
--vscode-toolbar-hoverBackground: rgba(90, 93, 94, 0.31);
|
|
1735
|
-
--vscode-tree-inactiveIndentGuidesStroke: rgba(88, 88, 88, 0.4);
|
|
1736
|
-
--vscode-tree-indentGuidesStroke: #585858;
|
|
1737
|
-
--vscode-tree-tableColumnsBorder: rgba(204, 204, 204, 0.13);
|
|
1738
|
-
--vscode-tree-tableOddRowsBackground: rgba(204, 204, 204, 0.04);
|
|
1739
|
-
--vscode-walkThrough-embeddedEditorBackground: rgba(0, 0, 0, 0.4);
|
|
1740
|
-
--vscode-walkthrough-stepTitle-foreground: #ffffff;
|
|
1741
|
-
--vscode-welcomePage-progress-background: #313131;
|
|
1742
|
-
--vscode-welcomePage-progress-foreground: #0078d4;
|
|
1743
|
-
--vscode-welcomePage-tileBackground: #2b2b2b;
|
|
1744
|
-
--vscode-welcomePage-tileBorder: rgba(255, 255, 255, 0.1);
|
|
1745
|
-
--vscode-welcomePage-tileHoverBackground: #262626;
|
|
1746
|
-
--vscode-widget-border: #313131;
|
|
1747
|
-
--vscode-widget-shadow: rgba(0, 0, 0, 0.36);
|
|
1748
|
-
}
|
|
1749
1301
|
/*---------------------------------------------------------------------------------------------
|
|
1750
1302
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
1751
1303
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
@@ -2352,747 +1904,751 @@ imported in Sourcegraph shell.
|
|
|
2352
1904
|
styles in consumer. See @mixin reset-styles for more details
|
|
2353
1905
|
*/
|
|
2354
1906
|
.tw-invisible {
|
|
2355
|
-
|
|
1907
|
+
visibility: hidden;
|
|
2356
1908
|
}
|
|
2357
1909
|
.tw-absolute {
|
|
2358
|
-
|
|
1910
|
+
position: absolute;
|
|
2359
1911
|
}
|
|
2360
1912
|
.tw-relative {
|
|
2361
|
-
|
|
1913
|
+
position: relative;
|
|
2362
1914
|
}
|
|
2363
1915
|
.tw-sticky {
|
|
2364
|
-
|
|
1916
|
+
position: sticky;
|
|
2365
1917
|
}
|
|
2366
1918
|
.tw-bottom-0 {
|
|
2367
|
-
|
|
1919
|
+
bottom: 0px;
|
|
2368
1920
|
}
|
|
2369
1921
|
.tw-left-\[0px\] {
|
|
2370
|
-
|
|
1922
|
+
left: 0px;
|
|
2371
1923
|
}
|
|
2372
1924
|
.tw-left-\[5\.5px\] {
|
|
2373
|
-
|
|
1925
|
+
left: 5.5px;
|
|
2374
1926
|
}
|
|
2375
1927
|
.tw-top-\[0px\] {
|
|
2376
|
-
|
|
1928
|
+
top: 0px;
|
|
2377
1929
|
}
|
|
2378
1930
|
.tw-top-\[5\.5px\] {
|
|
2379
|
-
|
|
1931
|
+
top: 5.5px;
|
|
2380
1932
|
}
|
|
2381
1933
|
.tw-z-50 {
|
|
2382
|
-
|
|
1934
|
+
z-index: 50;
|
|
2383
1935
|
}
|
|
2384
1936
|
.tw-col-span-4 {
|
|
2385
|
-
|
|
1937
|
+
grid-column: span 4 / span 4;
|
|
2386
1938
|
}
|
|
2387
1939
|
.tw-m-5 {
|
|
2388
|
-
|
|
1940
|
+
margin: 10px;
|
|
2389
1941
|
}
|
|
2390
1942
|
.tw--mx-2 {
|
|
2391
|
-
|
|
2392
|
-
|
|
1943
|
+
margin-left: -4px;
|
|
1944
|
+
margin-right: -4px;
|
|
2393
1945
|
}
|
|
2394
1946
|
.tw-my-2 {
|
|
2395
|
-
|
|
2396
|
-
|
|
1947
|
+
margin-top: 4px;
|
|
1948
|
+
margin-bottom: 4px;
|
|
2397
1949
|
}
|
|
2398
1950
|
.tw-mb-4 {
|
|
2399
|
-
|
|
1951
|
+
margin-bottom: 8px;
|
|
2400
1952
|
}
|
|
2401
1953
|
.tw-mb-5 {
|
|
2402
|
-
|
|
1954
|
+
margin-bottom: 10px;
|
|
2403
1955
|
}
|
|
2404
1956
|
.tw-mb-6 {
|
|
2405
|
-
|
|
1957
|
+
margin-bottom: 12px;
|
|
2406
1958
|
}
|
|
2407
1959
|
.tw-mb-8 {
|
|
2408
|
-
|
|
1960
|
+
margin-bottom: 16px;
|
|
2409
1961
|
}
|
|
2410
1962
|
.tw-ml-1 {
|
|
2411
|
-
|
|
1963
|
+
margin-left: 2px;
|
|
2412
1964
|
}
|
|
2413
1965
|
.tw-ml-2 {
|
|
2414
|
-
|
|
1966
|
+
margin-left: 4px;
|
|
2415
1967
|
}
|
|
2416
1968
|
.tw-ml-4 {
|
|
2417
|
-
|
|
1969
|
+
margin-left: 8px;
|
|
2418
1970
|
}
|
|
2419
1971
|
.tw-ml-auto {
|
|
2420
|
-
|
|
1972
|
+
margin-left: auto;
|
|
2421
1973
|
}
|
|
2422
1974
|
.tw-mr-1 {
|
|
2423
|
-
|
|
1975
|
+
margin-right: 2px;
|
|
2424
1976
|
}
|
|
2425
1977
|
.tw-mr-2 {
|
|
2426
|
-
|
|
1978
|
+
margin-right: 4px;
|
|
2427
1979
|
}
|
|
2428
1980
|
.tw-mt-0 {
|
|
2429
|
-
|
|
1981
|
+
margin-top: 0px;
|
|
2430
1982
|
}
|
|
2431
1983
|
.tw-mt-0\.5 {
|
|
2432
|
-
|
|
1984
|
+
margin-top: 0.125rem;
|
|
2433
1985
|
}
|
|
2434
1986
|
.tw-mt-1 {
|
|
2435
|
-
|
|
1987
|
+
margin-top: 2px;
|
|
2436
1988
|
}
|
|
2437
1989
|
.tw-mt-2 {
|
|
2438
|
-
|
|
1990
|
+
margin-top: 4px;
|
|
2439
1991
|
}
|
|
2440
1992
|
.tw-mt-4 {
|
|
2441
|
-
|
|
1993
|
+
margin-top: 8px;
|
|
2442
1994
|
}
|
|
2443
1995
|
.tw-mt-6 {
|
|
2444
|
-
|
|
1996
|
+
margin-top: 12px;
|
|
2445
1997
|
}
|
|
2446
1998
|
.tw-mt-\[-1px\] {
|
|
2447
|
-
|
|
1999
|
+
margin-top: -1px;
|
|
2448
2000
|
}
|
|
2449
2001
|
.tw-mt-auto {
|
|
2450
|
-
|
|
2002
|
+
margin-top: auto;
|
|
2451
2003
|
}
|
|
2452
2004
|
.tw-flex {
|
|
2453
|
-
|
|
2005
|
+
display: flex;
|
|
2454
2006
|
}
|
|
2455
2007
|
.tw-inline-flex {
|
|
2456
|
-
|
|
2008
|
+
display: inline-flex;
|
|
2457
2009
|
}
|
|
2458
2010
|
.tw-grid {
|
|
2459
|
-
|
|
2011
|
+
display: grid;
|
|
2012
|
+
}
|
|
2013
|
+
.tw-size-8 {
|
|
2014
|
+
width: 16px;
|
|
2015
|
+
height: 16px;
|
|
2460
2016
|
}
|
|
2461
2017
|
.\!tw-h-\[30px\] {
|
|
2462
|
-
|
|
2018
|
+
height: 30px !important;
|
|
2463
2019
|
}
|
|
2464
2020
|
.tw-h-8 {
|
|
2465
|
-
|
|
2021
|
+
height: 16px;
|
|
2466
2022
|
}
|
|
2467
2023
|
.tw-h-\[1\.375rem\] {
|
|
2468
|
-
|
|
2024
|
+
height: 1.375rem;
|
|
2469
2025
|
}
|
|
2470
2026
|
.tw-h-\[18px\] {
|
|
2471
|
-
|
|
2027
|
+
height: 18px;
|
|
2472
2028
|
}
|
|
2473
2029
|
.tw-h-\[1em\] {
|
|
2474
|
-
|
|
2030
|
+
height: 1em;
|
|
2475
2031
|
}
|
|
2476
2032
|
.tw-h-\[20px\] {
|
|
2477
|
-
|
|
2033
|
+
height: 20px;
|
|
2478
2034
|
}
|
|
2479
2035
|
.tw-h-\[50vh\] {
|
|
2480
|
-
|
|
2036
|
+
height: 50vh;
|
|
2481
2037
|
}
|
|
2482
2038
|
.tw-h-\[7px\] {
|
|
2483
|
-
|
|
2039
|
+
height: 7px;
|
|
2484
2040
|
}
|
|
2485
2041
|
.tw-h-full {
|
|
2486
|
-
|
|
2042
|
+
height: 100%;
|
|
2487
2043
|
}
|
|
2488
2044
|
.tw-h-px {
|
|
2489
|
-
|
|
2045
|
+
height: 1px;
|
|
2490
2046
|
}
|
|
2491
2047
|
.\!tw-max-h-\[unset\] {
|
|
2492
|
-
|
|
2048
|
+
max-height: unset !important;
|
|
2493
2049
|
}
|
|
2494
2050
|
.tw-max-h-\[500px\] {
|
|
2495
|
-
|
|
2051
|
+
max-height: 500px;
|
|
2496
2052
|
}
|
|
2497
2053
|
.tw-w-72 {
|
|
2498
|
-
|
|
2054
|
+
width: 18rem;
|
|
2499
2055
|
}
|
|
2500
2056
|
.tw-w-8 {
|
|
2501
|
-
|
|
2057
|
+
width: 16px;
|
|
2502
2058
|
}
|
|
2503
2059
|
.tw-w-\[1\.375rem\] {
|
|
2504
|
-
|
|
2060
|
+
width: 1.375rem;
|
|
2505
2061
|
}
|
|
2506
2062
|
.tw-w-\[18px\] {
|
|
2507
|
-
|
|
2063
|
+
width: 18px;
|
|
2508
2064
|
}
|
|
2509
2065
|
.tw-w-\[1em\] {
|
|
2510
|
-
|
|
2066
|
+
width: 1em;
|
|
2511
2067
|
}
|
|
2512
2068
|
.tw-w-\[20px\] {
|
|
2513
|
-
|
|
2069
|
+
width: 20px;
|
|
2070
|
+
}
|
|
2071
|
+
.tw-w-\[225px\] {
|
|
2072
|
+
width: 225px;
|
|
2514
2073
|
}
|
|
2515
2074
|
.tw-w-\[75vw\] {
|
|
2516
|
-
|
|
2075
|
+
width: 75vw;
|
|
2517
2076
|
}
|
|
2518
2077
|
.tw-w-\[7px\] {
|
|
2519
|
-
|
|
2078
|
+
width: 7px;
|
|
2520
2079
|
}
|
|
2521
2080
|
.tw-w-\[unset\] {
|
|
2522
|
-
|
|
2081
|
+
width: unset;
|
|
2523
2082
|
}
|
|
2524
2083
|
.tw-w-full {
|
|
2525
|
-
|
|
2084
|
+
width: 100%;
|
|
2526
2085
|
}
|
|
2527
2086
|
.tw-min-w-\[1\.5em\] {
|
|
2528
|
-
|
|
2087
|
+
min-width: 1.5em;
|
|
2529
2088
|
}
|
|
2530
2089
|
.tw-min-w-\[325px\] {
|
|
2531
|
-
|
|
2090
|
+
min-width: 325px;
|
|
2532
2091
|
}
|
|
2533
2092
|
.\!tw-max-w-\[unset\] {
|
|
2534
|
-
|
|
2093
|
+
max-width: unset !important;
|
|
2535
2094
|
}
|
|
2536
2095
|
.tw-max-w-72 {
|
|
2537
|
-
|
|
2096
|
+
max-width: 18rem;
|
|
2538
2097
|
}
|
|
2539
2098
|
.tw-max-w-\[550px\] {
|
|
2540
|
-
|
|
2099
|
+
max-width: 550px;
|
|
2541
2100
|
}
|
|
2542
2101
|
.tw-max-w-\[90\%\] {
|
|
2543
|
-
|
|
2102
|
+
max-width: 90%;
|
|
2544
2103
|
}
|
|
2545
2104
|
.tw-max-w-full {
|
|
2546
|
-
|
|
2105
|
+
max-width: 100%;
|
|
2547
2106
|
}
|
|
2548
2107
|
.tw-max-w-lg {
|
|
2549
|
-
|
|
2108
|
+
max-width: 32rem;
|
|
2550
2109
|
}
|
|
2551
2110
|
.tw-flex-1 {
|
|
2552
|
-
|
|
2111
|
+
flex: 1 1 0%;
|
|
2553
2112
|
}
|
|
2554
2113
|
.tw-flex-none {
|
|
2555
|
-
|
|
2114
|
+
flex: none;
|
|
2556
2115
|
}
|
|
2557
2116
|
.tw-shrink-0 {
|
|
2558
|
-
|
|
2117
|
+
flex-shrink: 0;
|
|
2559
2118
|
}
|
|
2560
2119
|
.tw-flex-grow {
|
|
2561
|
-
|
|
2120
|
+
flex-grow: 1;
|
|
2562
2121
|
}
|
|
2563
2122
|
.tw-grow {
|
|
2564
|
-
|
|
2123
|
+
flex-grow: 1;
|
|
2565
2124
|
}
|
|
2566
2125
|
.-tw-translate-y-\[\.2em\] {
|
|
2567
|
-
|
|
2568
|
-
|
|
2126
|
+
--tw-translate-y: -.2em;
|
|
2127
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
2569
2128
|
}
|
|
2570
2129
|
.tw-translate-x-\[1px\] {
|
|
2571
|
-
|
|
2572
|
-
|
|
2130
|
+
--tw-translate-x: 1px;
|
|
2131
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
2573
2132
|
}
|
|
2574
2133
|
.tw-translate-y-\[1px\] {
|
|
2575
|
-
|
|
2576
|
-
|
|
2134
|
+
--tw-translate-y: 1px;
|
|
2135
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
2577
2136
|
}
|
|
2578
2137
|
@keyframes tw-spin {
|
|
2579
|
-
|
|
2580
|
-
|
|
2581
|
-
|
|
2138
|
+
to {
|
|
2139
|
+
transform: rotate(360deg);
|
|
2140
|
+
}
|
|
2582
2141
|
}
|
|
2583
2142
|
.tw-animate-spin {
|
|
2584
|
-
|
|
2143
|
+
animation: tw-spin 1s linear infinite;
|
|
2585
2144
|
}
|
|
2586
2145
|
.tw-cursor-pointer {
|
|
2587
|
-
|
|
2146
|
+
cursor: pointer;
|
|
2588
2147
|
}
|
|
2589
2148
|
.tw-select-none {
|
|
2590
|
-
|
|
2149
|
+
user-select: none;
|
|
2591
2150
|
}
|
|
2592
2151
|
.tw-list-none {
|
|
2593
|
-
|
|
2152
|
+
list-style-type: none;
|
|
2594
2153
|
}
|
|
2595
2154
|
.tw-grid-cols-5 {
|
|
2596
|
-
|
|
2597
|
-
}
|
|
2598
|
-
.tw-grid-cols-6 {
|
|
2599
|
-
grid-template-columns: repeat(6, minmax(0, 1fr));
|
|
2155
|
+
grid-template-columns: repeat(5, minmax(0, 1fr));
|
|
2600
2156
|
}
|
|
2601
2157
|
.tw-flex-col {
|
|
2602
|
-
|
|
2158
|
+
flex-direction: column;
|
|
2603
2159
|
}
|
|
2604
2160
|
.tw-flex-wrap {
|
|
2605
|
-
|
|
2161
|
+
flex-wrap: wrap;
|
|
2606
2162
|
}
|
|
2607
2163
|
.tw-flex-wrap-reverse {
|
|
2608
|
-
|
|
2164
|
+
flex-wrap: wrap-reverse;
|
|
2609
2165
|
}
|
|
2610
2166
|
.\!tw-items-start {
|
|
2611
|
-
|
|
2167
|
+
align-items: flex-start !important;
|
|
2612
2168
|
}
|
|
2613
2169
|
.tw-items-start {
|
|
2614
|
-
|
|
2170
|
+
align-items: flex-start;
|
|
2615
2171
|
}
|
|
2616
2172
|
.tw-items-end {
|
|
2617
|
-
|
|
2173
|
+
align-items: flex-end;
|
|
2618
2174
|
}
|
|
2619
2175
|
.tw-items-center {
|
|
2620
|
-
|
|
2176
|
+
align-items: center;
|
|
2621
2177
|
}
|
|
2622
2178
|
.tw-items-baseline {
|
|
2623
|
-
|
|
2179
|
+
align-items: baseline;
|
|
2624
2180
|
}
|
|
2625
2181
|
.tw-items-stretch {
|
|
2626
|
-
|
|
2182
|
+
align-items: stretch;
|
|
2627
2183
|
}
|
|
2628
2184
|
.tw-justify-end {
|
|
2629
|
-
|
|
2185
|
+
justify-content: flex-end;
|
|
2630
2186
|
}
|
|
2631
2187
|
.tw-justify-center {
|
|
2632
|
-
|
|
2188
|
+
justify-content: center;
|
|
2633
2189
|
}
|
|
2634
2190
|
.tw-justify-between {
|
|
2635
|
-
|
|
2191
|
+
justify-content: space-between;
|
|
2636
2192
|
}
|
|
2637
2193
|
.tw-gap-0 {
|
|
2638
|
-
|
|
2194
|
+
gap: 0px;
|
|
2639
2195
|
}
|
|
2640
2196
|
.tw-gap-0\.5 {
|
|
2641
|
-
|
|
2197
|
+
gap: 0.125rem;
|
|
2642
2198
|
}
|
|
2643
2199
|
.tw-gap-1 {
|
|
2644
|
-
|
|
2200
|
+
gap: 2px;
|
|
2645
2201
|
}
|
|
2646
2202
|
.tw-gap-1\.5 {
|
|
2647
|
-
|
|
2203
|
+
gap: 3px;
|
|
2648
2204
|
}
|
|
2649
2205
|
.tw-gap-10 {
|
|
2650
|
-
|
|
2206
|
+
gap: 20px;
|
|
2651
2207
|
}
|
|
2652
2208
|
.tw-gap-2 {
|
|
2653
|
-
|
|
2209
|
+
gap: 4px;
|
|
2654
2210
|
}
|
|
2655
2211
|
.tw-gap-3 {
|
|
2656
|
-
|
|
2212
|
+
gap: 6px;
|
|
2657
2213
|
}
|
|
2658
2214
|
.tw-gap-4 {
|
|
2659
|
-
|
|
2215
|
+
gap: 8px;
|
|
2660
2216
|
}
|
|
2661
2217
|
.tw-gap-5 {
|
|
2662
|
-
|
|
2218
|
+
gap: 10px;
|
|
2663
2219
|
}
|
|
2664
2220
|
.tw-gap-6 {
|
|
2665
|
-
|
|
2221
|
+
gap: 12px;
|
|
2666
2222
|
}
|
|
2667
2223
|
.tw-gap-8 {
|
|
2668
|
-
|
|
2224
|
+
gap: 16px;
|
|
2669
2225
|
}
|
|
2670
2226
|
.tw-gap-x-3 {
|
|
2671
|
-
|
|
2227
|
+
column-gap: 6px;
|
|
2672
2228
|
}
|
|
2673
2229
|
.tw-gap-x-4 {
|
|
2674
|
-
|
|
2230
|
+
column-gap: 8px;
|
|
2675
2231
|
}
|
|
2676
2232
|
.tw-gap-y-1 {
|
|
2677
|
-
|
|
2233
|
+
row-gap: 2px;
|
|
2678
2234
|
}
|
|
2679
2235
|
.tw-gap-y-2 {
|
|
2680
|
-
|
|
2236
|
+
row-gap: 4px;
|
|
2681
2237
|
}
|
|
2682
2238
|
.tw-divide-x > :not([hidden]) ~ :not([hidden]) {
|
|
2683
|
-
|
|
2684
|
-
|
|
2685
|
-
|
|
2239
|
+
--tw-divide-x-reverse: 0;
|
|
2240
|
+
border-right-width: calc(1px * var(--tw-divide-x-reverse));
|
|
2241
|
+
border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)));
|
|
2686
2242
|
}
|
|
2687
2243
|
.tw-divide-muted > :not([hidden]) ~ :not([hidden]) {
|
|
2688
|
-
|
|
2244
|
+
border-color: var(--vscode-input-background);
|
|
2689
2245
|
}
|
|
2690
2246
|
.tw-self-stretch {
|
|
2691
|
-
|
|
2247
|
+
align-self: stretch;
|
|
2692
2248
|
}
|
|
2693
2249
|
.tw-overflow-auto {
|
|
2694
|
-
|
|
2250
|
+
overflow: auto;
|
|
2695
2251
|
}
|
|
2696
2252
|
.tw-overflow-hidden {
|
|
2697
|
-
|
|
2253
|
+
overflow: hidden;
|
|
2698
2254
|
}
|
|
2699
2255
|
.tw-overflow-clip {
|
|
2700
|
-
|
|
2256
|
+
overflow: clip;
|
|
2701
2257
|
}
|
|
2702
2258
|
.tw-overflow-y-auto {
|
|
2703
|
-
|
|
2259
|
+
overflow-y: auto;
|
|
2704
2260
|
}
|
|
2705
2261
|
.tw-overflow-x-hidden {
|
|
2706
|
-
|
|
2262
|
+
overflow-x: hidden;
|
|
2707
2263
|
}
|
|
2708
2264
|
.tw-truncate {
|
|
2709
|
-
|
|
2710
|
-
|
|
2711
|
-
|
|
2265
|
+
overflow: hidden;
|
|
2266
|
+
text-overflow: ellipsis;
|
|
2267
|
+
white-space: nowrap;
|
|
2712
2268
|
}
|
|
2713
2269
|
.tw-text-ellipsis {
|
|
2714
|
-
|
|
2270
|
+
text-overflow: ellipsis;
|
|
2715
2271
|
}
|
|
2716
2272
|
.tw-whitespace-nowrap {
|
|
2717
|
-
|
|
2273
|
+
white-space: nowrap;
|
|
2718
2274
|
}
|
|
2719
2275
|
.tw-whitespace-pre-line {
|
|
2720
|
-
|
|
2276
|
+
white-space: pre-line;
|
|
2721
2277
|
}
|
|
2722
2278
|
.tw-text-nowrap {
|
|
2723
|
-
|
|
2279
|
+
text-wrap: nowrap;
|
|
2724
2280
|
}
|
|
2725
2281
|
.\!tw-rounded-full {
|
|
2726
|
-
|
|
2282
|
+
border-radius: 9999px !important;
|
|
2727
2283
|
}
|
|
2728
2284
|
.\!tw-rounded-none {
|
|
2729
|
-
|
|
2285
|
+
border-radius: 0px !important;
|
|
2730
2286
|
}
|
|
2731
2287
|
.tw-rounded {
|
|
2732
|
-
|
|
2288
|
+
border-radius: 0.25rem;
|
|
2733
2289
|
}
|
|
2734
2290
|
.tw-rounded-\[0\.5px\] {
|
|
2735
|
-
|
|
2291
|
+
border-radius: 0.5px;
|
|
2736
2292
|
}
|
|
2737
2293
|
.tw-rounded-\[6px\] {
|
|
2738
|
-
|
|
2294
|
+
border-radius: 6px;
|
|
2739
2295
|
}
|
|
2740
2296
|
.tw-rounded-full {
|
|
2741
|
-
|
|
2297
|
+
border-radius: 9999px;
|
|
2742
2298
|
}
|
|
2743
2299
|
.tw-rounded-lg {
|
|
2744
|
-
|
|
2300
|
+
border-radius: 6px;
|
|
2745
2301
|
}
|
|
2746
2302
|
.tw-rounded-md {
|
|
2747
|
-
|
|
2303
|
+
border-radius: 4px;
|
|
2748
2304
|
}
|
|
2749
2305
|
.tw-rounded-none {
|
|
2750
|
-
|
|
2306
|
+
border-radius: 0px;
|
|
2751
2307
|
}
|
|
2752
2308
|
.tw-rounded-sm {
|
|
2753
|
-
|
|
2309
|
+
border-radius: 2px;
|
|
2754
2310
|
}
|
|
2755
2311
|
.tw-border {
|
|
2756
|
-
|
|
2312
|
+
border-width: 1px;
|
|
2757
2313
|
}
|
|
2758
2314
|
.tw-border-\[1px\] {
|
|
2759
|
-
|
|
2315
|
+
border-width: 1px;
|
|
2760
2316
|
}
|
|
2761
2317
|
.\!tw-border-b-0 {
|
|
2762
|
-
|
|
2318
|
+
border-bottom-width: 0px !important;
|
|
2763
2319
|
}
|
|
2764
2320
|
.tw-border-b {
|
|
2765
|
-
|
|
2321
|
+
border-bottom-width: 1px;
|
|
2766
2322
|
}
|
|
2767
2323
|
.tw-border-b-\[1px\] {
|
|
2768
|
-
|
|
2324
|
+
border-bottom-width: 1px;
|
|
2769
2325
|
}
|
|
2770
2326
|
.tw-border-t {
|
|
2771
|
-
|
|
2327
|
+
border-top-width: 1px;
|
|
2772
2328
|
}
|
|
2773
2329
|
.tw-border-solid {
|
|
2774
|
-
|
|
2330
|
+
border-style: solid;
|
|
2775
2331
|
}
|
|
2776
2332
|
.tw-border-none {
|
|
2777
|
-
|
|
2333
|
+
border-style: none;
|
|
2778
2334
|
}
|
|
2779
2335
|
.\!tw-border-\[var\(--vscode-tab-activeBorderTop\)\] {
|
|
2780
|
-
|
|
2336
|
+
border-color: var(--vscode-tab-activeBorderTop) !important;
|
|
2781
2337
|
}
|
|
2782
2338
|
.tw-border-border {
|
|
2783
|
-
|
|
2339
|
+
border-color: var(--vscode-dropdown-border);
|
|
2784
2340
|
}
|
|
2785
2341
|
.tw-border-button-border {
|
|
2786
|
-
|
|
2342
|
+
border-color: var(--vscode-button-border, transparent);
|
|
2787
2343
|
}
|
|
2788
2344
|
.tw-border-current {
|
|
2789
|
-
|
|
2345
|
+
border-color: currentColor;
|
|
2790
2346
|
}
|
|
2791
2347
|
.tw-border-keybinding-border {
|
|
2792
|
-
|
|
2348
|
+
border-color: var(--vscode-keybindingLabel-border);
|
|
2793
2349
|
}
|
|
2794
2350
|
.tw-border-muted-transparent {
|
|
2795
|
-
|
|
2351
|
+
border-color: color-mix(in lch, currentColor 15%, transparent);
|
|
2796
2352
|
}
|
|
2797
2353
|
.tw-border-ring {
|
|
2798
|
-
|
|
2354
|
+
border-color: var(--vscode-focusBorder);
|
|
2799
2355
|
}
|
|
2800
2356
|
.tw-border-transparent {
|
|
2801
|
-
|
|
2357
|
+
border-color: transparent;
|
|
2802
2358
|
}
|
|
2803
2359
|
.tw-border-b-border {
|
|
2804
|
-
|
|
2360
|
+
border-bottom-color: var(--vscode-dropdown-border);
|
|
2805
2361
|
}
|
|
2806
2362
|
.tw-border-e-transparent {
|
|
2807
|
-
|
|
2363
|
+
border-inline-end-color: transparent;
|
|
2808
2364
|
}
|
|
2809
2365
|
.tw-border-t-border {
|
|
2810
|
-
|
|
2366
|
+
border-top-color: var(--vscode-dropdown-border);
|
|
2811
2367
|
}
|
|
2812
2368
|
.\!tw-bg-\[unset\] {
|
|
2813
|
-
|
|
2369
|
+
background-color: unset !important;
|
|
2814
2370
|
}
|
|
2815
2371
|
.tw-bg-\[unset\] {
|
|
2816
|
-
|
|
2372
|
+
background-color: unset;
|
|
2373
|
+
}
|
|
2374
|
+
.tw-bg-accent {
|
|
2375
|
+
background-color: var(--vscode-list-activeSelectionBackground);
|
|
2817
2376
|
}
|
|
2818
2377
|
.tw-bg-background {
|
|
2819
|
-
|
|
2378
|
+
background-color: var(--vscode-editor-background);
|
|
2820
2379
|
}
|
|
2821
2380
|
.tw-bg-badge-background {
|
|
2822
|
-
|
|
2381
|
+
background-color: var(--vscode-badge-background);
|
|
2823
2382
|
}
|
|
2824
2383
|
.tw-bg-border {
|
|
2825
|
-
|
|
2384
|
+
background-color: var(--vscode-dropdown-border);
|
|
2826
2385
|
}
|
|
2827
2386
|
.tw-bg-button-background {
|
|
2828
|
-
|
|
2387
|
+
background-color: var(--vscode-button-background);
|
|
2829
2388
|
}
|
|
2830
2389
|
.tw-bg-button-secondary-background {
|
|
2831
|
-
|
|
2390
|
+
background-color: var(--vscode-button-secondaryBackground);
|
|
2832
2391
|
}
|
|
2833
2392
|
.tw-bg-current {
|
|
2834
|
-
|
|
2393
|
+
background-color: currentColor;
|
|
2835
2394
|
}
|
|
2836
2395
|
.tw-bg-keybinding-background {
|
|
2837
|
-
|
|
2396
|
+
background-color: var(--vscode-keybindingLabel-background);
|
|
2838
2397
|
}
|
|
2839
2398
|
.tw-bg-popover {
|
|
2840
|
-
|
|
2399
|
+
background-color: var(--vscode-quickInput-background);
|
|
2841
2400
|
}
|
|
2842
2401
|
.tw-bg-transparent {
|
|
2843
|
-
|
|
2402
|
+
background-color: transparent;
|
|
2844
2403
|
}
|
|
2845
2404
|
.\!tw-p-0 {
|
|
2846
|
-
|
|
2405
|
+
padding: 0px !important;
|
|
2847
2406
|
}
|
|
2848
2407
|
.\!tw-p-2 {
|
|
2849
|
-
|
|
2408
|
+
padding: 4px !important;
|
|
2850
2409
|
}
|
|
2851
2410
|
.\!tw-p-3 {
|
|
2852
|
-
|
|
2411
|
+
padding: 6px !important;
|
|
2853
2412
|
}
|
|
2854
2413
|
.tw-p-0 {
|
|
2855
|
-
|
|
2414
|
+
padding: 0px;
|
|
2856
2415
|
}
|
|
2857
2416
|
.tw-p-1 {
|
|
2858
|
-
|
|
2417
|
+
padding: 2px;
|
|
2859
2418
|
}
|
|
2860
2419
|
.tw-p-2 {
|
|
2861
|
-
|
|
2420
|
+
padding: 4px;
|
|
2862
2421
|
}
|
|
2863
2422
|
.tw-p-4 {
|
|
2864
|
-
|
|
2423
|
+
padding: 8px;
|
|
2865
2424
|
}
|
|
2866
2425
|
.tw-p-6 {
|
|
2867
|
-
|
|
2426
|
+
padding: 12px;
|
|
2868
2427
|
}
|
|
2869
2428
|
.tw-p-8 {
|
|
2870
|
-
|
|
2429
|
+
padding: 16px;
|
|
2871
2430
|
}
|
|
2872
2431
|
.tw-px-0 {
|
|
2873
|
-
|
|
2874
|
-
|
|
2432
|
+
padding-left: 0px;
|
|
2433
|
+
padding-right: 0px;
|
|
2875
2434
|
}
|
|
2876
2435
|
.tw-px-2 {
|
|
2877
|
-
|
|
2878
|
-
|
|
2436
|
+
padding-left: 4px;
|
|
2437
|
+
padding-right: 4px;
|
|
2879
2438
|
}
|
|
2880
2439
|
.tw-px-3 {
|
|
2881
|
-
|
|
2882
|
-
|
|
2440
|
+
padding-left: 6px;
|
|
2441
|
+
padding-right: 6px;
|
|
2883
2442
|
}
|
|
2884
2443
|
.tw-px-4 {
|
|
2885
|
-
|
|
2886
|
-
|
|
2444
|
+
padding-left: 8px;
|
|
2445
|
+
padding-right: 8px;
|
|
2887
2446
|
}
|
|
2888
2447
|
.tw-px-6 {
|
|
2889
|
-
|
|
2890
|
-
|
|
2448
|
+
padding-left: 12px;
|
|
2449
|
+
padding-right: 12px;
|
|
2891
2450
|
}
|
|
2892
2451
|
.tw-px-8 {
|
|
2893
|
-
|
|
2894
|
-
|
|
2452
|
+
padding-left: 16px;
|
|
2453
|
+
padding-right: 16px;
|
|
2895
2454
|
}
|
|
2896
2455
|
.tw-px-\[5px\] {
|
|
2897
|
-
|
|
2898
|
-
|
|
2456
|
+
padding-left: 5px;
|
|
2457
|
+
padding-right: 5px;
|
|
2899
2458
|
}
|
|
2900
2459
|
.tw-py-0 {
|
|
2901
|
-
|
|
2902
|
-
|
|
2460
|
+
padding-top: 0px;
|
|
2461
|
+
padding-bottom: 0px;
|
|
2903
2462
|
}
|
|
2904
2463
|
.tw-py-2 {
|
|
2905
|
-
|
|
2906
|
-
|
|
2464
|
+
padding-top: 4px;
|
|
2465
|
+
padding-bottom: 4px;
|
|
2907
2466
|
}
|
|
2908
2467
|
.tw-py-3 {
|
|
2909
|
-
|
|
2910
|
-
|
|
2468
|
+
padding-top: 6px;
|
|
2469
|
+
padding-bottom: 6px;
|
|
2911
2470
|
}
|
|
2912
2471
|
.tw-py-4 {
|
|
2913
|
-
|
|
2914
|
-
|
|
2472
|
+
padding-top: 8px;
|
|
2473
|
+
padding-bottom: 8px;
|
|
2915
2474
|
}
|
|
2916
2475
|
.tw-py-6 {
|
|
2917
|
-
|
|
2918
|
-
|
|
2476
|
+
padding-top: 12px;
|
|
2477
|
+
padding-bottom: 12px;
|
|
2919
2478
|
}
|
|
2920
2479
|
.tw-py-\[\.1rem\] {
|
|
2921
|
-
|
|
2922
|
-
|
|
2480
|
+
padding-top: .1rem;
|
|
2481
|
+
padding-bottom: .1rem;
|
|
2923
2482
|
}
|
|
2924
2483
|
.tw-pb-12 {
|
|
2925
|
-
|
|
2484
|
+
padding-bottom: 24px;
|
|
2926
2485
|
}
|
|
2927
2486
|
.tw-pb-3 {
|
|
2928
|
-
|
|
2487
|
+
padding-bottom: 6px;
|
|
2929
2488
|
}
|
|
2930
2489
|
.tw-pb-6 {
|
|
2931
|
-
|
|
2490
|
+
padding-bottom: 12px;
|
|
2932
2491
|
}
|
|
2933
2492
|
.tw-pl-5 {
|
|
2934
|
-
|
|
2493
|
+
padding-left: 10px;
|
|
2935
2494
|
}
|
|
2936
2495
|
.tw-pr-4 {
|
|
2937
|
-
|
|
2496
|
+
padding-right: 8px;
|
|
2938
2497
|
}
|
|
2939
2498
|
.tw-pt-2 {
|
|
2940
|
-
|
|
2499
|
+
padding-top: 4px;
|
|
2941
2500
|
}
|
|
2942
2501
|
.tw-pt-4 {
|
|
2943
|
-
|
|
2502
|
+
padding-top: 8px;
|
|
2944
2503
|
}
|
|
2945
2504
|
.tw-pt-6 {
|
|
2946
|
-
|
|
2505
|
+
padding-top: 12px;
|
|
2947
2506
|
}
|
|
2948
2507
|
.tw-pt-8 {
|
|
2949
|
-
|
|
2508
|
+
padding-top: 16px;
|
|
2950
2509
|
}
|
|
2951
2510
|
.tw-text-left {
|
|
2952
|
-
|
|
2511
|
+
text-align: left;
|
|
2953
2512
|
}
|
|
2954
2513
|
.tw-text-center {
|
|
2955
|
-
|
|
2956
|
-
}
|
|
2957
|
-
.tw-text-right {
|
|
2958
|
-
text-align: right;
|
|
2514
|
+
text-align: center;
|
|
2959
2515
|
}
|
|
2960
2516
|
.tw-align-middle {
|
|
2961
|
-
|
|
2517
|
+
vertical-align: middle;
|
|
2962
2518
|
}
|
|
2963
2519
|
.\!tw-text-md {
|
|
2964
|
-
|
|
2520
|
+
font-size: var(--vscode-font-size) !important;
|
|
2965
2521
|
}
|
|
2966
2522
|
.tw-text-lg {
|
|
2967
|
-
|
|
2523
|
+
font-size: calc(var(--vscode-font-size) * 15 / 13);
|
|
2968
2524
|
}
|
|
2969
2525
|
.tw-text-md {
|
|
2970
|
-
|
|
2526
|
+
font-size: var(--vscode-font-size);
|
|
2971
2527
|
}
|
|
2972
2528
|
.tw-text-sm {
|
|
2973
|
-
|
|
2529
|
+
font-size: calc(calc(12/13)*var(--vscode-font-size));
|
|
2974
2530
|
}
|
|
2975
2531
|
.tw-text-xs {
|
|
2976
|
-
|
|
2532
|
+
font-size: calc(calc(11/13)*var(--vscode-font-size));
|
|
2977
2533
|
}
|
|
2978
2534
|
.tw-text-xxs {
|
|
2979
|
-
|
|
2535
|
+
font-size: calc(calc(10/13)*var(--vscode-font-size));
|
|
2980
2536
|
}
|
|
2981
2537
|
.tw-font-medium {
|
|
2982
|
-
|
|
2538
|
+
font-weight: 500;
|
|
2983
2539
|
}
|
|
2984
2540
|
.tw-font-semibold {
|
|
2985
|
-
|
|
2541
|
+
font-weight: 600;
|
|
2986
2542
|
}
|
|
2987
2543
|
.tw-uppercase {
|
|
2988
|
-
|
|
2544
|
+
text-transform: uppercase;
|
|
2989
2545
|
}
|
|
2990
2546
|
.\!tw-leading-\[1\.2\] {
|
|
2991
|
-
|
|
2547
|
+
line-height: 1.2 !important;
|
|
2992
2548
|
}
|
|
2993
2549
|
.tw-leading-none {
|
|
2994
|
-
|
|
2550
|
+
line-height: 1;
|
|
2995
2551
|
}
|
|
2996
2552
|
.tw-leading-tight {
|
|
2997
|
-
|
|
2553
|
+
line-height: 1.25;
|
|
2998
2554
|
}
|
|
2999
2555
|
.tw-tracking-tight {
|
|
3000
|
-
|
|
2556
|
+
letter-spacing: -0.025em;
|
|
3001
2557
|
}
|
|
3002
2558
|
.tw-tracking-widest {
|
|
3003
|
-
|
|
2559
|
+
letter-spacing: 0.1em;
|
|
3004
2560
|
}
|
|
3005
2561
|
.\!tw-text-\[unset\] {
|
|
3006
|
-
|
|
2562
|
+
color: unset !important;
|
|
3007
2563
|
}
|
|
3008
2564
|
.\!tw-text-foreground {
|
|
3009
|
-
|
|
2565
|
+
color: var(--vscode-foreground) !important;
|
|
3010
2566
|
}
|
|
3011
2567
|
.\!tw-text-muted-foreground {
|
|
3012
|
-
|
|
2568
|
+
color: var(--vscode-input-placeholderForeground) !important;
|
|
3013
2569
|
}
|
|
3014
2570
|
.tw-text-accent-foreground {
|
|
3015
|
-
|
|
2571
|
+
color: var(--vscode-list-activeSelectionForeground);
|
|
3016
2572
|
}
|
|
3017
2573
|
.tw-text-badge-foreground {
|
|
3018
|
-
|
|
2574
|
+
color: var(--vscode-badge-foreground);
|
|
3019
2575
|
}
|
|
3020
2576
|
.tw-text-button-foreground {
|
|
3021
|
-
|
|
2577
|
+
color: var(--vscode-button-foreground);
|
|
3022
2578
|
}
|
|
3023
2579
|
.tw-text-button-secondary-foreground {
|
|
3024
|
-
|
|
2580
|
+
color: var(--vscode-button-secondaryForeground);
|
|
3025
2581
|
}
|
|
3026
2582
|
.tw-text-foreground {
|
|
3027
|
-
|
|
2583
|
+
color: var(--vscode-foreground);
|
|
3028
2584
|
}
|
|
3029
2585
|
.tw-text-keybinding-foreground {
|
|
3030
|
-
|
|
2586
|
+
color: var(--vscode-keybindingLabel-foreground);
|
|
3031
2587
|
}
|
|
3032
2588
|
.tw-text-link {
|
|
3033
|
-
|
|
2589
|
+
color: var(--vscode-textLink-foreground);
|
|
3034
2590
|
}
|
|
3035
2591
|
.tw-text-muted-foreground {
|
|
3036
|
-
|
|
2592
|
+
color: var(--vscode-input-placeholderForeground);
|
|
3037
2593
|
}
|
|
3038
2594
|
.tw-text-popover-foreground {
|
|
3039
|
-
|
|
2595
|
+
color: var(--vscode-dropdown-foreground);
|
|
3040
2596
|
}
|
|
3041
2597
|
.tw-underline-offset-4 {
|
|
3042
|
-
|
|
2598
|
+
text-underline-offset: 4px;
|
|
3043
2599
|
}
|
|
3044
2600
|
.\!tw-opacity-100 {
|
|
3045
|
-
|
|
2601
|
+
opacity: 1 !important;
|
|
3046
2602
|
}
|
|
3047
2603
|
.tw-opacity-30 {
|
|
3048
|
-
|
|
2604
|
+
opacity: 0.3;
|
|
3049
2605
|
}
|
|
3050
2606
|
.tw-opacity-60 {
|
|
3051
|
-
|
|
2607
|
+
opacity: 0.6;
|
|
3052
2608
|
}
|
|
3053
2609
|
.tw-opacity-65 {
|
|
3054
|
-
|
|
2610
|
+
opacity: 0.65;
|
|
3055
2611
|
}
|
|
3056
2612
|
.tw-opacity-75 {
|
|
3057
|
-
|
|
2613
|
+
opacity: 0.75;
|
|
3058
2614
|
}
|
|
3059
2615
|
.tw-opacity-80 {
|
|
3060
|
-
|
|
2616
|
+
opacity: 0.8;
|
|
3061
2617
|
}
|
|
3062
2618
|
.tw-shadow-lg {
|
|
3063
|
-
|
|
3064
|
-
|
|
3065
|
-
|
|
2619
|
+
--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
2620
|
+
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
|
|
2621
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
3066
2622
|
}
|
|
3067
2623
|
.tw-shadow-md {
|
|
3068
|
-
|
|
3069
|
-
|
|
3070
|
-
|
|
2624
|
+
--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
|
|
2625
|
+
--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
|
|
2626
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
3071
2627
|
}
|
|
3072
2628
|
.tw-outline-none {
|
|
3073
|
-
|
|
3074
|
-
|
|
2629
|
+
outline: 2px solid transparent;
|
|
2630
|
+
outline-offset: 2px;
|
|
3075
2631
|
}
|
|
3076
2632
|
.tw-transition {
|
|
3077
|
-
|
|
3078
|
-
|
|
3079
|
-
|
|
2633
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
2634
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2635
|
+
transition-duration: 150ms;
|
|
3080
2636
|
}
|
|
3081
2637
|
.tw-transition-all {
|
|
3082
|
-
|
|
3083
|
-
|
|
3084
|
-
|
|
2638
|
+
transition-property: all;
|
|
2639
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2640
|
+
transition-duration: 150ms;
|
|
3085
2641
|
}
|
|
3086
2642
|
.tw-transition-transform {
|
|
3087
|
-
|
|
3088
|
-
|
|
3089
|
-
|
|
2643
|
+
transition-property: transform;
|
|
2644
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2645
|
+
transition-duration: 150ms;
|
|
3090
2646
|
}
|
|
3091
2647
|
.tw-duration-150 {
|
|
3092
|
-
|
|
2648
|
+
transition-duration: 150ms;
|
|
3093
2649
|
}
|
|
3094
2650
|
.tw-duration-75 {
|
|
3095
|
-
|
|
2651
|
+
transition-duration: 75ms;
|
|
3096
2652
|
}
|
|
3097
2653
|
:root {
|
|
3098
2654
|
--vscode-font-size: 13px;
|
|
@@ -3450,255 +3006,255 @@ imported in Sourcegraph shell.
|
|
|
3450
3006
|
text-decoration: none;
|
|
3451
3007
|
}
|
|
3452
3008
|
.placeholder\:tw-text-muted-foreground::placeholder {
|
|
3453
|
-
|
|
3009
|
+
color: var(--vscode-input-placeholderForeground);
|
|
3454
3010
|
}
|
|
3455
3011
|
.empty\:tw-hidden:empty {
|
|
3456
|
-
|
|
3012
|
+
display: none;
|
|
3457
3013
|
}
|
|
3458
3014
|
.hover\:tw-bg-accent:hover {
|
|
3459
|
-
|
|
3015
|
+
background-color: var(--vscode-list-activeSelectionBackground);
|
|
3460
3016
|
}
|
|
3461
3017
|
.hover\:tw-bg-button-background-hover:hover {
|
|
3462
|
-
|
|
3018
|
+
background-color: var(--vscode-button-hoverBackground);
|
|
3463
3019
|
}
|
|
3464
3020
|
.hover\:tw-bg-button-secondary-background-hover:hover {
|
|
3465
|
-
|
|
3021
|
+
background-color: var(--vscode-button-secondaryHoverBackground);
|
|
3466
3022
|
}
|
|
3467
3023
|
.hover\:tw-bg-muted:hover {
|
|
3468
|
-
|
|
3024
|
+
background-color: var(--vscode-input-background);
|
|
3469
3025
|
}
|
|
3470
3026
|
.hover\:tw-bg-muted-transparent:hover {
|
|
3471
|
-
|
|
3027
|
+
background-color: color-mix(in lch, currentColor 15%, transparent);
|
|
3472
3028
|
}
|
|
3473
3029
|
.hover\:tw-bg-transparent:hover {
|
|
3474
|
-
|
|
3030
|
+
background-color: transparent;
|
|
3475
3031
|
}
|
|
3476
3032
|
.hover\:\!tw-text-accent-foreground:hover {
|
|
3477
|
-
|
|
3033
|
+
color: var(--vscode-list-activeSelectionForeground) !important;
|
|
3478
3034
|
}
|
|
3479
3035
|
.hover\:tw-text-accent-foreground:hover {
|
|
3480
|
-
|
|
3036
|
+
color: var(--vscode-list-activeSelectionForeground);
|
|
3481
3037
|
}
|
|
3482
3038
|
.hover\:tw-text-foreground:hover {
|
|
3483
|
-
|
|
3039
|
+
color: var(--vscode-foreground);
|
|
3484
3040
|
}
|
|
3485
3041
|
.hover\:tw-text-link-hover:hover {
|
|
3486
|
-
|
|
3042
|
+
color: var(--vscode-textLink-activeForeground);
|
|
3487
3043
|
}
|
|
3488
3044
|
.hover\:tw-underline:hover {
|
|
3489
|
-
|
|
3045
|
+
text-decoration-line: underline;
|
|
3490
3046
|
}
|
|
3491
3047
|
.hover\:tw-no-underline:hover {
|
|
3492
|
-
|
|
3048
|
+
text-decoration-line: none;
|
|
3493
3049
|
}
|
|
3494
3050
|
.hover\:tw-opacity-100:hover {
|
|
3495
|
-
|
|
3051
|
+
opacity: 1;
|
|
3496
3052
|
}
|
|
3497
3053
|
.focus\:tw-outline-none:focus {
|
|
3498
|
-
|
|
3499
|
-
|
|
3054
|
+
outline: 2px solid transparent;
|
|
3055
|
+
outline-offset: 2px;
|
|
3500
3056
|
}
|
|
3501
3057
|
.focus\:tw-ring-2:focus {
|
|
3502
|
-
|
|
3503
|
-
|
|
3504
|
-
|
|
3058
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
3059
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
3060
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
3505
3061
|
}
|
|
3506
3062
|
.focus\:tw-ring-ring:focus {
|
|
3507
|
-
|
|
3063
|
+
--tw-ring-color: var(--vscode-focusBorder);
|
|
3508
3064
|
}
|
|
3509
3065
|
.focus\:tw-ring-offset-2:focus {
|
|
3510
|
-
|
|
3066
|
+
--tw-ring-offset-width: 2px;
|
|
3511
3067
|
}
|
|
3512
3068
|
.focus-visible\:tw-border-ring:focus-visible {
|
|
3513
|
-
|
|
3069
|
+
border-color: var(--vscode-focusBorder);
|
|
3514
3070
|
}
|
|
3515
3071
|
.focus-visible\:tw-opacity-100:focus-visible {
|
|
3516
|
-
|
|
3072
|
+
opacity: 1;
|
|
3517
3073
|
}
|
|
3518
3074
|
.focus-visible\:tw-outline-none:focus-visible {
|
|
3519
|
-
|
|
3520
|
-
|
|
3075
|
+
outline: 2px solid transparent;
|
|
3076
|
+
outline-offset: 2px;
|
|
3521
3077
|
}
|
|
3522
3078
|
.disabled\:tw-pointer-events-none:disabled {
|
|
3523
|
-
|
|
3079
|
+
pointer-events: none;
|
|
3524
3080
|
}
|
|
3525
3081
|
.disabled\:tw-cursor-not-allowed:disabled {
|
|
3526
|
-
|
|
3082
|
+
cursor: not-allowed;
|
|
3527
3083
|
}
|
|
3528
3084
|
.disabled\:tw-bg-current-25:disabled {
|
|
3529
|
-
|
|
3085
|
+
background-color: color-mix(in lch, currentColor 25%, transparent);
|
|
3530
3086
|
}
|
|
3531
3087
|
.disabled\:tw-text-current:disabled {
|
|
3532
|
-
|
|
3088
|
+
color: currentColor;
|
|
3533
3089
|
}
|
|
3534
3090
|
.disabled\:tw-opacity-50:disabled {
|
|
3535
|
-
|
|
3091
|
+
opacity: 0.5;
|
|
3536
3092
|
}
|
|
3537
3093
|
.disabled\:tw-opacity-75:disabled {
|
|
3538
|
-
|
|
3094
|
+
opacity: 0.75;
|
|
3539
3095
|
}
|
|
3540
3096
|
.tw-group\/\[cmdk-item\]:hover .group-hover\/\[cmdk-item\]\:tw-visible {
|
|
3541
|
-
|
|
3097
|
+
visibility: visible;
|
|
3542
3098
|
}
|
|
3543
3099
|
.tw-group:hover .group-hover\:tw-opacity-100 {
|
|
3544
|
-
|
|
3100
|
+
opacity: 1;
|
|
3545
3101
|
}
|
|
3546
3102
|
.tw-group\/\[cmdk-item\][aria-selected="true"] .group-\[\[aria-selected\=\"true\"\]\]\/\[cmdk-item\]\:tw-visible {
|
|
3547
|
-
|
|
3103
|
+
visibility: visible;
|
|
3548
3104
|
}
|
|
3549
3105
|
.aria-selected\:tw-bg-accent[aria-selected="true"] {
|
|
3550
|
-
|
|
3106
|
+
background-color: var(--vscode-list-activeSelectionBackground);
|
|
3551
3107
|
}
|
|
3552
3108
|
.aria-selected\:\!tw-text-accent-foreground[aria-selected="true"] {
|
|
3553
|
-
|
|
3109
|
+
color: var(--vscode-list-activeSelectionForeground) !important;
|
|
3554
3110
|
}
|
|
3555
3111
|
.aria-selected\:tw-text-accent-foreground[aria-selected="true"] {
|
|
3556
|
-
|
|
3112
|
+
color: var(--vscode-list-activeSelectionForeground);
|
|
3557
3113
|
}
|
|
3558
3114
|
.data-\[disabled\=true\]\:tw-pointer-events-none[data-disabled=true] {
|
|
3559
|
-
|
|
3115
|
+
pointer-events: none;
|
|
3560
3116
|
}
|
|
3561
3117
|
@keyframes tw-accordion-up {
|
|
3562
|
-
|
|
3563
|
-
|
|
3564
|
-
|
|
3565
|
-
|
|
3566
|
-
|
|
3567
|
-
|
|
3118
|
+
from {
|
|
3119
|
+
height: var(--radix-accordion-content-height);
|
|
3120
|
+
}
|
|
3121
|
+
to {
|
|
3122
|
+
height: 0;
|
|
3123
|
+
}
|
|
3568
3124
|
}
|
|
3569
3125
|
.data-\[state\=closed\]\:tw-animate-accordion-up[data-state=closed] {
|
|
3570
|
-
|
|
3126
|
+
animation: tw-accordion-up 0.15s ease-out;
|
|
3571
3127
|
}
|
|
3572
3128
|
@keyframes tw-collapsible-up {
|
|
3573
|
-
|
|
3574
|
-
|
|
3575
|
-
|
|
3576
|
-
|
|
3577
|
-
|
|
3578
|
-
|
|
3129
|
+
from {
|
|
3130
|
+
height: var(--radix-collapsible-content-height);
|
|
3131
|
+
}
|
|
3132
|
+
to {
|
|
3133
|
+
height: 0;
|
|
3134
|
+
}
|
|
3579
3135
|
}
|
|
3580
3136
|
.data-\[state\=closed\]\:tw-animate-collapsible-up[data-state=closed] {
|
|
3581
|
-
|
|
3137
|
+
animation: tw-collapsible-up 0.15s ease-out;
|
|
3582
3138
|
}
|
|
3583
3139
|
@keyframes tw-accordion-down {
|
|
3584
|
-
|
|
3585
|
-
|
|
3586
|
-
|
|
3587
|
-
|
|
3588
|
-
|
|
3589
|
-
|
|
3140
|
+
from {
|
|
3141
|
+
height: 0;
|
|
3142
|
+
}
|
|
3143
|
+
to {
|
|
3144
|
+
height: var(--radix-accordion-content-height);
|
|
3145
|
+
}
|
|
3590
3146
|
}
|
|
3591
3147
|
.data-\[state\=open\]\:tw-animate-accordion-down[data-state=open] {
|
|
3592
|
-
|
|
3148
|
+
animation: tw-accordion-down 0.15s ease-out;
|
|
3593
3149
|
}
|
|
3594
3150
|
@keyframes tw-collapsible-down {
|
|
3595
|
-
|
|
3596
|
-
|
|
3597
|
-
|
|
3598
|
-
|
|
3599
|
-
|
|
3600
|
-
|
|
3151
|
+
from {
|
|
3152
|
+
height: 0;
|
|
3153
|
+
}
|
|
3154
|
+
to {
|
|
3155
|
+
height: var(--radix-collapsible-content-height);
|
|
3156
|
+
}
|
|
3601
3157
|
}
|
|
3602
3158
|
.data-\[state\=open\]\:tw-animate-collapsible-down[data-state=open] {
|
|
3603
|
-
|
|
3159
|
+
animation: tw-collapsible-down 0.15s ease-out;
|
|
3604
3160
|
}
|
|
3605
3161
|
.data-\[disabled\=true\]\:tw-opacity-50[data-disabled=true] {
|
|
3606
|
-
|
|
3162
|
+
opacity: 0.5;
|
|
3607
3163
|
}
|
|
3608
3164
|
body[data-vscode-theme-kind="vscode-high-contrast"] .high-contrast-dark\:tw-border-button-border {
|
|
3609
|
-
|
|
3165
|
+
border-color: var(--vscode-button-border, transparent);
|
|
3610
3166
|
}
|
|
3611
3167
|
body[data-vscode-theme-kind="vscode-high-contrast"] .high-contrast-dark\:tw-border-e-transparent {
|
|
3612
|
-
|
|
3168
|
+
border-inline-end-color: transparent;
|
|
3613
3169
|
}
|
|
3614
3170
|
.\[\&\:not\(\:last-child\)\]\:tw-border-b:not(:last-child) {
|
|
3615
|
-
|
|
3171
|
+
border-bottom-width: 1px;
|
|
3616
3172
|
}
|
|
3617
3173
|
.\[\&\:not\(\:last-child\)\]\:tw-border-border:not(:last-child) {
|
|
3618
|
-
|
|
3174
|
+
border-color: var(--vscode-dropdown-border);
|
|
3619
3175
|
}
|
|
3620
3176
|
.\[\&\[data-state\=open\]\>svg\.lucide\]\:tw-rotate-90[data-state=open]>svg.lucide {
|
|
3621
|
-
|
|
3622
|
-
|
|
3177
|
+
--tw-rotate: 90deg;
|
|
3178
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
3623
3179
|
}
|
|
3624
3180
|
.\[\&_\>_\*\]\:tw-flex-shrink-0 > * {
|
|
3625
|
-
|
|
3181
|
+
flex-shrink: 0;
|
|
3626
3182
|
}
|
|
3627
3183
|
.\[\&_\[cmdk-group-heading\]\]\:tw--mx-2 [cmdk-group-heading] {
|
|
3628
|
-
|
|
3629
|
-
|
|
3184
|
+
margin-left: -4px;
|
|
3185
|
+
margin-right: -4px;
|
|
3630
3186
|
}
|
|
3631
3187
|
.\[\&_\[cmdk-group-heading\]\]\:tw-mb-2 [cmdk-group-heading] {
|
|
3632
|
-
|
|
3188
|
+
margin-bottom: 4px;
|
|
3633
3189
|
}
|
|
3634
3190
|
.\[\&_\[cmdk-group-heading\]\]\:tw-flex [cmdk-group-heading] {
|
|
3635
|
-
|
|
3191
|
+
display: flex;
|
|
3636
3192
|
}
|
|
3637
3193
|
.\[\&_\[cmdk-group-heading\]\]\:\!tw-h-\[30px\] [cmdk-group-heading] {
|
|
3638
|
-
|
|
3194
|
+
height: 30px !important;
|
|
3639
3195
|
}
|
|
3640
3196
|
.\[\&_\[cmdk-group-heading\]\]\:\!tw-min-h-\[30px\] [cmdk-group-heading] {
|
|
3641
|
-
|
|
3197
|
+
min-height: 30px !important;
|
|
3642
3198
|
}
|
|
3643
3199
|
.\[\&_\[cmdk-group-heading\]\]\:tw-items-center [cmdk-group-heading] {
|
|
3644
|
-
|
|
3200
|
+
align-items: center;
|
|
3645
3201
|
}
|
|
3646
3202
|
.\[\&_\[cmdk-group-heading\]\]\:tw-gap-2 [cmdk-group-heading] {
|
|
3647
|
-
|
|
3203
|
+
gap: 4px;
|
|
3648
3204
|
}
|
|
3649
3205
|
.\[\&_\[cmdk-group-heading\]\]\:tw-bg-muted [cmdk-group-heading] {
|
|
3650
|
-
|
|
3206
|
+
background-color: var(--vscode-input-background);
|
|
3651
3207
|
}
|
|
3652
3208
|
.\[\&_\[cmdk-group-heading\]\]\:\!tw-p-3 [cmdk-group-heading] {
|
|
3653
|
-
|
|
3209
|
+
padding: 6px !important;
|
|
3654
3210
|
}
|
|
3655
3211
|
.\[\&_\[cmdk-group-heading\]\]\:tw-px-2 [cmdk-group-heading] {
|
|
3656
|
-
|
|
3657
|
-
|
|
3212
|
+
padding-left: 4px;
|
|
3213
|
+
padding-right: 4px;
|
|
3658
3214
|
}
|
|
3659
3215
|
.\[\&_\[cmdk-group-heading\]\]\:tw-px-4 [cmdk-group-heading] {
|
|
3660
|
-
|
|
3661
|
-
|
|
3216
|
+
padding-left: 8px;
|
|
3217
|
+
padding-right: 8px;
|
|
3662
3218
|
}
|
|
3663
3219
|
.\[\&_\[cmdk-group-heading\]\]\:tw-py-1\.5 [cmdk-group-heading] {
|
|
3664
|
-
|
|
3665
|
-
|
|
3220
|
+
padding-top: 3px;
|
|
3221
|
+
padding-bottom: 3px;
|
|
3666
3222
|
}
|
|
3667
3223
|
.\[\&_\[cmdk-group-heading\]\]\:\!tw-text-md [cmdk-group-heading] {
|
|
3668
|
-
|
|
3224
|
+
font-size: var(--vscode-font-size) !important;
|
|
3669
3225
|
}
|
|
3670
3226
|
.\[\&_\[cmdk-group-heading\]\]\:tw-text-xs [cmdk-group-heading] {
|
|
3671
|
-
|
|
3227
|
+
font-size: calc(calc(11/13)*var(--vscode-font-size));
|
|
3672
3228
|
}
|
|
3673
3229
|
.\[\&_\[cmdk-group-heading\]\]\:tw-font-medium [cmdk-group-heading] {
|
|
3674
|
-
|
|
3230
|
+
font-weight: 500;
|
|
3675
3231
|
}
|
|
3676
3232
|
.\[\&_\[cmdk-group-heading\]\]\:\!tw-leading-\[1\.2\] [cmdk-group-heading] {
|
|
3677
|
-
|
|
3233
|
+
line-height: 1.2 !important;
|
|
3678
3234
|
}
|
|
3679
3235
|
.\[\&_\[cmdk-group-heading\]\]\:tw-text-muted-foreground [cmdk-group-heading] {
|
|
3680
|
-
|
|
3236
|
+
color: var(--vscode-input-placeholderForeground);
|
|
3681
3237
|
}
|
|
3682
3238
|
.\[\&_\[cmdk-group\]\]\:\!tw-border-0 [cmdk-group] {
|
|
3683
|
-
|
|
3239
|
+
border-width: 0px !important;
|
|
3684
3240
|
}
|
|
3685
3241
|
.\[\&_\[cmdk-group\]\]\:tw-pt-0 [cmdk-group] {
|
|
3686
|
-
|
|
3242
|
+
padding-top: 0px;
|
|
3687
3243
|
}
|
|
3688
3244
|
.\[\&_\[cmdk-item\]\]\:tw-whitespace-nowrap [cmdk-item] {
|
|
3689
|
-
|
|
3245
|
+
white-space: nowrap;
|
|
3690
3246
|
}
|
|
3691
3247
|
.\[\&_kbd\]\:-tw-mr-1 kbd {
|
|
3692
|
-
|
|
3248
|
+
margin-right: -2px;
|
|
3693
3249
|
}
|
|
3694
3250
|
.\[\&_kbd\]\:tw-mb-\[-4px\] kbd {
|
|
3695
|
-
|
|
3251
|
+
margin-bottom: -4px;
|
|
3696
3252
|
}
|
|
3697
3253
|
.\[\&_kbd\]\:tw-ml-3 kbd {
|
|
3698
|
-
|
|
3254
|
+
margin-left: 6px;
|
|
3699
3255
|
}
|
|
3700
3256
|
.\[\&_kbd\]\:tw-mt-\[-4px\] kbd {
|
|
3701
|
-
|
|
3257
|
+
margin-top: -4px;
|
|
3702
3258
|
}
|
|
3703
3259
|
|
|
3704
3260
|
._root_maej5_2 {
|