@sourcegraph/cody-web 0.7.7 → 0.8.1

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/style.css CHANGED
@@ -1,9 +1,9 @@
1
- ._editor_9ox0p_1 {
1
+ ._editor_s4gjm_1 {
2
2
  position: relative;
3
3
  }
4
4
 
5
5
  /* ContentEditable */
6
- ._content-editable_9ox0p_6 {
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
- ._placeholder_9ox0p_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-paragraph_9ox0p_29 {
29
+ ._theme-paragraph_s4gjm_29 {
30
30
  margin: 0;
31
31
  }
32
32
 
33
- html[data-ide='JetBrains'] ._theme-paragraph_9ox0p_29 {
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
- ._title_1vity_5, ._description_1vity_5, ._warning_1vity_5 {
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
- ._row_1vity_11 {
44
+ ._row_1nc1q_11 {
47
45
  display: flex;
48
46
  align-items: center;
49
47
  gap: 0.35rem;
50
48
  }
51
49
 
52
- ._description_1vity_5, ._warning_1vity_5 {
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
- ._description_1vity_5 {
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,256 @@ 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
+ --cody-chat-code-mark-background: #f8e688;
324
+ --cody-chat-code-text-highlighted: #566880;
325
+ }
326
+
327
+ ._result-container_1ojeo_12 {
328
+ contain: paint;
329
+ border-radius: 4px;
330
+ border: solid 1px var(--cody-chat-code-border-color);
331
+ }
332
+
333
+ ._result-container_1ojeo_12 .match-highlight {
334
+ color: var(--cody-chat-code-text-highlighted);
335
+ background-color: var(--cody-chat-code-mark-background);
336
+ }
337
+
338
+ ._result-container_1ojeo_12 .sr-only {
339
+ position: absolute;
340
+ width: 0.0625rem;
341
+ height: 0.0625rem;
342
+ padding: 0;
343
+ margin: -0.0625rem;
344
+ overflow: hidden;
345
+ clip: rect(0, 0, 0, 0);
346
+ white-space: nowrap;
347
+ border: 0;
348
+ }
349
+
350
+ ._header_1ojeo_35 {
351
+ padding: 0.45rem 0.5rem;
352
+ display: flex;
353
+ align-items: center;
354
+ flex-wrap: wrap;
355
+
356
+ position: sticky;
357
+ top: 0;
358
+
359
+ /* Show on top of search result contents */
360
+ z-index: 1;
361
+
362
+ border-bottom: 1px solid var(--cody-chat-code-border-color);
363
+ background-color: var(--cody-chat-code-header-background);
364
+ }
365
+
366
+ ._header-title_1ojeo_1 {
367
+ flex: 1 1 auto;
368
+ display: flex;
369
+ flex-wrap: wrap;
370
+ }
371
+
372
+ ._result_1ojeo_12 {
373
+ background-color: var(--cody-chat-code-background);
374
+ }
375
+
376
+ ._search-result-match_1ojeo_61 {
377
+ /* Don't use cascading link style */
378
+ text-decoration: none;
379
+ display: flex;
380
+ align-items: flex-start;
381
+ overflow-x: auto;
382
+ overflow-y: hidden;
383
+ position: relative;
384
+ }
385
+
386
+ ._horizontal-divider-between_1ojeo_71:not(:last-child) {
387
+ border-bottom: 1px solid var(--cody-chat-code-border-color);
388
+ }
389
+
390
+ ._focusable-block_1ojeo_77:focus-visible {
391
+ box-shadow: inset 0 0 0 1px var(--cody-chat-code-focus-border);
392
+ }
393
+
394
+ ._clickable_1ojeo_83 {
395
+ cursor: pointer;
396
+ }
397
+
398
+ ._clickable_1ojeo_83:hover {
399
+ text-decoration: none;
400
+ background-color: var(--cody-chat-code-subtle-background);
401
+ }
402
+
403
+ ._divider-between_1ojeo_91 > *:not(:last-child)::after {
404
+ content: ' ';
405
+ height: 1rem;
406
+ margin: 0 0.75rem;
407
+ border-right: 1px solid var(--cody-chat-code-border-color);
408
+ display: block;
409
+ }
410
+
411
+ ._divider-vertical_1ojeo_101 {
412
+ border-bottom: 1px solid var(--cody-chat-code-border-color);
413
+ width: 100%;
414
+ margin: 0.5rem 0;
415
+ }
416
+
417
+ ._divider_1ojeo_91 {
418
+ border-right: 1px solid var(--cody-chat-code-border-color);
419
+ height: 1rem;
420
+ margin: 0 0.5rem;
421
+ }
422
+
423
+ ._title_1ojeo_113 {
424
+ display: flex;
425
+ align-items: center;
426
+ flex-grow: 1;
427
+ min-width: 0;
428
+ flex-wrap: wrap;
429
+ }
430
+
431
+ ._title-inner_1ojeo_121 {
432
+ overflow-wrap: anywhere;
433
+ }
434
+
435
+ ._toggle-matches-button_1ojeo_125 {
436
+ width: 100%;
437
+ text-align: left;
438
+ border: none;
439
+ padding: 0.25rem 0.5rem;
440
+ border-top: 1px solid var(--cody-chat-code-border-color);
441
+ background-color: var(--cody-chat-code-background);
442
+ color: var(--cody-chat-code-text-muted);
443
+ }
444
+
445
+ ._toggle-matches-button_1ojeo_125:hover {
446
+ color: inherit;
447
+ }
448
+
449
+ ._toggle-matches-button--expanded_1ojeo_1 {
450
+ position: sticky;
451
+ bottom: 0;
452
+ }
453
+
454
+ ._toggle-matches-button-text_1ojeo_1 {
455
+ margin-left: 0.125rem;
456
+ }
457
+
458
+ ._chunk_1q5wi_1 {
459
+ position: relative;
460
+ overflow-x: auto;
461
+ padding: 0.25rem 0.5rem;
462
+ background-color: var(--cody-chat-code-background);
463
+ }
464
+
465
+ ._chunk_1q5wi_1:first-child {
466
+ padding-top: 0.5rem;
467
+ }
468
+
469
+ ._chunk_1q5wi_1:last-child {
470
+ padding-bottom: 0.5rem;
471
+ }
472
+ ._root_15z33_1 {
473
+ display: flex;
474
+ flex-direction: column;
475
+ gap: 0.25rem;
476
+ }
477
+
478
+ ._link-container_15z33_7 {
479
+ display: inline-flex;
480
+ padding: 2px 4px 2px 2px;
481
+ min-width: 0;
482
+ }
483
+
484
+ ._header_15z33_13 {
485
+ display: flex;
486
+ gap: 0.25rem;
487
+ align-items: center;
488
+ }
489
+
490
+ ._context-item-link_15z33_19 {
491
+ background: none;
492
+ border: none;
493
+ color: var(--vscode-textLink-foreground);
494
+ font-size: inherit;
495
+ padding: 0;
496
+ margin: 0;
497
+ text-align: left;
498
+ font-weight: normal;
499
+ display: flex;
500
+ align-items: center;
501
+ gap: 0.125rem;
502
+ overflow: hidden;
503
+ }
504
+
505
+ /* In light high contrast, --vscode-textLink-foreground provides little
506
+ contrast; instead inherit the --code-foreground color from the container. */
507
+ body[data-vscode-theme-kind='vscode-high-contrast-light'] ._context-item-link_15z33_19 {
508
+ color: inherit;
509
+ }
510
+
511
+ ._code-block_15z33_40 {
512
+ margin-bottom: 0.25rem;
513
+ }
262
514
  ._dots-holder_10c80_1 {
263
515
  display: flex;
264
516
  gap: 0.2rem;
@@ -690,37 +942,16 @@ body[data-vscode-theme-kind='vscode-light'] ._content_1kf9a_116 pre > code {
690
942
  align-items: center;
691
943
  gap: calc(var(--spacing) / 4);
692
944
  }
693
- ._context-item_13e3r_1 {
945
+ ._context-item_911i8_1 {
694
946
  display: inline-flex;
695
947
  padding: 2px 4px 2px 2px;
696
948
  }
697
949
 
698
- ._context-item-metadata_13e3r_6 {
950
+ ._context-item-metadata_911i8_6 {
699
951
  color: var(--vscode-disabledForeground);
700
952
  padding-left: 0.1rem;
701
953
  text-wrap: nowrap;
702
954
  }
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
955
  ._user-avatar_tzwlo_1 {
725
956
  isolation: isolate;
726
957
  display: inline-flex;
@@ -926,6 +1157,12 @@ button > ._model-title-with-icon_rn0uf_1 ._model-provider_rn0uf_17,
926
1157
  button > ._model-title-with-icon_rn0uf_1 ._badge_rn0uf_35 {
927
1158
  display: none;
928
1159
  }
1160
+ ._info-message_6yx2w_1 {
1161
+ --mention-color-opacity: 70%;
1162
+
1163
+ border: 1px solid color-mix(in lch, var(--vscode-inputOption-activeBackground) calc(1.2* var(--mention-color-opacity)), transparent);
1164
+ background-color: color-mix(in lch, var(--vscode-inputOption-activeBackground) var(--mention-color-opacity), transparent);
1165
+ }
929
1166
  ._chat-disabled_rc7no_1 {
930
1167
  text-align: center;
931
1168
  padding: 0.5rem 0.25rem;
@@ -1060,692 +1297,6 @@ not include this in the cody web package since highlights styles is already
1060
1297
  imported in Sourcegraph shell.
1061
1298
  */
1062
1299
  /*@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
1300
  /*---------------------------------------------------------------------------------------------
1750
1301
  * Copyright (c) Microsoft Corporation. All rights reserved.
1751
1302
  * Licensed under the MIT License. See License.txt in the project root for license information.
@@ -2352,747 +1903,751 @@ imported in Sourcegraph shell.
2352
1903
  styles in consumer. See @mixin reset-styles for more details
2353
1904
  */
2354
1905
  .tw-invisible {
2355
- visibility: hidden;
1906
+ visibility: hidden;
2356
1907
  }
2357
1908
  .tw-absolute {
2358
- position: absolute;
1909
+ position: absolute;
2359
1910
  }
2360
1911
  .tw-relative {
2361
- position: relative;
1912
+ position: relative;
2362
1913
  }
2363
1914
  .tw-sticky {
2364
- position: sticky;
1915
+ position: sticky;
2365
1916
  }
2366
1917
  .tw-bottom-0 {
2367
- bottom: 0px;
1918
+ bottom: 0px;
2368
1919
  }
2369
1920
  .tw-left-\[0px\] {
2370
- left: 0px;
1921
+ left: 0px;
2371
1922
  }
2372
1923
  .tw-left-\[5\.5px\] {
2373
- left: 5.5px;
1924
+ left: 5.5px;
2374
1925
  }
2375
1926
  .tw-top-\[0px\] {
2376
- top: 0px;
1927
+ top: 0px;
2377
1928
  }
2378
1929
  .tw-top-\[5\.5px\] {
2379
- top: 5.5px;
1930
+ top: 5.5px;
2380
1931
  }
2381
1932
  .tw-z-50 {
2382
- z-index: 50;
1933
+ z-index: 50;
2383
1934
  }
2384
1935
  .tw-col-span-4 {
2385
- grid-column: span 4 / span 4;
1936
+ grid-column: span 4 / span 4;
2386
1937
  }
2387
1938
  .tw-m-5 {
2388
- margin: 10px;
1939
+ margin: 10px;
2389
1940
  }
2390
1941
  .tw--mx-2 {
2391
- margin-left: -4px;
2392
- margin-right: -4px;
1942
+ margin-left: -4px;
1943
+ margin-right: -4px;
2393
1944
  }
2394
1945
  .tw-my-2 {
2395
- margin-top: 4px;
2396
- margin-bottom: 4px;
1946
+ margin-top: 4px;
1947
+ margin-bottom: 4px;
2397
1948
  }
2398
1949
  .tw-mb-4 {
2399
- margin-bottom: 8px;
1950
+ margin-bottom: 8px;
2400
1951
  }
2401
1952
  .tw-mb-5 {
2402
- margin-bottom: 10px;
1953
+ margin-bottom: 10px;
2403
1954
  }
2404
1955
  .tw-mb-6 {
2405
- margin-bottom: 12px;
1956
+ margin-bottom: 12px;
2406
1957
  }
2407
1958
  .tw-mb-8 {
2408
- margin-bottom: 16px;
1959
+ margin-bottom: 16px;
2409
1960
  }
2410
1961
  .tw-ml-1 {
2411
- margin-left: 2px;
1962
+ margin-left: 2px;
2412
1963
  }
2413
1964
  .tw-ml-2 {
2414
- margin-left: 4px;
1965
+ margin-left: 4px;
2415
1966
  }
2416
1967
  .tw-ml-4 {
2417
- margin-left: 8px;
1968
+ margin-left: 8px;
2418
1969
  }
2419
1970
  .tw-ml-auto {
2420
- margin-left: auto;
1971
+ margin-left: auto;
2421
1972
  }
2422
1973
  .tw-mr-1 {
2423
- margin-right: 2px;
1974
+ margin-right: 2px;
2424
1975
  }
2425
1976
  .tw-mr-2 {
2426
- margin-right: 4px;
1977
+ margin-right: 4px;
2427
1978
  }
2428
1979
  .tw-mt-0 {
2429
- margin-top: 0px;
1980
+ margin-top: 0px;
2430
1981
  }
2431
1982
  .tw-mt-0\.5 {
2432
- margin-top: 0.125rem;
1983
+ margin-top: 0.125rem;
2433
1984
  }
2434
1985
  .tw-mt-1 {
2435
- margin-top: 2px;
1986
+ margin-top: 2px;
2436
1987
  }
2437
1988
  .tw-mt-2 {
2438
- margin-top: 4px;
1989
+ margin-top: 4px;
2439
1990
  }
2440
1991
  .tw-mt-4 {
2441
- margin-top: 8px;
1992
+ margin-top: 8px;
2442
1993
  }
2443
1994
  .tw-mt-6 {
2444
- margin-top: 12px;
1995
+ margin-top: 12px;
2445
1996
  }
2446
1997
  .tw-mt-\[-1px\] {
2447
- margin-top: -1px;
1998
+ margin-top: -1px;
2448
1999
  }
2449
2000
  .tw-mt-auto {
2450
- margin-top: auto;
2001
+ margin-top: auto;
2451
2002
  }
2452
2003
  .tw-flex {
2453
- display: flex;
2004
+ display: flex;
2454
2005
  }
2455
2006
  .tw-inline-flex {
2456
- display: inline-flex;
2007
+ display: inline-flex;
2457
2008
  }
2458
2009
  .tw-grid {
2459
- display: grid;
2010
+ display: grid;
2011
+ }
2012
+ .tw-size-8 {
2013
+ width: 16px;
2014
+ height: 16px;
2460
2015
  }
2461
2016
  .\!tw-h-\[30px\] {
2462
- height: 30px !important;
2017
+ height: 30px !important;
2463
2018
  }
2464
2019
  .tw-h-8 {
2465
- height: 16px;
2020
+ height: 16px;
2466
2021
  }
2467
2022
  .tw-h-\[1\.375rem\] {
2468
- height: 1.375rem;
2023
+ height: 1.375rem;
2469
2024
  }
2470
2025
  .tw-h-\[18px\] {
2471
- height: 18px;
2026
+ height: 18px;
2472
2027
  }
2473
2028
  .tw-h-\[1em\] {
2474
- height: 1em;
2029
+ height: 1em;
2475
2030
  }
2476
2031
  .tw-h-\[20px\] {
2477
- height: 20px;
2032
+ height: 20px;
2478
2033
  }
2479
2034
  .tw-h-\[50vh\] {
2480
- height: 50vh;
2035
+ height: 50vh;
2481
2036
  }
2482
2037
  .tw-h-\[7px\] {
2483
- height: 7px;
2038
+ height: 7px;
2484
2039
  }
2485
2040
  .tw-h-full {
2486
- height: 100%;
2041
+ height: 100%;
2487
2042
  }
2488
2043
  .tw-h-px {
2489
- height: 1px;
2044
+ height: 1px;
2490
2045
  }
2491
2046
  .\!tw-max-h-\[unset\] {
2492
- max-height: unset !important;
2047
+ max-height: unset !important;
2493
2048
  }
2494
2049
  .tw-max-h-\[500px\] {
2495
- max-height: 500px;
2050
+ max-height: 500px;
2496
2051
  }
2497
2052
  .tw-w-72 {
2498
- width: 18rem;
2053
+ width: 18rem;
2499
2054
  }
2500
2055
  .tw-w-8 {
2501
- width: 16px;
2056
+ width: 16px;
2502
2057
  }
2503
2058
  .tw-w-\[1\.375rem\] {
2504
- width: 1.375rem;
2059
+ width: 1.375rem;
2505
2060
  }
2506
2061
  .tw-w-\[18px\] {
2507
- width: 18px;
2062
+ width: 18px;
2508
2063
  }
2509
2064
  .tw-w-\[1em\] {
2510
- width: 1em;
2065
+ width: 1em;
2511
2066
  }
2512
2067
  .tw-w-\[20px\] {
2513
- width: 20px;
2068
+ width: 20px;
2069
+ }
2070
+ .tw-w-\[225px\] {
2071
+ width: 225px;
2514
2072
  }
2515
2073
  .tw-w-\[75vw\] {
2516
- width: 75vw;
2074
+ width: 75vw;
2517
2075
  }
2518
2076
  .tw-w-\[7px\] {
2519
- width: 7px;
2077
+ width: 7px;
2520
2078
  }
2521
2079
  .tw-w-\[unset\] {
2522
- width: unset;
2080
+ width: unset;
2523
2081
  }
2524
2082
  .tw-w-full {
2525
- width: 100%;
2083
+ width: 100%;
2526
2084
  }
2527
2085
  .tw-min-w-\[1\.5em\] {
2528
- min-width: 1.5em;
2086
+ min-width: 1.5em;
2529
2087
  }
2530
2088
  .tw-min-w-\[325px\] {
2531
- min-width: 325px;
2089
+ min-width: 325px;
2532
2090
  }
2533
2091
  .\!tw-max-w-\[unset\] {
2534
- max-width: unset !important;
2092
+ max-width: unset !important;
2535
2093
  }
2536
2094
  .tw-max-w-72 {
2537
- max-width: 18rem;
2095
+ max-width: 18rem;
2538
2096
  }
2539
2097
  .tw-max-w-\[550px\] {
2540
- max-width: 550px;
2098
+ max-width: 550px;
2541
2099
  }
2542
2100
  .tw-max-w-\[90\%\] {
2543
- max-width: 90%;
2101
+ max-width: 90%;
2544
2102
  }
2545
2103
  .tw-max-w-full {
2546
- max-width: 100%;
2104
+ max-width: 100%;
2547
2105
  }
2548
2106
  .tw-max-w-lg {
2549
- max-width: 32rem;
2107
+ max-width: 32rem;
2550
2108
  }
2551
2109
  .tw-flex-1 {
2552
- flex: 1 1 0%;
2110
+ flex: 1 1 0%;
2553
2111
  }
2554
2112
  .tw-flex-none {
2555
- flex: none;
2113
+ flex: none;
2556
2114
  }
2557
2115
  .tw-shrink-0 {
2558
- flex-shrink: 0;
2116
+ flex-shrink: 0;
2559
2117
  }
2560
2118
  .tw-flex-grow {
2561
- flex-grow: 1;
2119
+ flex-grow: 1;
2562
2120
  }
2563
2121
  .tw-grow {
2564
- flex-grow: 1;
2122
+ flex-grow: 1;
2565
2123
  }
2566
2124
  .-tw-translate-y-\[\.2em\] {
2567
- --tw-translate-y: -.2em;
2568
- 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));
2125
+ --tw-translate-y: -.2em;
2126
+ 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
2127
  }
2570
2128
  .tw-translate-x-\[1px\] {
2571
- --tw-translate-x: 1px;
2572
- 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));
2129
+ --tw-translate-x: 1px;
2130
+ 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
2131
  }
2574
2132
  .tw-translate-y-\[1px\] {
2575
- --tw-translate-y: 1px;
2576
- 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));
2133
+ --tw-translate-y: 1px;
2134
+ 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
2135
  }
2578
2136
  @keyframes tw-spin {
2579
- to {
2580
- transform: rotate(360deg);
2581
- }
2137
+ to {
2138
+ transform: rotate(360deg);
2139
+ }
2582
2140
  }
2583
2141
  .tw-animate-spin {
2584
- animation: tw-spin 1s linear infinite;
2142
+ animation: tw-spin 1s linear infinite;
2585
2143
  }
2586
2144
  .tw-cursor-pointer {
2587
- cursor: pointer;
2145
+ cursor: pointer;
2588
2146
  }
2589
2147
  .tw-select-none {
2590
- user-select: none;
2148
+ user-select: none;
2591
2149
  }
2592
2150
  .tw-list-none {
2593
- list-style-type: none;
2151
+ list-style-type: none;
2594
2152
  }
2595
2153
  .tw-grid-cols-5 {
2596
- grid-template-columns: repeat(5, minmax(0, 1fr));
2597
- }
2598
- .tw-grid-cols-6 {
2599
- grid-template-columns: repeat(6, minmax(0, 1fr));
2154
+ grid-template-columns: repeat(5, minmax(0, 1fr));
2600
2155
  }
2601
2156
  .tw-flex-col {
2602
- flex-direction: column;
2157
+ flex-direction: column;
2603
2158
  }
2604
2159
  .tw-flex-wrap {
2605
- flex-wrap: wrap;
2160
+ flex-wrap: wrap;
2606
2161
  }
2607
2162
  .tw-flex-wrap-reverse {
2608
- flex-wrap: wrap-reverse;
2163
+ flex-wrap: wrap-reverse;
2609
2164
  }
2610
2165
  .\!tw-items-start {
2611
- align-items: flex-start !important;
2166
+ align-items: flex-start !important;
2612
2167
  }
2613
2168
  .tw-items-start {
2614
- align-items: flex-start;
2169
+ align-items: flex-start;
2615
2170
  }
2616
2171
  .tw-items-end {
2617
- align-items: flex-end;
2172
+ align-items: flex-end;
2618
2173
  }
2619
2174
  .tw-items-center {
2620
- align-items: center;
2175
+ align-items: center;
2621
2176
  }
2622
2177
  .tw-items-baseline {
2623
- align-items: baseline;
2178
+ align-items: baseline;
2624
2179
  }
2625
2180
  .tw-items-stretch {
2626
- align-items: stretch;
2181
+ align-items: stretch;
2627
2182
  }
2628
2183
  .tw-justify-end {
2629
- justify-content: flex-end;
2184
+ justify-content: flex-end;
2630
2185
  }
2631
2186
  .tw-justify-center {
2632
- justify-content: center;
2187
+ justify-content: center;
2633
2188
  }
2634
2189
  .tw-justify-between {
2635
- justify-content: space-between;
2190
+ justify-content: space-between;
2636
2191
  }
2637
2192
  .tw-gap-0 {
2638
- gap: 0px;
2193
+ gap: 0px;
2639
2194
  }
2640
2195
  .tw-gap-0\.5 {
2641
- gap: 0.125rem;
2196
+ gap: 0.125rem;
2642
2197
  }
2643
2198
  .tw-gap-1 {
2644
- gap: 2px;
2199
+ gap: 2px;
2645
2200
  }
2646
2201
  .tw-gap-1\.5 {
2647
- gap: 3px;
2202
+ gap: 3px;
2648
2203
  }
2649
2204
  .tw-gap-10 {
2650
- gap: 20px;
2205
+ gap: 20px;
2651
2206
  }
2652
2207
  .tw-gap-2 {
2653
- gap: 4px;
2208
+ gap: 4px;
2654
2209
  }
2655
2210
  .tw-gap-3 {
2656
- gap: 6px;
2211
+ gap: 6px;
2657
2212
  }
2658
2213
  .tw-gap-4 {
2659
- gap: 8px;
2214
+ gap: 8px;
2660
2215
  }
2661
2216
  .tw-gap-5 {
2662
- gap: 10px;
2217
+ gap: 10px;
2663
2218
  }
2664
2219
  .tw-gap-6 {
2665
- gap: 12px;
2220
+ gap: 12px;
2666
2221
  }
2667
2222
  .tw-gap-8 {
2668
- gap: 16px;
2223
+ gap: 16px;
2669
2224
  }
2670
2225
  .tw-gap-x-3 {
2671
- column-gap: 6px;
2226
+ column-gap: 6px;
2672
2227
  }
2673
2228
  .tw-gap-x-4 {
2674
- column-gap: 8px;
2229
+ column-gap: 8px;
2675
2230
  }
2676
2231
  .tw-gap-y-1 {
2677
- row-gap: 2px;
2232
+ row-gap: 2px;
2678
2233
  }
2679
2234
  .tw-gap-y-2 {
2680
- row-gap: 4px;
2235
+ row-gap: 4px;
2681
2236
  }
2682
2237
  .tw-divide-x > :not([hidden]) ~ :not([hidden]) {
2683
- --tw-divide-x-reverse: 0;
2684
- border-right-width: calc(1px * var(--tw-divide-x-reverse));
2685
- border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)));
2238
+ --tw-divide-x-reverse: 0;
2239
+ border-right-width: calc(1px * var(--tw-divide-x-reverse));
2240
+ border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)));
2686
2241
  }
2687
2242
  .tw-divide-muted > :not([hidden]) ~ :not([hidden]) {
2688
- border-color: var(--vscode-input-background);
2243
+ border-color: var(--vscode-input-background);
2689
2244
  }
2690
2245
  .tw-self-stretch {
2691
- align-self: stretch;
2246
+ align-self: stretch;
2692
2247
  }
2693
2248
  .tw-overflow-auto {
2694
- overflow: auto;
2249
+ overflow: auto;
2695
2250
  }
2696
2251
  .tw-overflow-hidden {
2697
- overflow: hidden;
2252
+ overflow: hidden;
2698
2253
  }
2699
2254
  .tw-overflow-clip {
2700
- overflow: clip;
2255
+ overflow: clip;
2701
2256
  }
2702
2257
  .tw-overflow-y-auto {
2703
- overflow-y: auto;
2258
+ overflow-y: auto;
2704
2259
  }
2705
2260
  .tw-overflow-x-hidden {
2706
- overflow-x: hidden;
2261
+ overflow-x: hidden;
2707
2262
  }
2708
2263
  .tw-truncate {
2709
- overflow: hidden;
2710
- text-overflow: ellipsis;
2711
- white-space: nowrap;
2264
+ overflow: hidden;
2265
+ text-overflow: ellipsis;
2266
+ white-space: nowrap;
2712
2267
  }
2713
2268
  .tw-text-ellipsis {
2714
- text-overflow: ellipsis;
2269
+ text-overflow: ellipsis;
2715
2270
  }
2716
2271
  .tw-whitespace-nowrap {
2717
- white-space: nowrap;
2272
+ white-space: nowrap;
2718
2273
  }
2719
2274
  .tw-whitespace-pre-line {
2720
- white-space: pre-line;
2275
+ white-space: pre-line;
2721
2276
  }
2722
2277
  .tw-text-nowrap {
2723
- text-wrap: nowrap;
2278
+ text-wrap: nowrap;
2724
2279
  }
2725
2280
  .\!tw-rounded-full {
2726
- border-radius: 9999px !important;
2281
+ border-radius: 9999px !important;
2727
2282
  }
2728
2283
  .\!tw-rounded-none {
2729
- border-radius: 0px !important;
2284
+ border-radius: 0px !important;
2730
2285
  }
2731
2286
  .tw-rounded {
2732
- border-radius: 0.25rem;
2287
+ border-radius: 0.25rem;
2733
2288
  }
2734
2289
  .tw-rounded-\[0\.5px\] {
2735
- border-radius: 0.5px;
2290
+ border-radius: 0.5px;
2736
2291
  }
2737
2292
  .tw-rounded-\[6px\] {
2738
- border-radius: 6px;
2293
+ border-radius: 6px;
2739
2294
  }
2740
2295
  .tw-rounded-full {
2741
- border-radius: 9999px;
2296
+ border-radius: 9999px;
2742
2297
  }
2743
2298
  .tw-rounded-lg {
2744
- border-radius: 6px;
2299
+ border-radius: 6px;
2745
2300
  }
2746
2301
  .tw-rounded-md {
2747
- border-radius: 4px;
2302
+ border-radius: 4px;
2748
2303
  }
2749
2304
  .tw-rounded-none {
2750
- border-radius: 0px;
2305
+ border-radius: 0px;
2751
2306
  }
2752
2307
  .tw-rounded-sm {
2753
- border-radius: 2px;
2308
+ border-radius: 2px;
2754
2309
  }
2755
2310
  .tw-border {
2756
- border-width: 1px;
2311
+ border-width: 1px;
2757
2312
  }
2758
2313
  .tw-border-\[1px\] {
2759
- border-width: 1px;
2314
+ border-width: 1px;
2760
2315
  }
2761
2316
  .\!tw-border-b-0 {
2762
- border-bottom-width: 0px !important;
2317
+ border-bottom-width: 0px !important;
2763
2318
  }
2764
2319
  .tw-border-b {
2765
- border-bottom-width: 1px;
2320
+ border-bottom-width: 1px;
2766
2321
  }
2767
2322
  .tw-border-b-\[1px\] {
2768
- border-bottom-width: 1px;
2323
+ border-bottom-width: 1px;
2769
2324
  }
2770
2325
  .tw-border-t {
2771
- border-top-width: 1px;
2326
+ border-top-width: 1px;
2772
2327
  }
2773
2328
  .tw-border-solid {
2774
- border-style: solid;
2329
+ border-style: solid;
2775
2330
  }
2776
2331
  .tw-border-none {
2777
- border-style: none;
2332
+ border-style: none;
2778
2333
  }
2779
2334
  .\!tw-border-\[var\(--vscode-tab-activeBorderTop\)\] {
2780
- border-color: var(--vscode-tab-activeBorderTop) !important;
2335
+ border-color: var(--vscode-tab-activeBorderTop) !important;
2781
2336
  }
2782
2337
  .tw-border-border {
2783
- border-color: var(--vscode-dropdown-border);
2338
+ border-color: var(--vscode-dropdown-border);
2784
2339
  }
2785
2340
  .tw-border-button-border {
2786
- border-color: var(--vscode-button-border, transparent);
2341
+ border-color: var(--vscode-button-border, transparent);
2787
2342
  }
2788
2343
  .tw-border-current {
2789
- border-color: currentColor;
2344
+ border-color: currentColor;
2790
2345
  }
2791
2346
  .tw-border-keybinding-border {
2792
- border-color: var(--vscode-keybindingLabel-border);
2347
+ border-color: var(--vscode-keybindingLabel-border);
2793
2348
  }
2794
2349
  .tw-border-muted-transparent {
2795
- border-color: color-mix(in lch, currentColor 15%, transparent);
2350
+ border-color: color-mix(in lch, currentColor 15%, transparent);
2796
2351
  }
2797
2352
  .tw-border-ring {
2798
- border-color: var(--vscode-focusBorder);
2353
+ border-color: var(--vscode-focusBorder);
2799
2354
  }
2800
2355
  .tw-border-transparent {
2801
- border-color: transparent;
2356
+ border-color: transparent;
2802
2357
  }
2803
2358
  .tw-border-b-border {
2804
- border-bottom-color: var(--vscode-dropdown-border);
2359
+ border-bottom-color: var(--vscode-dropdown-border);
2805
2360
  }
2806
2361
  .tw-border-e-transparent {
2807
- border-inline-end-color: transparent;
2362
+ border-inline-end-color: transparent;
2808
2363
  }
2809
2364
  .tw-border-t-border {
2810
- border-top-color: var(--vscode-dropdown-border);
2365
+ border-top-color: var(--vscode-dropdown-border);
2811
2366
  }
2812
2367
  .\!tw-bg-\[unset\] {
2813
- background-color: unset !important;
2368
+ background-color: unset !important;
2814
2369
  }
2815
2370
  .tw-bg-\[unset\] {
2816
- background-color: unset;
2371
+ background-color: unset;
2372
+ }
2373
+ .tw-bg-accent {
2374
+ background-color: var(--vscode-list-activeSelectionBackground);
2817
2375
  }
2818
2376
  .tw-bg-background {
2819
- background-color: var(--vscode-editor-background);
2377
+ background-color: var(--vscode-editor-background);
2820
2378
  }
2821
2379
  .tw-bg-badge-background {
2822
- background-color: var(--vscode-badge-background);
2380
+ background-color: var(--vscode-badge-background);
2823
2381
  }
2824
2382
  .tw-bg-border {
2825
- background-color: var(--vscode-dropdown-border);
2383
+ background-color: var(--vscode-dropdown-border);
2826
2384
  }
2827
2385
  .tw-bg-button-background {
2828
- background-color: var(--vscode-button-background);
2386
+ background-color: var(--vscode-button-background);
2829
2387
  }
2830
2388
  .tw-bg-button-secondary-background {
2831
- background-color: var(--vscode-button-secondaryBackground);
2389
+ background-color: var(--vscode-button-secondaryBackground);
2832
2390
  }
2833
2391
  .tw-bg-current {
2834
- background-color: currentColor;
2392
+ background-color: currentColor;
2835
2393
  }
2836
2394
  .tw-bg-keybinding-background {
2837
- background-color: var(--vscode-keybindingLabel-background);
2395
+ background-color: var(--vscode-keybindingLabel-background);
2838
2396
  }
2839
2397
  .tw-bg-popover {
2840
- background-color: var(--vscode-quickInput-background);
2398
+ background-color: var(--vscode-quickInput-background);
2841
2399
  }
2842
2400
  .tw-bg-transparent {
2843
- background-color: transparent;
2401
+ background-color: transparent;
2844
2402
  }
2845
2403
  .\!tw-p-0 {
2846
- padding: 0px !important;
2404
+ padding: 0px !important;
2847
2405
  }
2848
2406
  .\!tw-p-2 {
2849
- padding: 4px !important;
2407
+ padding: 4px !important;
2850
2408
  }
2851
2409
  .\!tw-p-3 {
2852
- padding: 6px !important;
2410
+ padding: 6px !important;
2853
2411
  }
2854
2412
  .tw-p-0 {
2855
- padding: 0px;
2413
+ padding: 0px;
2856
2414
  }
2857
2415
  .tw-p-1 {
2858
- padding: 2px;
2416
+ padding: 2px;
2859
2417
  }
2860
2418
  .tw-p-2 {
2861
- padding: 4px;
2419
+ padding: 4px;
2862
2420
  }
2863
2421
  .tw-p-4 {
2864
- padding: 8px;
2422
+ padding: 8px;
2865
2423
  }
2866
2424
  .tw-p-6 {
2867
- padding: 12px;
2425
+ padding: 12px;
2868
2426
  }
2869
2427
  .tw-p-8 {
2870
- padding: 16px;
2428
+ padding: 16px;
2871
2429
  }
2872
2430
  .tw-px-0 {
2873
- padding-left: 0px;
2874
- padding-right: 0px;
2431
+ padding-left: 0px;
2432
+ padding-right: 0px;
2875
2433
  }
2876
2434
  .tw-px-2 {
2877
- padding-left: 4px;
2878
- padding-right: 4px;
2435
+ padding-left: 4px;
2436
+ padding-right: 4px;
2879
2437
  }
2880
2438
  .tw-px-3 {
2881
- padding-left: 6px;
2882
- padding-right: 6px;
2439
+ padding-left: 6px;
2440
+ padding-right: 6px;
2883
2441
  }
2884
2442
  .tw-px-4 {
2885
- padding-left: 8px;
2886
- padding-right: 8px;
2443
+ padding-left: 8px;
2444
+ padding-right: 8px;
2887
2445
  }
2888
2446
  .tw-px-6 {
2889
- padding-left: 12px;
2890
- padding-right: 12px;
2447
+ padding-left: 12px;
2448
+ padding-right: 12px;
2891
2449
  }
2892
2450
  .tw-px-8 {
2893
- padding-left: 16px;
2894
- padding-right: 16px;
2451
+ padding-left: 16px;
2452
+ padding-right: 16px;
2895
2453
  }
2896
2454
  .tw-px-\[5px\] {
2897
- padding-left: 5px;
2898
- padding-right: 5px;
2455
+ padding-left: 5px;
2456
+ padding-right: 5px;
2899
2457
  }
2900
2458
  .tw-py-0 {
2901
- padding-top: 0px;
2902
- padding-bottom: 0px;
2459
+ padding-top: 0px;
2460
+ padding-bottom: 0px;
2903
2461
  }
2904
2462
  .tw-py-2 {
2905
- padding-top: 4px;
2906
- padding-bottom: 4px;
2463
+ padding-top: 4px;
2464
+ padding-bottom: 4px;
2907
2465
  }
2908
2466
  .tw-py-3 {
2909
- padding-top: 6px;
2910
- padding-bottom: 6px;
2467
+ padding-top: 6px;
2468
+ padding-bottom: 6px;
2911
2469
  }
2912
2470
  .tw-py-4 {
2913
- padding-top: 8px;
2914
- padding-bottom: 8px;
2471
+ padding-top: 8px;
2472
+ padding-bottom: 8px;
2915
2473
  }
2916
2474
  .tw-py-6 {
2917
- padding-top: 12px;
2918
- padding-bottom: 12px;
2475
+ padding-top: 12px;
2476
+ padding-bottom: 12px;
2919
2477
  }
2920
2478
  .tw-py-\[\.1rem\] {
2921
- padding-top: .1rem;
2922
- padding-bottom: .1rem;
2479
+ padding-top: .1rem;
2480
+ padding-bottom: .1rem;
2923
2481
  }
2924
2482
  .tw-pb-12 {
2925
- padding-bottom: 24px;
2483
+ padding-bottom: 24px;
2926
2484
  }
2927
2485
  .tw-pb-3 {
2928
- padding-bottom: 6px;
2486
+ padding-bottom: 6px;
2929
2487
  }
2930
2488
  .tw-pb-6 {
2931
- padding-bottom: 12px;
2489
+ padding-bottom: 12px;
2932
2490
  }
2933
2491
  .tw-pl-5 {
2934
- padding-left: 10px;
2492
+ padding-left: 10px;
2935
2493
  }
2936
2494
  .tw-pr-4 {
2937
- padding-right: 8px;
2495
+ padding-right: 8px;
2938
2496
  }
2939
2497
  .tw-pt-2 {
2940
- padding-top: 4px;
2498
+ padding-top: 4px;
2941
2499
  }
2942
2500
  .tw-pt-4 {
2943
- padding-top: 8px;
2501
+ padding-top: 8px;
2944
2502
  }
2945
2503
  .tw-pt-6 {
2946
- padding-top: 12px;
2504
+ padding-top: 12px;
2947
2505
  }
2948
2506
  .tw-pt-8 {
2949
- padding-top: 16px;
2507
+ padding-top: 16px;
2950
2508
  }
2951
2509
  .tw-text-left {
2952
- text-align: left;
2510
+ text-align: left;
2953
2511
  }
2954
2512
  .tw-text-center {
2955
- text-align: center;
2956
- }
2957
- .tw-text-right {
2958
- text-align: right;
2513
+ text-align: center;
2959
2514
  }
2960
2515
  .tw-align-middle {
2961
- vertical-align: middle;
2516
+ vertical-align: middle;
2962
2517
  }
2963
2518
  .\!tw-text-md {
2964
- font-size: var(--vscode-font-size) !important;
2519
+ font-size: var(--vscode-font-size) !important;
2965
2520
  }
2966
2521
  .tw-text-lg {
2967
- font-size: calc(var(--vscode-font-size) * 15 / 13);
2522
+ font-size: calc(var(--vscode-font-size) * 15 / 13);
2968
2523
  }
2969
2524
  .tw-text-md {
2970
- font-size: var(--vscode-font-size);
2525
+ font-size: var(--vscode-font-size);
2971
2526
  }
2972
2527
  .tw-text-sm {
2973
- font-size: calc(calc(12/13)*var(--vscode-font-size));
2528
+ font-size: calc(calc(12/13)*var(--vscode-font-size));
2974
2529
  }
2975
2530
  .tw-text-xs {
2976
- font-size: calc(calc(11/13)*var(--vscode-font-size));
2531
+ font-size: calc(calc(11/13)*var(--vscode-font-size));
2977
2532
  }
2978
2533
  .tw-text-xxs {
2979
- font-size: calc(calc(10/13)*var(--vscode-font-size));
2534
+ font-size: calc(calc(10/13)*var(--vscode-font-size));
2980
2535
  }
2981
2536
  .tw-font-medium {
2982
- font-weight: 500;
2537
+ font-weight: 500;
2983
2538
  }
2984
2539
  .tw-font-semibold {
2985
- font-weight: 600;
2540
+ font-weight: 600;
2986
2541
  }
2987
2542
  .tw-uppercase {
2988
- text-transform: uppercase;
2543
+ text-transform: uppercase;
2989
2544
  }
2990
2545
  .\!tw-leading-\[1\.2\] {
2991
- line-height: 1.2 !important;
2546
+ line-height: 1.2 !important;
2992
2547
  }
2993
2548
  .tw-leading-none {
2994
- line-height: 1;
2549
+ line-height: 1;
2995
2550
  }
2996
2551
  .tw-leading-tight {
2997
- line-height: 1.25;
2552
+ line-height: 1.25;
2998
2553
  }
2999
2554
  .tw-tracking-tight {
3000
- letter-spacing: -0.025em;
2555
+ letter-spacing: -0.025em;
3001
2556
  }
3002
2557
  .tw-tracking-widest {
3003
- letter-spacing: 0.1em;
2558
+ letter-spacing: 0.1em;
3004
2559
  }
3005
2560
  .\!tw-text-\[unset\] {
3006
- color: unset !important;
2561
+ color: unset !important;
3007
2562
  }
3008
2563
  .\!tw-text-foreground {
3009
- color: var(--vscode-foreground) !important;
2564
+ color: var(--vscode-foreground) !important;
3010
2565
  }
3011
2566
  .\!tw-text-muted-foreground {
3012
- color: var(--vscode-input-placeholderForeground) !important;
2567
+ color: var(--vscode-input-placeholderForeground) !important;
3013
2568
  }
3014
2569
  .tw-text-accent-foreground {
3015
- color: var(--vscode-list-activeSelectionForeground);
2570
+ color: var(--vscode-list-activeSelectionForeground);
3016
2571
  }
3017
2572
  .tw-text-badge-foreground {
3018
- color: var(--vscode-badge-foreground);
2573
+ color: var(--vscode-badge-foreground);
3019
2574
  }
3020
2575
  .tw-text-button-foreground {
3021
- color: var(--vscode-button-foreground);
2576
+ color: var(--vscode-button-foreground);
3022
2577
  }
3023
2578
  .tw-text-button-secondary-foreground {
3024
- color: var(--vscode-button-secondaryForeground);
2579
+ color: var(--vscode-button-secondaryForeground);
3025
2580
  }
3026
2581
  .tw-text-foreground {
3027
- color: var(--vscode-foreground);
2582
+ color: var(--vscode-foreground);
3028
2583
  }
3029
2584
  .tw-text-keybinding-foreground {
3030
- color: var(--vscode-keybindingLabel-foreground);
2585
+ color: var(--vscode-keybindingLabel-foreground);
3031
2586
  }
3032
2587
  .tw-text-link {
3033
- color: var(--vscode-textLink-foreground);
2588
+ color: var(--vscode-textLink-foreground);
3034
2589
  }
3035
2590
  .tw-text-muted-foreground {
3036
- color: var(--vscode-input-placeholderForeground);
2591
+ color: var(--vscode-input-placeholderForeground);
3037
2592
  }
3038
2593
  .tw-text-popover-foreground {
3039
- color: var(--vscode-dropdown-foreground);
2594
+ color: var(--vscode-dropdown-foreground);
3040
2595
  }
3041
2596
  .tw-underline-offset-4 {
3042
- text-underline-offset: 4px;
2597
+ text-underline-offset: 4px;
3043
2598
  }
3044
2599
  .\!tw-opacity-100 {
3045
- opacity: 1 !important;
2600
+ opacity: 1 !important;
3046
2601
  }
3047
2602
  .tw-opacity-30 {
3048
- opacity: 0.3;
2603
+ opacity: 0.3;
3049
2604
  }
3050
2605
  .tw-opacity-60 {
3051
- opacity: 0.6;
2606
+ opacity: 0.6;
3052
2607
  }
3053
2608
  .tw-opacity-65 {
3054
- opacity: 0.65;
2609
+ opacity: 0.65;
3055
2610
  }
3056
2611
  .tw-opacity-75 {
3057
- opacity: 0.75;
2612
+ opacity: 0.75;
3058
2613
  }
3059
2614
  .tw-opacity-80 {
3060
- opacity: 0.8;
2615
+ opacity: 0.8;
3061
2616
  }
3062
2617
  .tw-shadow-lg {
3063
- --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
3064
- --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
3065
- box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
2618
+ --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
2619
+ --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
2620
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
3066
2621
  }
3067
2622
  .tw-shadow-md {
3068
- --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
3069
- --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
3070
- box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
2623
+ --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
2624
+ --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
2625
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
3071
2626
  }
3072
2627
  .tw-outline-none {
3073
- outline: 2px solid transparent;
3074
- outline-offset: 2px;
2628
+ outline: 2px solid transparent;
2629
+ outline-offset: 2px;
3075
2630
  }
3076
2631
  .tw-transition {
3077
- transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
3078
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
3079
- transition-duration: 150ms;
2632
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
2633
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
2634
+ transition-duration: 150ms;
3080
2635
  }
3081
2636
  .tw-transition-all {
3082
- transition-property: all;
3083
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
3084
- transition-duration: 150ms;
2637
+ transition-property: all;
2638
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
2639
+ transition-duration: 150ms;
3085
2640
  }
3086
2641
  .tw-transition-transform {
3087
- transition-property: transform;
3088
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
3089
- transition-duration: 150ms;
2642
+ transition-property: transform;
2643
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
2644
+ transition-duration: 150ms;
3090
2645
  }
3091
2646
  .tw-duration-150 {
3092
- transition-duration: 150ms;
2647
+ transition-duration: 150ms;
3093
2648
  }
3094
2649
  .tw-duration-75 {
3095
- transition-duration: 75ms;
2650
+ transition-duration: 75ms;
3096
2651
  }
3097
2652
  :root {
3098
2653
  --vscode-font-size: 13px;
@@ -3450,255 +3005,255 @@ imported in Sourcegraph shell.
3450
3005
  text-decoration: none;
3451
3006
  }
3452
3007
  .placeholder\:tw-text-muted-foreground::placeholder {
3453
- color: var(--vscode-input-placeholderForeground);
3008
+ color: var(--vscode-input-placeholderForeground);
3454
3009
  }
3455
3010
  .empty\:tw-hidden:empty {
3456
- display: none;
3011
+ display: none;
3457
3012
  }
3458
3013
  .hover\:tw-bg-accent:hover {
3459
- background-color: var(--vscode-list-activeSelectionBackground);
3014
+ background-color: var(--vscode-list-activeSelectionBackground);
3460
3015
  }
3461
3016
  .hover\:tw-bg-button-background-hover:hover {
3462
- background-color: var(--vscode-button-hoverBackground);
3017
+ background-color: var(--vscode-button-hoverBackground);
3463
3018
  }
3464
3019
  .hover\:tw-bg-button-secondary-background-hover:hover {
3465
- background-color: var(--vscode-button-secondaryHoverBackground);
3020
+ background-color: var(--vscode-button-secondaryHoverBackground);
3466
3021
  }
3467
3022
  .hover\:tw-bg-muted:hover {
3468
- background-color: var(--vscode-input-background);
3023
+ background-color: var(--vscode-input-background);
3469
3024
  }
3470
3025
  .hover\:tw-bg-muted-transparent:hover {
3471
- background-color: color-mix(in lch, currentColor 15%, transparent);
3026
+ background-color: color-mix(in lch, currentColor 15%, transparent);
3472
3027
  }
3473
3028
  .hover\:tw-bg-transparent:hover {
3474
- background-color: transparent;
3029
+ background-color: transparent;
3475
3030
  }
3476
3031
  .hover\:\!tw-text-accent-foreground:hover {
3477
- color: var(--vscode-list-activeSelectionForeground) !important;
3032
+ color: var(--vscode-list-activeSelectionForeground) !important;
3478
3033
  }
3479
3034
  .hover\:tw-text-accent-foreground:hover {
3480
- color: var(--vscode-list-activeSelectionForeground);
3035
+ color: var(--vscode-list-activeSelectionForeground);
3481
3036
  }
3482
3037
  .hover\:tw-text-foreground:hover {
3483
- color: var(--vscode-foreground);
3038
+ color: var(--vscode-foreground);
3484
3039
  }
3485
3040
  .hover\:tw-text-link-hover:hover {
3486
- color: var(--vscode-textLink-activeForeground);
3041
+ color: var(--vscode-textLink-activeForeground);
3487
3042
  }
3488
3043
  .hover\:tw-underline:hover {
3489
- text-decoration-line: underline;
3044
+ text-decoration-line: underline;
3490
3045
  }
3491
3046
  .hover\:tw-no-underline:hover {
3492
- text-decoration-line: none;
3047
+ text-decoration-line: none;
3493
3048
  }
3494
3049
  .hover\:tw-opacity-100:hover {
3495
- opacity: 1;
3050
+ opacity: 1;
3496
3051
  }
3497
3052
  .focus\:tw-outline-none:focus {
3498
- outline: 2px solid transparent;
3499
- outline-offset: 2px;
3053
+ outline: 2px solid transparent;
3054
+ outline-offset: 2px;
3500
3055
  }
3501
3056
  .focus\:tw-ring-2:focus {
3502
- --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
3503
- --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
3504
- box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
3057
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
3058
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
3059
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
3505
3060
  }
3506
3061
  .focus\:tw-ring-ring:focus {
3507
- --tw-ring-color: var(--vscode-focusBorder);
3062
+ --tw-ring-color: var(--vscode-focusBorder);
3508
3063
  }
3509
3064
  .focus\:tw-ring-offset-2:focus {
3510
- --tw-ring-offset-width: 2px;
3065
+ --tw-ring-offset-width: 2px;
3511
3066
  }
3512
3067
  .focus-visible\:tw-border-ring:focus-visible {
3513
- border-color: var(--vscode-focusBorder);
3068
+ border-color: var(--vscode-focusBorder);
3514
3069
  }
3515
3070
  .focus-visible\:tw-opacity-100:focus-visible {
3516
- opacity: 1;
3071
+ opacity: 1;
3517
3072
  }
3518
3073
  .focus-visible\:tw-outline-none:focus-visible {
3519
- outline: 2px solid transparent;
3520
- outline-offset: 2px;
3074
+ outline: 2px solid transparent;
3075
+ outline-offset: 2px;
3521
3076
  }
3522
3077
  .disabled\:tw-pointer-events-none:disabled {
3523
- pointer-events: none;
3078
+ pointer-events: none;
3524
3079
  }
3525
3080
  .disabled\:tw-cursor-not-allowed:disabled {
3526
- cursor: not-allowed;
3081
+ cursor: not-allowed;
3527
3082
  }
3528
3083
  .disabled\:tw-bg-current-25:disabled {
3529
- background-color: color-mix(in lch, currentColor 25%, transparent);
3084
+ background-color: color-mix(in lch, currentColor 25%, transparent);
3530
3085
  }
3531
3086
  .disabled\:tw-text-current:disabled {
3532
- color: currentColor;
3087
+ color: currentColor;
3533
3088
  }
3534
3089
  .disabled\:tw-opacity-50:disabled {
3535
- opacity: 0.5;
3090
+ opacity: 0.5;
3536
3091
  }
3537
3092
  .disabled\:tw-opacity-75:disabled {
3538
- opacity: 0.75;
3093
+ opacity: 0.75;
3539
3094
  }
3540
3095
  .tw-group\/\[cmdk-item\]:hover .group-hover\/\[cmdk-item\]\:tw-visible {
3541
- visibility: visible;
3096
+ visibility: visible;
3542
3097
  }
3543
3098
  .tw-group:hover .group-hover\:tw-opacity-100 {
3544
- opacity: 1;
3099
+ opacity: 1;
3545
3100
  }
3546
3101
  .tw-group\/\[cmdk-item\][aria-selected="true"] .group-\[\[aria-selected\=\"true\"\]\]\/\[cmdk-item\]\:tw-visible {
3547
- visibility: visible;
3102
+ visibility: visible;
3548
3103
  }
3549
3104
  .aria-selected\:tw-bg-accent[aria-selected="true"] {
3550
- background-color: var(--vscode-list-activeSelectionBackground);
3105
+ background-color: var(--vscode-list-activeSelectionBackground);
3551
3106
  }
3552
3107
  .aria-selected\:\!tw-text-accent-foreground[aria-selected="true"] {
3553
- color: var(--vscode-list-activeSelectionForeground) !important;
3108
+ color: var(--vscode-list-activeSelectionForeground) !important;
3554
3109
  }
3555
3110
  .aria-selected\:tw-text-accent-foreground[aria-selected="true"] {
3556
- color: var(--vscode-list-activeSelectionForeground);
3111
+ color: var(--vscode-list-activeSelectionForeground);
3557
3112
  }
3558
3113
  .data-\[disabled\=true\]\:tw-pointer-events-none[data-disabled=true] {
3559
- pointer-events: none;
3114
+ pointer-events: none;
3560
3115
  }
3561
3116
  @keyframes tw-accordion-up {
3562
- from {
3563
- height: var(--radix-accordion-content-height);
3564
- }
3565
- to {
3566
- height: 0;
3567
- }
3117
+ from {
3118
+ height: var(--radix-accordion-content-height);
3119
+ }
3120
+ to {
3121
+ height: 0;
3122
+ }
3568
3123
  }
3569
3124
  .data-\[state\=closed\]\:tw-animate-accordion-up[data-state=closed] {
3570
- animation: tw-accordion-up 0.15s ease-out;
3125
+ animation: tw-accordion-up 0.15s ease-out;
3571
3126
  }
3572
3127
  @keyframes tw-collapsible-up {
3573
- from {
3574
- height: var(--radix-collapsible-content-height);
3575
- }
3576
- to {
3577
- height: 0;
3578
- }
3128
+ from {
3129
+ height: var(--radix-collapsible-content-height);
3130
+ }
3131
+ to {
3132
+ height: 0;
3133
+ }
3579
3134
  }
3580
3135
  .data-\[state\=closed\]\:tw-animate-collapsible-up[data-state=closed] {
3581
- animation: tw-collapsible-up 0.15s ease-out;
3136
+ animation: tw-collapsible-up 0.15s ease-out;
3582
3137
  }
3583
3138
  @keyframes tw-accordion-down {
3584
- from {
3585
- height: 0;
3586
- }
3587
- to {
3588
- height: var(--radix-accordion-content-height);
3589
- }
3139
+ from {
3140
+ height: 0;
3141
+ }
3142
+ to {
3143
+ height: var(--radix-accordion-content-height);
3144
+ }
3590
3145
  }
3591
3146
  .data-\[state\=open\]\:tw-animate-accordion-down[data-state=open] {
3592
- animation: tw-accordion-down 0.15s ease-out;
3147
+ animation: tw-accordion-down 0.15s ease-out;
3593
3148
  }
3594
3149
  @keyframes tw-collapsible-down {
3595
- from {
3596
- height: 0;
3597
- }
3598
- to {
3599
- height: var(--radix-collapsible-content-height);
3600
- }
3150
+ from {
3151
+ height: 0;
3152
+ }
3153
+ to {
3154
+ height: var(--radix-collapsible-content-height);
3155
+ }
3601
3156
  }
3602
3157
  .data-\[state\=open\]\:tw-animate-collapsible-down[data-state=open] {
3603
- animation: tw-collapsible-down 0.15s ease-out;
3158
+ animation: tw-collapsible-down 0.15s ease-out;
3604
3159
  }
3605
3160
  .data-\[disabled\=true\]\:tw-opacity-50[data-disabled=true] {
3606
- opacity: 0.5;
3161
+ opacity: 0.5;
3607
3162
  }
3608
3163
  body[data-vscode-theme-kind="vscode-high-contrast"] .high-contrast-dark\:tw-border-button-border {
3609
- border-color: var(--vscode-button-border, transparent);
3164
+ border-color: var(--vscode-button-border, transparent);
3610
3165
  }
3611
3166
  body[data-vscode-theme-kind="vscode-high-contrast"] .high-contrast-dark\:tw-border-e-transparent {
3612
- border-inline-end-color: transparent;
3167
+ border-inline-end-color: transparent;
3613
3168
  }
3614
3169
  .\[\&\:not\(\:last-child\)\]\:tw-border-b:not(:last-child) {
3615
- border-bottom-width: 1px;
3170
+ border-bottom-width: 1px;
3616
3171
  }
3617
3172
  .\[\&\:not\(\:last-child\)\]\:tw-border-border:not(:last-child) {
3618
- border-color: var(--vscode-dropdown-border);
3173
+ border-color: var(--vscode-dropdown-border);
3619
3174
  }
3620
3175
  .\[\&\[data-state\=open\]\>svg\.lucide\]\:tw-rotate-90[data-state=open]>svg.lucide {
3621
- --tw-rotate: 90deg;
3622
- 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));
3176
+ --tw-rotate: 90deg;
3177
+ 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
3178
  }
3624
3179
  .\[\&_\>_\*\]\:tw-flex-shrink-0 > * {
3625
- flex-shrink: 0;
3180
+ flex-shrink: 0;
3626
3181
  }
3627
3182
  .\[\&_\[cmdk-group-heading\]\]\:tw--mx-2 [cmdk-group-heading] {
3628
- margin-left: -4px;
3629
- margin-right: -4px;
3183
+ margin-left: -4px;
3184
+ margin-right: -4px;
3630
3185
  }
3631
3186
  .\[\&_\[cmdk-group-heading\]\]\:tw-mb-2 [cmdk-group-heading] {
3632
- margin-bottom: 4px;
3187
+ margin-bottom: 4px;
3633
3188
  }
3634
3189
  .\[\&_\[cmdk-group-heading\]\]\:tw-flex [cmdk-group-heading] {
3635
- display: flex;
3190
+ display: flex;
3636
3191
  }
3637
3192
  .\[\&_\[cmdk-group-heading\]\]\:\!tw-h-\[30px\] [cmdk-group-heading] {
3638
- height: 30px !important;
3193
+ height: 30px !important;
3639
3194
  }
3640
3195
  .\[\&_\[cmdk-group-heading\]\]\:\!tw-min-h-\[30px\] [cmdk-group-heading] {
3641
- min-height: 30px !important;
3196
+ min-height: 30px !important;
3642
3197
  }
3643
3198
  .\[\&_\[cmdk-group-heading\]\]\:tw-items-center [cmdk-group-heading] {
3644
- align-items: center;
3199
+ align-items: center;
3645
3200
  }
3646
3201
  .\[\&_\[cmdk-group-heading\]\]\:tw-gap-2 [cmdk-group-heading] {
3647
- gap: 4px;
3202
+ gap: 4px;
3648
3203
  }
3649
3204
  .\[\&_\[cmdk-group-heading\]\]\:tw-bg-muted [cmdk-group-heading] {
3650
- background-color: var(--vscode-input-background);
3205
+ background-color: var(--vscode-input-background);
3651
3206
  }
3652
3207
  .\[\&_\[cmdk-group-heading\]\]\:\!tw-p-3 [cmdk-group-heading] {
3653
- padding: 6px !important;
3208
+ padding: 6px !important;
3654
3209
  }
3655
3210
  .\[\&_\[cmdk-group-heading\]\]\:tw-px-2 [cmdk-group-heading] {
3656
- padding-left: 4px;
3657
- padding-right: 4px;
3211
+ padding-left: 4px;
3212
+ padding-right: 4px;
3658
3213
  }
3659
3214
  .\[\&_\[cmdk-group-heading\]\]\:tw-px-4 [cmdk-group-heading] {
3660
- padding-left: 8px;
3661
- padding-right: 8px;
3215
+ padding-left: 8px;
3216
+ padding-right: 8px;
3662
3217
  }
3663
3218
  .\[\&_\[cmdk-group-heading\]\]\:tw-py-1\.5 [cmdk-group-heading] {
3664
- padding-top: 3px;
3665
- padding-bottom: 3px;
3219
+ padding-top: 3px;
3220
+ padding-bottom: 3px;
3666
3221
  }
3667
3222
  .\[\&_\[cmdk-group-heading\]\]\:\!tw-text-md [cmdk-group-heading] {
3668
- font-size: var(--vscode-font-size) !important;
3223
+ font-size: var(--vscode-font-size) !important;
3669
3224
  }
3670
3225
  .\[\&_\[cmdk-group-heading\]\]\:tw-text-xs [cmdk-group-heading] {
3671
- font-size: calc(calc(11/13)*var(--vscode-font-size));
3226
+ font-size: calc(calc(11/13)*var(--vscode-font-size));
3672
3227
  }
3673
3228
  .\[\&_\[cmdk-group-heading\]\]\:tw-font-medium [cmdk-group-heading] {
3674
- font-weight: 500;
3229
+ font-weight: 500;
3675
3230
  }
3676
3231
  .\[\&_\[cmdk-group-heading\]\]\:\!tw-leading-\[1\.2\] [cmdk-group-heading] {
3677
- line-height: 1.2 !important;
3232
+ line-height: 1.2 !important;
3678
3233
  }
3679
3234
  .\[\&_\[cmdk-group-heading\]\]\:tw-text-muted-foreground [cmdk-group-heading] {
3680
- color: var(--vscode-input-placeholderForeground);
3235
+ color: var(--vscode-input-placeholderForeground);
3681
3236
  }
3682
3237
  .\[\&_\[cmdk-group\]\]\:\!tw-border-0 [cmdk-group] {
3683
- border-width: 0px !important;
3238
+ border-width: 0px !important;
3684
3239
  }
3685
3240
  .\[\&_\[cmdk-group\]\]\:tw-pt-0 [cmdk-group] {
3686
- padding-top: 0px;
3241
+ padding-top: 0px;
3687
3242
  }
3688
3243
  .\[\&_\[cmdk-item\]\]\:tw-whitespace-nowrap [cmdk-item] {
3689
- white-space: nowrap;
3244
+ white-space: nowrap;
3690
3245
  }
3691
3246
  .\[\&_kbd\]\:-tw-mr-1 kbd {
3692
- margin-right: -2px;
3247
+ margin-right: -2px;
3693
3248
  }
3694
3249
  .\[\&_kbd\]\:tw-mb-\[-4px\] kbd {
3695
- margin-bottom: -4px;
3250
+ margin-bottom: -4px;
3696
3251
  }
3697
3252
  .\[\&_kbd\]\:tw-ml-3 kbd {
3698
- margin-left: 6px;
3253
+ margin-left: 6px;
3699
3254
  }
3700
3255
  .\[\&_kbd\]\:tw-mt-\[-4px\] kbd {
3701
- margin-top: -4px;
3256
+ margin-top: -4px;
3702
3257
  }
3703
3258
 
3704
3259
  ._root_maej5_2 {