@sourcegraph/cody-web 0.8.3 → 0.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -0
- package/dist/agent.worker-D-CTHcD9.mjs +173398 -0
- package/dist/agent.worker.js +2 -2
- package/dist/{browser-fSoJnYQE.mjs → browser-xmS9GzfL.mjs} +19966 -18646
- package/dist/{git-log-DFDYqWm8.mjs → git-log-oavcyP_a.mjs} +2 -2
- package/dist/{index-D37eXObq.mjs → index-CGL3SWV3.mjs} +2 -2
- package/dist/index.js +34526 -33465
- package/dist/lib/agent/agent.client.d.ts.map +1 -1
- package/dist/lib/agent/index-db-storage.d.ts.map +1 -1
- package/dist/lib/agent/shims/inline-completion-item-provider.d.ts +2 -3
- package/dist/lib/agent/shims/inline-completion-item-provider.d.ts.map +1 -1
- package/dist/lib/components/CodyWebChat.d.ts.map +1 -1
- package/dist/style.css +518 -198
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +17 -15
- package/dist/agent.worker-BRaA9Bfg.mjs +0 -66676
- package/dist/shell-CMHu3sfo.mjs +0 -48
- package/dist/util-HSH4uVeM.mjs +0 -28
package/dist/style.css
CHANGED
|
@@ -252,15 +252,36 @@ html[data-ide=JetBrains] ._template-input-node_14yoh_1 {
|
|
|
252
252
|
kbd {
|
|
253
253
|
all: unset;
|
|
254
254
|
}
|
|
255
|
-
.
|
|
255
|
+
._path_1dh30_1 {
|
|
256
256
|
white-space: nowrap;
|
|
257
257
|
text-overflow: ellipsis;
|
|
258
258
|
overflow: hidden;
|
|
259
|
+
|
|
260
|
+
/* Makes ellipsis show in default text color, we show the basename in link color below */
|
|
261
|
+
color: var(--vscode-disabledForeground);
|
|
259
262
|
}
|
|
260
263
|
|
|
261
|
-
.
|
|
264
|
+
._excluded_1dh30_10 {
|
|
262
265
|
text-decoration: line-through !important;
|
|
263
266
|
}
|
|
267
|
+
|
|
268
|
+
._basename_1dh30_14 {
|
|
269
|
+
color: var(--vscode-textLink-foreground);
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
._repoShortName_1dh30_18 {
|
|
273
|
+
color: var(--vscode-disabledForeground);
|
|
274
|
+
font-size: smaller;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
._dirname_1dh30_23 {
|
|
278
|
+
color: var(--vscode-disabledForeground);
|
|
279
|
+
font-size: smaller;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
._range_1dh30_28 {
|
|
283
|
+
color: var(--vscode-disabledForeground);
|
|
284
|
+
}
|
|
264
285
|
:root {
|
|
265
286
|
--code-font-size: #{(12/14)}em;
|
|
266
287
|
--code-font-family: sfmono-regular, consolas, menlo, dejavu sans mono, monospace;
|
|
@@ -314,8 +335,8 @@ kbd {
|
|
|
314
335
|
color: #657b83;
|
|
315
336
|
}
|
|
316
337
|
:root {
|
|
317
|
-
--cody-chat-code-background: var(--
|
|
318
|
-
--cody-chat-code-header-background: var(--vscode-
|
|
338
|
+
--cody-chat-code-background: var(--code-background);
|
|
339
|
+
--cody-chat-code-header-background: var(--vscode-editorGroupHeader-tabsBackground);
|
|
319
340
|
--cody-chat-code-subtle-background: var(--vscode-titleBar-inactiveBackground);
|
|
320
341
|
--cody-chat-code-border-color: var(--vscode-widget-border);
|
|
321
342
|
--cody-chat-code-text-muted: var(--vscode-input-placeholderForeground);
|
|
@@ -324,18 +345,16 @@ kbd {
|
|
|
324
345
|
--cody-chat-code-text-highlighted: #566880;
|
|
325
346
|
}
|
|
326
347
|
|
|
327
|
-
._result-
|
|
348
|
+
._result-container_1poiy_12 {
|
|
328
349
|
contain: paint;
|
|
329
|
-
border-radius: 4px;
|
|
330
|
-
border: solid 1px var(--cody-chat-code-border-color);
|
|
331
350
|
}
|
|
332
351
|
|
|
333
|
-
._result-
|
|
352
|
+
._result-container_1poiy_12 .match-highlight {
|
|
334
353
|
color: var(--cody-chat-code-text-highlighted);
|
|
335
|
-
background-color: var(--cody-chat-code-mark-background);
|
|
354
|
+
background-color: var(--cody-chat-code-mark-background) !important;
|
|
336
355
|
}
|
|
337
356
|
|
|
338
|
-
._result-
|
|
357
|
+
._result-container_1poiy_12 .sr-only {
|
|
339
358
|
position: absolute;
|
|
340
359
|
width: 0.0625rem;
|
|
341
360
|
height: 0.0625rem;
|
|
@@ -347,33 +366,36 @@ kbd {
|
|
|
347
366
|
border: 0;
|
|
348
367
|
}
|
|
349
368
|
|
|
350
|
-
.
|
|
369
|
+
._header_1poiy_32 {
|
|
351
370
|
padding: 0.45rem 0.5rem;
|
|
352
371
|
display: flex;
|
|
353
372
|
align-items: center;
|
|
354
373
|
flex-wrap: wrap;
|
|
355
|
-
|
|
356
374
|
position: sticky;
|
|
357
375
|
top: 0;
|
|
358
376
|
|
|
359
377
|
/* Show on top of search result contents */
|
|
360
378
|
z-index: 1;
|
|
361
|
-
|
|
362
|
-
border-bottom: 1px solid var(--cody-chat-code-border-color);
|
|
363
379
|
background-color: var(--cody-chat-code-header-background);
|
|
364
380
|
}
|
|
365
381
|
|
|
366
|
-
._header-
|
|
382
|
+
._header-title_1poiy_1 {
|
|
367
383
|
flex: 1 1 auto;
|
|
368
384
|
display: flex;
|
|
369
385
|
flex-wrap: wrap;
|
|
370
386
|
}
|
|
371
387
|
|
|
372
|
-
.
|
|
388
|
+
._result_1poiy_12 {
|
|
389
|
+
border-radius: 4px;
|
|
390
|
+
border: solid 1px var(--cody-chat-code-border-color);
|
|
373
391
|
background-color: var(--cody-chat-code-background);
|
|
374
392
|
}
|
|
375
393
|
|
|
376
|
-
.
|
|
394
|
+
._result_1poiy_12 code {
|
|
395
|
+
padding: 0 !important;
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
._search-result-match_1poiy_61 {
|
|
377
399
|
/* Don't use cascading link style */
|
|
378
400
|
text-decoration: none;
|
|
379
401
|
display: flex;
|
|
@@ -383,24 +405,23 @@ kbd {
|
|
|
383
405
|
position: relative;
|
|
384
406
|
}
|
|
385
407
|
|
|
386
|
-
._horizontal-divider-
|
|
408
|
+
._horizontal-divider-between_1poiy_71:not(:last-child) {
|
|
387
409
|
border-bottom: 1px solid var(--cody-chat-code-border-color);
|
|
388
410
|
}
|
|
389
411
|
|
|
390
|
-
._focusable-
|
|
412
|
+
._focusable-block_1poiy_77:focus-visible {
|
|
391
413
|
box-shadow: inset 0 0 0 1px var(--cody-chat-code-focus-border);
|
|
392
414
|
}
|
|
393
415
|
|
|
394
|
-
.
|
|
416
|
+
._clickable_1poiy_83 {
|
|
395
417
|
cursor: pointer;
|
|
396
418
|
}
|
|
397
419
|
|
|
398
|
-
.
|
|
420
|
+
._clickable_1poiy_83:hover {
|
|
399
421
|
text-decoration: none;
|
|
400
|
-
background-color: var(--cody-chat-code-subtle-background);
|
|
401
422
|
}
|
|
402
423
|
|
|
403
|
-
._divider-
|
|
424
|
+
._divider-between_1poiy_90 > *:not(:last-child)::after {
|
|
404
425
|
content: ' ';
|
|
405
426
|
height: 1rem;
|
|
406
427
|
margin: 0 0.75rem;
|
|
@@ -408,19 +429,19 @@ kbd {
|
|
|
408
429
|
display: block;
|
|
409
430
|
}
|
|
410
431
|
|
|
411
|
-
._divider-
|
|
432
|
+
._divider-vertical_1poiy_100 {
|
|
412
433
|
border-bottom: 1px solid var(--cody-chat-code-border-color);
|
|
413
434
|
width: 100%;
|
|
414
435
|
margin: 0.5rem 0;
|
|
415
436
|
}
|
|
416
437
|
|
|
417
|
-
.
|
|
438
|
+
._divider_1poiy_90 {
|
|
418
439
|
border-right: 1px solid var(--cody-chat-code-border-color);
|
|
419
440
|
height: 1rem;
|
|
420
441
|
margin: 0 0.5rem;
|
|
421
442
|
}
|
|
422
443
|
|
|
423
|
-
.
|
|
444
|
+
._title_1poiy_112 {
|
|
424
445
|
display: flex;
|
|
425
446
|
align-items: center;
|
|
426
447
|
flex-grow: 1;
|
|
@@ -428,11 +449,11 @@ kbd {
|
|
|
428
449
|
flex-wrap: wrap;
|
|
429
450
|
}
|
|
430
451
|
|
|
431
|
-
._title-
|
|
452
|
+
._title-inner_1poiy_120 {
|
|
432
453
|
overflow-wrap: anywhere;
|
|
433
454
|
}
|
|
434
455
|
|
|
435
|
-
._toggle-matches-
|
|
456
|
+
._toggle-matches-button_1poiy_124 {
|
|
436
457
|
width: 100%;
|
|
437
458
|
text-align: left;
|
|
438
459
|
border: none;
|
|
@@ -442,33 +463,29 @@ kbd {
|
|
|
442
463
|
color: var(--cody-chat-code-text-muted);
|
|
443
464
|
}
|
|
444
465
|
|
|
445
|
-
._toggle-matches-
|
|
466
|
+
._toggle-matches-button_1poiy_124:hover {
|
|
446
467
|
color: inherit;
|
|
447
468
|
}
|
|
448
469
|
|
|
449
|
-
._toggle-matches-button--
|
|
470
|
+
._toggle-matches-button--expanded_1poiy_1 {
|
|
450
471
|
position: sticky;
|
|
451
472
|
bottom: 0;
|
|
452
473
|
}
|
|
453
474
|
|
|
454
|
-
._toggle-matches-button-
|
|
475
|
+
._toggle-matches-button-text_1poiy_1 {
|
|
455
476
|
margin-left: 0.125rem;
|
|
456
477
|
}
|
|
457
478
|
|
|
458
|
-
.
|
|
479
|
+
._chunk_1nj7l_1 {
|
|
459
480
|
position: relative;
|
|
460
481
|
overflow-x: auto;
|
|
461
|
-
|
|
462
|
-
background-color: var(--cody-chat-code-background);
|
|
482
|
+
background-color: var(--code-background);
|
|
463
483
|
}
|
|
464
484
|
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
._chunk_1q5wi_1:last-child {
|
|
470
|
-
padding-bottom: 0.5rem;
|
|
471
|
-
}
|
|
485
|
+
._popover_1ah8d_2 {
|
|
486
|
+
box-shadow: 0 193px 54px 0 rgba(0, 0, 0, 0), 0 123px 49px 0 rgba(0, 0, 0, 0.01),
|
|
487
|
+
0 69px 42px 0 rgba(0, 0, 0, 0.04), 0 31px 31px 0 rgba(0, 0, 0, 0.07), 0 8px 17px 0 rgba(0, 0, 0, 0.08);
|
|
488
|
+
}
|
|
472
489
|
._root_15z33_1 {
|
|
473
490
|
display: flex;
|
|
474
491
|
flex-direction: column;
|
|
@@ -952,7 +969,7 @@ body[data-vscode-theme-kind='vscode-light'] ._content_1kf9a_116 pre > code {
|
|
|
952
969
|
padding-left: 0.1rem;
|
|
953
970
|
text-wrap: nowrap;
|
|
954
971
|
}
|
|
955
|
-
._user-
|
|
972
|
+
._user-avatar_1ll2x_1 {
|
|
956
973
|
isolation: isolate;
|
|
957
974
|
display: inline-flex;
|
|
958
975
|
border-radius: 50%;
|
|
@@ -960,10 +977,10 @@ body[data-vscode-theme-kind='vscode-light'] ._content_1kf9a_116 pre > code {
|
|
|
960
977
|
color: var(--vscode-inputOption-activeForeground);
|
|
961
978
|
align-items: center;
|
|
962
979
|
justify-content: center;
|
|
963
|
-
height:
|
|
980
|
+
height: 100%;
|
|
964
981
|
}
|
|
965
982
|
|
|
966
|
-
._sourcegraph-gradient-
|
|
983
|
+
._sourcegraph-gradient-border_1ll2x_12 {
|
|
967
984
|
--gradient-border-width: 1px;
|
|
968
985
|
|
|
969
986
|
border-radius: 50%;
|
|
@@ -976,7 +993,7 @@ body[data-vscode-theme-kind='vscode-light'] ._content_1kf9a_116 pre > code {
|
|
|
976
993
|
--human-message-editor-cell-spacing-bottom: 6px;
|
|
977
994
|
}
|
|
978
995
|
|
|
979
|
-
.
|
|
996
|
+
._container_16hae_6 {
|
|
980
997
|
display: flex;
|
|
981
998
|
flex-direction: column;
|
|
982
999
|
gap: var(--human-message-editor-gap);
|
|
@@ -988,22 +1005,21 @@ body[data-vscode-theme-kind='vscode-light'] ._content_1kf9a_116 pre > code {
|
|
|
988
1005
|
cursor: text;
|
|
989
1006
|
}
|
|
990
1007
|
|
|
991
|
-
.
|
|
1008
|
+
._container_16hae_6 ._editor_16hae_17 {
|
|
992
1009
|
scrollbar-gutter: stable;
|
|
993
1010
|
padding: var(--prompt-editor-padding-y) var(--prompt-editor-padding-x);
|
|
994
1011
|
}
|
|
995
1012
|
|
|
996
|
-
.
|
|
1013
|
+
._toolbar_16hae_23 {
|
|
997
1014
|
padding: calc(0.75*var(--prompt-editor-padding-y)) var(--prompt-editor-padding-x);
|
|
998
|
-
margin-left: -2px;
|
|
999
1015
|
overflow: hidden;
|
|
1000
1016
|
}
|
|
1001
1017
|
|
|
1002
|
-
.
|
|
1018
|
+
._container_16hae_6:not(._focused_16hae_28, [data-keep-toolbar-open]) {
|
|
1003
1019
|
--human-message-editor-gap: 0px;
|
|
1004
1020
|
}
|
|
1005
1021
|
|
|
1006
|
-
.
|
|
1022
|
+
._container_16hae_6:not(._focused_16hae_28, [data-keep-toolbar-open]) ._toolbar_16hae_23 {
|
|
1007
1023
|
height: 0;
|
|
1008
1024
|
opacity: 0;
|
|
1009
1025
|
margin-top: 0;
|
|
@@ -1011,17 +1027,17 @@ body[data-vscode-theme-kind='vscode-light'] ._content_1kf9a_116 pre > code {
|
|
|
1011
1027
|
padding: 0;
|
|
1012
1028
|
}
|
|
1013
1029
|
|
|
1014
|
-
.
|
|
1030
|
+
._container_16hae_6:hover, ._container_16hae_6:has(:focus-within, menu>button:focus) {
|
|
1015
1031
|
background-color: var(--vscode-input-background);
|
|
1016
1032
|
}
|
|
1017
1033
|
|
|
1018
1034
|
/* Show focus ring when the input is focused or a toolbar button within the input container is
|
|
1019
1035
|
focused, but NOT if something in a toolbar button's popover is focused. */
|
|
1020
|
-
.
|
|
1036
|
+
._container_16hae_6:has([data-lexical-editor='true']:focus-within, menu>button:focus) {
|
|
1021
1037
|
outline-color: var(--vscode-focusBorder);
|
|
1022
1038
|
}
|
|
1023
1039
|
|
|
1024
|
-
._editor-content-
|
|
1040
|
+
._editor-content-editable_16hae_50 {
|
|
1025
1041
|
min-height: 1lh;
|
|
1026
1042
|
}
|
|
1027
1043
|
:root {
|
|
@@ -1099,7 +1115,7 @@ body[data-vscode-theme-kind='vscode-light'] ._content_1kf9a_116 pre > code {
|
|
|
1099
1115
|
._button_rqosg_5:disabled._button--secondary_rqosg_54 {
|
|
1100
1116
|
opacity: 0.7;
|
|
1101
1117
|
}
|
|
1102
|
-
._model-title-with-
|
|
1118
|
+
._model-title-with-icon_1bw6t_1 {
|
|
1103
1119
|
flex: 1;
|
|
1104
1120
|
display: flex;
|
|
1105
1121
|
align-items: center;
|
|
@@ -1107,71 +1123,263 @@ body[data-vscode-theme-kind='vscode-light'] ._content_1kf9a_116 pre > code {
|
|
|
1107
1123
|
line-height: 16px;
|
|
1108
1124
|
}
|
|
1109
1125
|
|
|
1110
|
-
._model-title-with-
|
|
1126
|
+
._model-title-with-icon_1bw6t_1:is(a) {
|
|
1111
1127
|
outline: none !important;
|
|
1112
1128
|
}
|
|
1113
1129
|
|
|
1114
|
-
._model-title-with-
|
|
1130
|
+
._model-title-with-icon_1bw6t_1 ._model-name_1bw6t_13 {
|
|
1115
1131
|
font-weight: 500;
|
|
1116
1132
|
}
|
|
1117
1133
|
|
|
1118
|
-
._model-title-with-
|
|
1134
|
+
._model-title-with-icon_1bw6t_1 ._model-provider_1bw6t_17 {
|
|
1119
1135
|
margin-left: 0.25rem;
|
|
1120
1136
|
opacity: 0.65;
|
|
1121
1137
|
font-size: 85%;
|
|
1122
1138
|
}
|
|
1123
1139
|
|
|
1124
|
-
._model-title-with-
|
|
1140
|
+
._model-title-with-icon_1bw6t_1._disabled_1bw6t_23 {
|
|
1125
1141
|
opacity: 0.5;
|
|
1126
1142
|
}
|
|
1127
1143
|
|
|
1128
|
-
._model-title-with-
|
|
1144
|
+
._model-title-with-icon_1bw6t_1 ._model-icon_1bw6t_27 {
|
|
1129
1145
|
opacity: 0.5;
|
|
1130
1146
|
}
|
|
1131
1147
|
|
|
1132
|
-
._right-
|
|
1148
|
+
._right-icon_1bw6t_31 {
|
|
1133
1149
|
margin-left: auto;
|
|
1134
1150
|
}
|
|
1135
1151
|
|
|
1136
|
-
.
|
|
1152
|
+
._badge_1bw6t_35 {
|
|
1137
1153
|
margin-left: auto;
|
|
1138
1154
|
line-height: 16px;
|
|
1139
1155
|
font-size: 11px;
|
|
1140
1156
|
border-radius: 2px;
|
|
1141
1157
|
padding: 0 5px;
|
|
1142
1158
|
border: 1px solid var(--vscode-contrastBorder);
|
|
1143
|
-
background: var(--vscode-badge-background);
|
|
1144
|
-
color: var(--vscode-badge-foreground);
|
|
1145
|
-
}
|
|
1146
|
-
|
|
1147
|
-
._badge-pro_rn0uf_46 {
|
|
1148
|
-
opacity: 0.75;
|
|
1149
1159
|
}
|
|
1150
1160
|
|
|
1151
|
-
button > ._model-title-with-
|
|
1161
|
+
button > ._model-title-with-icon_1bw6t_1 ._model-name_1bw6t_13 {
|
|
1152
1162
|
font-weight: normal;
|
|
1153
1163
|
}
|
|
1154
1164
|
|
|
1155
|
-
button > ._model-title-with-
|
|
1156
|
-
button > ._model-title-with-
|
|
1157
|
-
button > ._model-title-with-
|
|
1165
|
+
button > ._model-title-with-icon_1bw6t_1 ._model-icon_1bw6t_27,
|
|
1166
|
+
button > ._model-title-with-icon_1bw6t_1 ._model-provider_1bw6t_17,
|
|
1167
|
+
button > ._model-title-with-icon_1bw6t_1 ._badge_1bw6t_35 {
|
|
1158
1168
|
display: none;
|
|
1159
1169
|
}
|
|
1160
|
-
._info-message_6yx2w_1 {
|
|
1161
|
-
--mention-color-opacity: 70%;
|
|
1162
1170
|
|
|
1163
|
-
|
|
1164
|
-
|
|
1171
|
+
._item_1xr6n_2 {
|
|
1172
|
+
display: flex;
|
|
1173
|
+
gap: 0.5rem;
|
|
1165
1174
|
}
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1175
|
+
|
|
1176
|
+
._item--indicator_1xr6n_13 {
|
|
1177
|
+
display: none !important;
|
|
1178
|
+
margin-left: auto;
|
|
1179
|
+
align-self: flex-start;
|
|
1180
|
+
}
|
|
1181
|
+
|
|
1182
|
+
._item_1xr6n_2[data-selected="true"] ._item--indicator_1xr6n_13 {
|
|
1183
|
+
display: block !important;
|
|
1184
|
+
color: inherit;
|
|
1185
|
+
}
|
|
1186
|
+
|
|
1187
|
+
._item_1xr6n_2[data-selected="true"] ._prompt--avatar_1xr6n_18, ._item_1xr6n_2[data-selected="true"] ._prompt--description_1xr6n_18, ._item_1xr6n_2[data-selected="true"] ._prompt--icon_1xr6n_18 {
|
|
1188
|
+
color: inherit;
|
|
1189
|
+
}
|
|
1190
|
+
|
|
1191
|
+
._prompt_1xr6n_18 {
|
|
1192
|
+
display: flex;
|
|
1193
|
+
gap: 0.5rem;
|
|
1194
|
+
align-items: center;
|
|
1195
|
+
min-width: 0;
|
|
1196
|
+
}
|
|
1197
|
+
|
|
1198
|
+
._prompt--avatar_1xr6n_18 {
|
|
1199
|
+
flex-shrink: 0;
|
|
1200
|
+
width: 22px;
|
|
1201
|
+
height: 22px;
|
|
1202
|
+
display: flex;
|
|
1203
|
+
align-items: center;
|
|
1204
|
+
justify-content: center;
|
|
1205
|
+
}
|
|
1206
|
+
|
|
1207
|
+
._prompt--icon_1xr6n_18 {
|
|
1208
|
+
color: var(--vscode-input-placeholderForeground);
|
|
1209
|
+
}
|
|
1210
|
+
|
|
1211
|
+
._prompt--content_1xr6n_1 {
|
|
1212
|
+
min-width: 0;
|
|
1213
|
+
display: flex;
|
|
1214
|
+
flex-direction: column;
|
|
1215
|
+
}
|
|
1216
|
+
|
|
1217
|
+
._prompt--title_1xr6n_1 {
|
|
1218
|
+
min-width: 0;
|
|
1219
|
+
display: flex;
|
|
1220
|
+
gap: 0.25rem;
|
|
1221
|
+
}
|
|
1222
|
+
|
|
1223
|
+
._prompt--name_1xr6n_1 {
|
|
1224
|
+
white-space: nowrap;
|
|
1225
|
+
overflow: hidden;
|
|
1226
|
+
text-overflow: ellipsis;
|
|
1227
|
+
font-weight: 500;
|
|
1228
|
+
}
|
|
1229
|
+
|
|
1230
|
+
._prompt--description_1xr6n_18 {
|
|
1231
|
+
color: var(--vscode-input-placeholderForeground);
|
|
1232
|
+
white-space: nowrap;
|
|
1233
|
+
overflow: hidden;
|
|
1234
|
+
text-overflow: ellipsis;
|
|
1235
|
+
}
|
|
1236
|
+
|
|
1237
|
+
|
|
1238
|
+
._list_q63t8_2 {
|
|
1239
|
+
outline: none;
|
|
1240
|
+
max-height: unset !important;
|
|
1241
|
+
background-color: transparent !important;
|
|
1242
|
+
}
|
|
1243
|
+
|
|
1244
|
+
._list--input-container_q63t8_1 {
|
|
1245
|
+
top: 0;
|
|
1246
|
+
position: sticky;
|
|
1247
|
+
z-index: 1;
|
|
1248
|
+
}
|
|
1249
|
+
|
|
1250
|
+
._list--input_q63t8_1 {
|
|
1251
|
+
margin: 0.5rem;
|
|
1252
|
+
padding: 0.5rem;
|
|
1253
|
+
border-radius: 3px;
|
|
1254
|
+
background-color: var(--vscode-input-background);
|
|
1255
|
+
color: var(--vscode-input-foreground);
|
|
1256
|
+
}
|
|
1257
|
+
|
|
1258
|
+
._list--input_q63t8_1:focus {
|
|
1259
|
+
box-shadow: 0 0 0 0.125rem var(--vscode-focusBorder)
|
|
1260
|
+
}
|
|
1261
|
+
|
|
1262
|
+
._list-chips_q63t8_1 [cmdk-list-sizer] {
|
|
1263
|
+
display: flex;
|
|
1264
|
+
flex-direction: column;
|
|
1265
|
+
gap: 0.5rem
|
|
1266
|
+
}
|
|
1267
|
+
|
|
1268
|
+
._list-chips_q63t8_1 ._list--item_q63t8_32 {
|
|
1269
|
+
border-radius: 3px;
|
|
1270
|
+
border: 1px solid var(--vscode-dropdown-border, transparent);
|
|
1271
|
+
padding: 0.25rem 0.5rem;
|
|
1272
|
+
}
|
|
1273
|
+
|
|
1274
|
+
._list-chips_q63t8_1 ._list--item_q63t8_32[aria-selected="true"] {
|
|
1275
|
+
border-color: var(--vscode-list-activeSelectionBackground);
|
|
1276
|
+
}
|
|
1277
|
+
|
|
1278
|
+
._list-chips_q63t8_1 ._list--item_q63t8_32:not([aria-selected="true"]) {
|
|
1279
|
+
background-color: var(--vscode-dropdown-background);
|
|
1280
|
+
}
|
|
1281
|
+
|
|
1282
|
+
._root_18l4i_2 {
|
|
1283
|
+
display: flex;
|
|
1284
|
+
flex-direction: column;
|
|
1285
|
+
padding: 0.75rem;
|
|
1286
|
+
border-radius: 3px;
|
|
1287
|
+
border: 1px solid var(--vscode-dropdown-border);
|
|
1288
|
+
background-color: var(--vscode-dropdown-background);
|
|
1289
|
+
}
|
|
1290
|
+
|
|
1291
|
+
._icons-header_18l4i_11 {
|
|
1292
|
+
display: flex;
|
|
1293
|
+
gap: 0.5rem;
|
|
1294
|
+
margin-bottom: 0.5rem;
|
|
1295
|
+
}
|
|
1296
|
+
|
|
1297
|
+
._heading_18l4i_17 {
|
|
1298
|
+
font-size: 1rem;
|
|
1299
|
+
font-weight: 500;
|
|
1300
|
+
margin-bottom: 0.25rem;
|
|
1301
|
+
color: var(--vscode-dropdown-foreground);
|
|
1302
|
+
}
|
|
1303
|
+
|
|
1304
|
+
._description-text_18l4i_24 {
|
|
1305
|
+
line-height: 1rem;
|
|
1306
|
+
margin-bottom: 0.75rem;
|
|
1307
|
+
color: var(--vscode-dropdown-foreground);
|
|
1308
|
+
}
|
|
1309
|
+
|
|
1310
|
+
._actions_18l4i_30 {
|
|
1311
|
+
display: flex;
|
|
1312
|
+
flex-wrap: wrap;
|
|
1313
|
+
align-items: center;
|
|
1314
|
+
gap: 0.5rem;
|
|
1315
|
+
}
|
|
1316
|
+
|
|
1317
|
+
._action_18l4i_30 {
|
|
1318
|
+
flex-shrink: 0;
|
|
1319
|
+
}
|
|
1320
|
+
|
|
1321
|
+
._footer_18l4i_41 {
|
|
1322
|
+
margin-top: 0.75rem;
|
|
1323
|
+
line-height: 1rem;
|
|
1324
|
+
font-size: 12px;
|
|
1325
|
+
}
|
|
1326
|
+
|
|
1327
|
+
._inner-container_18l4i_47 {
|
|
1328
|
+
margin-top: 0.5rem;
|
|
1329
|
+
}
|
|
1330
|
+
|
|
1331
|
+
._loader_18l4i_51 {
|
|
1332
|
+
width: 100%;
|
|
1333
|
+
height: 0.5rem;
|
|
1334
|
+
position: relative;
|
|
1335
|
+
overflow: hidden;
|
|
1336
|
+
margin-top: 0.5rem;
|
|
1337
|
+
margin-bottom: 0.5rem;
|
|
1338
|
+
border-radius: 3px;
|
|
1339
|
+
background-color: var(--vscode-editor-background);
|
|
1340
|
+
|
|
1341
|
+
/* Fix overflow clipping in Safari */
|
|
1342
|
+
/* https://gist.github.com/domske/b66047671c780a238b51c51ffde8d3a0 */
|
|
1343
|
+
transform: translateZ(0);
|
|
1344
|
+
}
|
|
1345
|
+
|
|
1346
|
+
._loader-indicator_18l4i_1 {
|
|
1347
|
+
width: 100%;
|
|
1348
|
+
height: 100%;
|
|
1349
|
+
background-color: var(--vscode-button-background);
|
|
1350
|
+
transition: transform 660ms cubic-bezier(0.65, 0, 0.35, 1);
|
|
1351
|
+
}
|
|
1352
|
+
|
|
1353
|
+
._error_18l4i_73 {
|
|
1354
|
+
color: #de3400;
|
|
1355
|
+
background-color: #f7bcbc;
|
|
1356
|
+
line-height: 150%;
|
|
1357
|
+
padding: 0.5rem;
|
|
1358
|
+
word-break: break-word;
|
|
1359
|
+
border-left: 0.5rem solid #d8000c;
|
|
1360
|
+
font-weight: bold;
|
|
1361
|
+
}
|
|
1362
|
+
|
|
1363
|
+
._close_18l4i_83 {
|
|
1364
|
+
padding: 0.25rem;
|
|
1365
|
+
align-self: flex-start;
|
|
1366
|
+
margin: -0.25rem -0.25rem 0 auto;
|
|
1367
|
+
}
|
|
1368
|
+
|
|
1369
|
+
._prompts-input_lclhy_2 {
|
|
1370
|
+
background-color: var(--vscode-sideBar-background);
|
|
1371
|
+
}
|
|
1372
|
+
|
|
1373
|
+
._prompts-container_lclhy_6 {
|
|
1374
|
+
height: min-content !important;
|
|
1375
|
+
overflow: visible !important;
|
|
1376
|
+
}
|
|
1377
|
+
|
|
1378
|
+
._prompt-migration-widget_lclhy_11 {
|
|
1379
|
+
margin: 1rem 1rem -0.75rem 1rem;
|
|
1172
1380
|
}
|
|
1173
1381
|
:root {
|
|
1174
|
-
--vscode-overlay-background:
|
|
1382
|
+
--vscode-overlay-background: rgb(0 0 0 / 50%);
|
|
1175
1383
|
--vscode-modal-background: var(--vscode-sideBar-background);
|
|
1176
1384
|
}
|
|
1177
1385
|
|
|
@@ -1179,15 +1387,13 @@ button > ._model-title-with-icon_rn0uf_1 ._badge_rn0uf_35 {
|
|
|
1179
1387
|
Root element which only exists to use container query
|
|
1180
1388
|
for changing header tabs layout.
|
|
1181
1389
|
*/
|
|
1182
|
-
._tabs-
|
|
1390
|
+
._tabs-root_a1f96_10 {
|
|
1183
1391
|
container-type: inline-size;
|
|
1184
1392
|
container-name: tabs-container;
|
|
1185
|
-
|
|
1186
1393
|
isolation: isolate;
|
|
1187
|
-
z-index: 1;
|
|
1188
1394
|
}
|
|
1189
1395
|
|
|
1190
|
-
._tabs-
|
|
1396
|
+
._tabs-container_a1f96_16 {
|
|
1191
1397
|
display: flex;
|
|
1192
1398
|
width: 100%;
|
|
1193
1399
|
padding: 0;
|
|
@@ -1198,7 +1404,7 @@ button > ._model-title-with-icon_rn0uf_1 ._badge_rn0uf_35 {
|
|
|
1198
1404
|
background-color: var(--vscode-sideBar-background);
|
|
1199
1405
|
}
|
|
1200
1406
|
|
|
1201
|
-
.
|
|
1407
|
+
._tabs_a1f96_10 {
|
|
1202
1408
|
display: flex;
|
|
1203
1409
|
flex-shrink: 0;
|
|
1204
1410
|
gap: 2px;
|
|
@@ -1207,22 +1413,22 @@ button > ._model-title-with-icon_rn0uf_1 ._badge_rn0uf_35 {
|
|
|
1207
1413
|
border-bottom: 1px solid var(--vscode-dropdown-border);
|
|
1208
1414
|
}
|
|
1209
1415
|
|
|
1210
|
-
.
|
|
1416
|
+
._tabs_a1f96_10 > * {
|
|
1211
1417
|
flex-shrink: 0;
|
|
1212
1418
|
}
|
|
1213
1419
|
|
|
1214
|
-
._sub-
|
|
1420
|
+
._sub-tabs_a1f96_40 {
|
|
1215
1421
|
display: flex;
|
|
1216
1422
|
flex-shrink: 0;
|
|
1217
1423
|
gap: 8px;
|
|
1218
1424
|
padding: 0 8px;
|
|
1219
1425
|
}
|
|
1220
1426
|
|
|
1221
|
-
._sub-
|
|
1427
|
+
._sub-tabs_a1f96_40 > * {
|
|
1222
1428
|
flex-shrink: 0;
|
|
1223
1429
|
}
|
|
1224
1430
|
|
|
1225
|
-
._tab-action-
|
|
1431
|
+
._tab-action-label_a1f96_51 {
|
|
1226
1432
|
display: inline;
|
|
1227
1433
|
}
|
|
1228
1434
|
|
|
@@ -1234,25 +1440,25 @@ button > ._model-title-with-icon_rn0uf_1 ._badge_rn0uf_35 {
|
|
|
1234
1440
|
this override)
|
|
1235
1441
|
*/
|
|
1236
1442
|
@container tabs-container (width < 575px) {
|
|
1237
|
-
._tabs-
|
|
1443
|
+
._tabs-root_a1f96_10:not(._tabs-root--cody-web_a1f96_63) ._tab-action-label_a1f96_51 {
|
|
1238
1444
|
display: none;
|
|
1239
1445
|
}
|
|
1240
1446
|
}
|
|
1241
1447
|
|
|
1242
1448
|
/* Special override for Cody Web tabs */
|
|
1243
1449
|
@container tabs-container (width < 375px) {
|
|
1244
|
-
._tabs-root--cody-
|
|
1450
|
+
._tabs-root--cody-web_a1f96_63 ._tab-action-label_a1f96_51 {
|
|
1245
1451
|
display: none;
|
|
1246
1452
|
}
|
|
1247
1453
|
}
|
|
1248
1454
|
|
|
1249
|
-
._dialog-
|
|
1455
|
+
._dialog-overlay_a1f96_1 {
|
|
1250
1456
|
inset: 0;
|
|
1251
1457
|
position: fixed;
|
|
1252
1458
|
background-color: var(--vscode-overlay-background);
|
|
1253
1459
|
}
|
|
1254
1460
|
|
|
1255
|
-
._dialog-
|
|
1461
|
+
._dialog-content_a1f96_1 {
|
|
1256
1462
|
width: 90vw;
|
|
1257
1463
|
max-width: 450px;
|
|
1258
1464
|
max-height: 85vh;
|
|
@@ -1261,35 +1467,90 @@ button > ._model-title-with-icon_rn0uf_1 ._badge_rn0uf_35 {
|
|
|
1261
1467
|
left: 50%;
|
|
1262
1468
|
transform: translate(-50%, -50%);
|
|
1263
1469
|
padding: 25px;
|
|
1264
|
-
|
|
1265
1470
|
border-radius: 6px;
|
|
1266
1471
|
background-color: var(--vscode-modal-background);
|
|
1267
|
-
box-shadow: hsl(
|
|
1472
|
+
box-shadow: hsl(206deg 22% 7% / 35%) 0 10px 38px -10px, hsl(206deg 22% 7% / 20%) 0 10px 20px -15px;
|
|
1268
1473
|
}
|
|
1269
1474
|
|
|
1270
|
-
._dialog-
|
|
1475
|
+
._dialog-content_a1f96_1:focus {
|
|
1271
1476
|
outline: none;
|
|
1272
1477
|
}
|
|
1273
1478
|
|
|
1274
|
-
._dialog-
|
|
1479
|
+
._dialog-title_a1f96_1 {
|
|
1275
1480
|
margin: 0;
|
|
1276
1481
|
font-weight: 500;
|
|
1277
1482
|
font-size: 17px;
|
|
1278
1483
|
}
|
|
1279
1484
|
|
|
1280
|
-
._dialog-
|
|
1485
|
+
._dialog-description_a1f96_1 {
|
|
1281
1486
|
margin: 10px 0 20px;
|
|
1282
1487
|
font-size: 15px;
|
|
1283
1488
|
line-height: 1.5;
|
|
1284
1489
|
}
|
|
1285
1490
|
|
|
1286
|
-
._dialog-
|
|
1491
|
+
._dialog-footer_a1f96_1 {
|
|
1287
1492
|
margin-top: 1.5rem;
|
|
1288
1493
|
width: 100%;
|
|
1289
1494
|
display: flex;
|
|
1290
1495
|
justify-content: flex-end;
|
|
1291
1496
|
gap: 0.5rem;
|
|
1292
1497
|
}
|
|
1498
|
+
._info-message_6yx2w_1 {
|
|
1499
|
+
--mention-color-opacity: 70%;
|
|
1500
|
+
|
|
1501
|
+
border: 1px solid color-mix(in lch, var(--vscode-inputOption-activeBackground) calc(1.2* var(--mention-color-opacity)), transparent);
|
|
1502
|
+
background-color: color-mix(in lch, var(--vscode-inputOption-activeBackground) var(--mention-color-opacity), transparent);
|
|
1503
|
+
}
|
|
1504
|
+
._chat-disabled_rc7no_1 {
|
|
1505
|
+
text-align: center;
|
|
1506
|
+
padding: 0.5rem 0.25rem;
|
|
1507
|
+
background-color: var(--vscode-inputValidation-errorBackground);
|
|
1508
|
+
border-bottom: solid 1px var(--vscode-inputValidation-errorBorder);
|
|
1509
|
+
color: var(--vscode-foreground);
|
|
1510
|
+
}
|
|
1511
|
+
._welcome-footer_q2fi5_1 {
|
|
1512
|
+
padding: 1rem 1rem;
|
|
1513
|
+
display: flex;
|
|
1514
|
+
flex-flow: column nowrap;
|
|
1515
|
+
justify-content: space-between;
|
|
1516
|
+
align-items: center;
|
|
1517
|
+
max-width: 100%;
|
|
1518
|
+
color: var(--vscode-input-placeholderForeground)
|
|
1519
|
+
}
|
|
1520
|
+
|
|
1521
|
+
._tips_q2fi5_11 {
|
|
1522
|
+
display: flex;
|
|
1523
|
+
flex-flow: column nowrap;
|
|
1524
|
+
flex-shrink: 0;
|
|
1525
|
+
gap: 0.5rem;
|
|
1526
|
+
padding: 1.0rem;
|
|
1527
|
+
border-bottom: 0.25px solid var(--vscode-dropdown-border);
|
|
1528
|
+
}
|
|
1529
|
+
|
|
1530
|
+
._links_q2fi5_20 {
|
|
1531
|
+
display: flex;
|
|
1532
|
+
flex-shrink: none;
|
|
1533
|
+
flex-direction: row;
|
|
1534
|
+
padding: 1.0rem 1.5rem;
|
|
1535
|
+
gap: 0.5rem;
|
|
1536
|
+
flex-shrink: 0;
|
|
1537
|
+
justify-content: space-around;
|
|
1538
|
+
align-items: center;
|
|
1539
|
+
}
|
|
1540
|
+
|
|
1541
|
+
._item_q2fi5_31 {
|
|
1542
|
+
display: flex;
|
|
1543
|
+
flex-flow: row nowrap;
|
|
1544
|
+
flex-shrink: 0;
|
|
1545
|
+
gap: 0.5rem;
|
|
1546
|
+
align-items: center;
|
|
1547
|
+
}
|
|
1548
|
+
|
|
1549
|
+
._link_q2fi5_20 {
|
|
1550
|
+
color: inherit;
|
|
1551
|
+
text-decoration: none;
|
|
1552
|
+
|
|
1553
|
+
}
|
|
1293
1554
|
|
|
1294
1555
|
/*
|
|
1295
1556
|
Since this package is used only for Cody Web in Sourcegraph it's ok to
|
|
@@ -1949,6 +2210,19 @@ imported in Sourcegraph shell.
|
|
|
1949
2210
|
margin-top: 4px;
|
|
1950
2211
|
margin-bottom: 4px;
|
|
1951
2212
|
}
|
|
2213
|
+
.tw-my-4 {
|
|
2214
|
+
margin-top: 8px;
|
|
2215
|
+
margin-bottom: 8px;
|
|
2216
|
+
}
|
|
2217
|
+
.tw-mb-0 {
|
|
2218
|
+
margin-bottom: 0px;
|
|
2219
|
+
}
|
|
2220
|
+
.tw-mb-2 {
|
|
2221
|
+
margin-bottom: 4px;
|
|
2222
|
+
}
|
|
2223
|
+
.tw-mb-3 {
|
|
2224
|
+
margin-bottom: 6px;
|
|
2225
|
+
}
|
|
1952
2226
|
.tw-mb-4 {
|
|
1953
2227
|
margin-bottom: 8px;
|
|
1954
2228
|
}
|
|
@@ -1967,9 +2241,6 @@ imported in Sourcegraph shell.
|
|
|
1967
2241
|
.tw-ml-2 {
|
|
1968
2242
|
margin-left: 4px;
|
|
1969
2243
|
}
|
|
1970
|
-
.tw-ml-4 {
|
|
1971
|
-
margin-left: 8px;
|
|
1972
|
-
}
|
|
1973
2244
|
.tw-ml-auto {
|
|
1974
2245
|
margin-left: auto;
|
|
1975
2246
|
}
|
|
@@ -1991,9 +2262,15 @@ imported in Sourcegraph shell.
|
|
|
1991
2262
|
.tw-mt-2 {
|
|
1992
2263
|
margin-top: 4px;
|
|
1993
2264
|
}
|
|
2265
|
+
.tw-mt-3 {
|
|
2266
|
+
margin-top: 6px;
|
|
2267
|
+
}
|
|
1994
2268
|
.tw-mt-4 {
|
|
1995
2269
|
margin-top: 8px;
|
|
1996
2270
|
}
|
|
2271
|
+
.tw-mt-5 {
|
|
2272
|
+
margin-top: 10px;
|
|
2273
|
+
}
|
|
1997
2274
|
.tw-mt-6 {
|
|
1998
2275
|
margin-top: 12px;
|
|
1999
2276
|
}
|
|
@@ -2003,6 +2280,9 @@ imported in Sourcegraph shell.
|
|
|
2003
2280
|
.tw-mt-auto {
|
|
2004
2281
|
margin-top: auto;
|
|
2005
2282
|
}
|
|
2283
|
+
.tw-inline-block {
|
|
2284
|
+
display: inline-block;
|
|
2285
|
+
}
|
|
2006
2286
|
.tw-flex {
|
|
2007
2287
|
display: flex;
|
|
2008
2288
|
}
|
|
@@ -2034,6 +2314,9 @@ imported in Sourcegraph shell.
|
|
|
2034
2314
|
.tw-h-\[20px\] {
|
|
2035
2315
|
height: 20px;
|
|
2036
2316
|
}
|
|
2317
|
+
.tw-h-\[30px\] {
|
|
2318
|
+
height: 30px;
|
|
2319
|
+
}
|
|
2037
2320
|
.tw-h-\[50vh\] {
|
|
2038
2321
|
height: 50vh;
|
|
2039
2322
|
}
|
|
@@ -2052,6 +2335,15 @@ imported in Sourcegraph shell.
|
|
|
2052
2335
|
.tw-max-h-\[500px\] {
|
|
2053
2336
|
max-height: 500px;
|
|
2054
2337
|
}
|
|
2338
|
+
.tw-max-h-\[70vh\] {
|
|
2339
|
+
max-height: 70vh;
|
|
2340
|
+
}
|
|
2341
|
+
.tw-max-h-fit {
|
|
2342
|
+
max-height: fit-content;
|
|
2343
|
+
}
|
|
2344
|
+
.\!tw-w-auto {
|
|
2345
|
+
width: auto !important;
|
|
2346
|
+
}
|
|
2055
2347
|
.tw-w-72 {
|
|
2056
2348
|
width: 18rem;
|
|
2057
2349
|
}
|
|
@@ -2061,6 +2353,9 @@ imported in Sourcegraph shell.
|
|
|
2061
2353
|
.tw-w-\[1\.375rem\] {
|
|
2062
2354
|
width: 1.375rem;
|
|
2063
2355
|
}
|
|
2356
|
+
.tw-w-\[16px\] {
|
|
2357
|
+
width: 16px;
|
|
2358
|
+
}
|
|
2064
2359
|
.tw-w-\[18px\] {
|
|
2065
2360
|
width: 18px;
|
|
2066
2361
|
}
|
|
@@ -2073,6 +2368,9 @@ imported in Sourcegraph shell.
|
|
|
2073
2368
|
.tw-w-\[225px\] {
|
|
2074
2369
|
width: 225px;
|
|
2075
2370
|
}
|
|
2371
|
+
.tw-w-\[30px\] {
|
|
2372
|
+
width: 30px;
|
|
2373
|
+
}
|
|
2076
2374
|
.tw-w-\[75vw\] {
|
|
2077
2375
|
width: 75vw;
|
|
2078
2376
|
}
|
|
@@ -2097,6 +2395,9 @@ imported in Sourcegraph shell.
|
|
|
2097
2395
|
.tw-max-w-72 {
|
|
2098
2396
|
max-width: 18rem;
|
|
2099
2397
|
}
|
|
2398
|
+
.tw-max-w-\[200px\] {
|
|
2399
|
+
max-width: 200px;
|
|
2400
|
+
}
|
|
2100
2401
|
.tw-max-w-\[550px\] {
|
|
2101
2402
|
max-width: 550px;
|
|
2102
2403
|
}
|
|
@@ -2109,11 +2410,17 @@ imported in Sourcegraph shell.
|
|
|
2109
2410
|
.tw-max-w-lg {
|
|
2110
2411
|
max-width: 32rem;
|
|
2111
2412
|
}
|
|
2413
|
+
.tw-max-w-md {
|
|
2414
|
+
max-width: 28rem;
|
|
2415
|
+
}
|
|
2112
2416
|
.tw-flex-1 {
|
|
2113
2417
|
flex: 1 1 0%;
|
|
2114
2418
|
}
|
|
2115
|
-
.tw-flex-
|
|
2116
|
-
flex:
|
|
2419
|
+
.tw-flex-auto {
|
|
2420
|
+
flex: 1 1 auto;
|
|
2421
|
+
}
|
|
2422
|
+
.tw-flex-shrink-0 {
|
|
2423
|
+
flex-shrink: 0;
|
|
2117
2424
|
}
|
|
2118
2425
|
.tw-shrink-0 {
|
|
2119
2426
|
flex-shrink: 0;
|
|
@@ -2121,8 +2428,8 @@ imported in Sourcegraph shell.
|
|
|
2121
2428
|
.tw-flex-grow {
|
|
2122
2429
|
flex-grow: 1;
|
|
2123
2430
|
}
|
|
2124
|
-
.tw-
|
|
2125
|
-
flex-
|
|
2431
|
+
.tw-basis-0 {
|
|
2432
|
+
flex-basis: 0px;
|
|
2126
2433
|
}
|
|
2127
2434
|
.-tw-translate-y-\[\.2em\] {
|
|
2128
2435
|
--tw-translate-y: -.2em;
|
|
@@ -2150,6 +2457,9 @@ imported in Sourcegraph shell.
|
|
|
2150
2457
|
.tw-select-none {
|
|
2151
2458
|
user-select: none;
|
|
2152
2459
|
}
|
|
2460
|
+
.tw-resize-none {
|
|
2461
|
+
resize: none;
|
|
2462
|
+
}
|
|
2153
2463
|
.tw-list-none {
|
|
2154
2464
|
list-style-type: none;
|
|
2155
2465
|
}
|
|
@@ -2159,15 +2469,15 @@ imported in Sourcegraph shell.
|
|
|
2159
2469
|
.tw-flex-col {
|
|
2160
2470
|
flex-direction: column;
|
|
2161
2471
|
}
|
|
2472
|
+
.tw-flex-col-reverse {
|
|
2473
|
+
flex-direction: column-reverse;
|
|
2474
|
+
}
|
|
2162
2475
|
.tw-flex-wrap {
|
|
2163
2476
|
flex-wrap: wrap;
|
|
2164
2477
|
}
|
|
2165
2478
|
.tw-flex-wrap-reverse {
|
|
2166
2479
|
flex-wrap: wrap-reverse;
|
|
2167
2480
|
}
|
|
2168
|
-
.\!tw-items-start {
|
|
2169
|
-
align-items: flex-start !important;
|
|
2170
|
-
}
|
|
2171
2481
|
.tw-items-start {
|
|
2172
2482
|
align-items: flex-start;
|
|
2173
2483
|
}
|
|
@@ -2183,6 +2493,9 @@ imported in Sourcegraph shell.
|
|
|
2183
2493
|
.tw-items-stretch {
|
|
2184
2494
|
align-items: stretch;
|
|
2185
2495
|
}
|
|
2496
|
+
.\!tw-justify-start {
|
|
2497
|
+
justify-content: flex-start !important;
|
|
2498
|
+
}
|
|
2186
2499
|
.tw-justify-end {
|
|
2187
2500
|
justify-content: flex-end;
|
|
2188
2501
|
}
|
|
@@ -2192,11 +2505,8 @@ imported in Sourcegraph shell.
|
|
|
2192
2505
|
.tw-justify-between {
|
|
2193
2506
|
justify-content: space-between;
|
|
2194
2507
|
}
|
|
2195
|
-
|
|
2196
|
-
gap:
|
|
2197
|
-
}
|
|
2198
|
-
.tw-gap-0\.5 {
|
|
2199
|
-
gap: 0.125rem;
|
|
2508
|
+
.\!tw-gap-2 {
|
|
2509
|
+
gap: 4px !important;
|
|
2200
2510
|
}
|
|
2201
2511
|
.tw-gap-1 {
|
|
2202
2512
|
gap: 2px;
|
|
@@ -2245,6 +2555,9 @@ imported in Sourcegraph shell.
|
|
|
2245
2555
|
.tw-divide-muted > :not([hidden]) ~ :not([hidden]) {
|
|
2246
2556
|
border-color: var(--vscode-input-background);
|
|
2247
2557
|
}
|
|
2558
|
+
.tw-self-start {
|
|
2559
|
+
align-self: flex-start;
|
|
2560
|
+
}
|
|
2248
2561
|
.tw-self-stretch {
|
|
2249
2562
|
align-self: stretch;
|
|
2250
2563
|
}
|
|
@@ -2254,9 +2567,6 @@ imported in Sourcegraph shell.
|
|
|
2254
2567
|
.tw-overflow-hidden {
|
|
2255
2568
|
overflow: hidden;
|
|
2256
2569
|
}
|
|
2257
|
-
.tw-overflow-clip {
|
|
2258
|
-
overflow: clip;
|
|
2259
|
-
}
|
|
2260
2570
|
.tw-overflow-y-auto {
|
|
2261
2571
|
overflow-y: auto;
|
|
2262
2572
|
}
|
|
@@ -2268,18 +2578,12 @@ imported in Sourcegraph shell.
|
|
|
2268
2578
|
text-overflow: ellipsis;
|
|
2269
2579
|
white-space: nowrap;
|
|
2270
2580
|
}
|
|
2271
|
-
.tw-text-ellipsis {
|
|
2272
|
-
text-overflow: ellipsis;
|
|
2273
|
-
}
|
|
2274
2581
|
.tw-whitespace-nowrap {
|
|
2275
2582
|
white-space: nowrap;
|
|
2276
2583
|
}
|
|
2277
2584
|
.tw-whitespace-pre-line {
|
|
2278
2585
|
white-space: pre-line;
|
|
2279
2586
|
}
|
|
2280
|
-
.tw-text-nowrap {
|
|
2281
|
-
text-wrap: nowrap;
|
|
2282
|
-
}
|
|
2283
2587
|
.\!tw-rounded-full {
|
|
2284
2588
|
border-radius: 9999px !important;
|
|
2285
2589
|
}
|
|
@@ -2304,9 +2608,6 @@ imported in Sourcegraph shell.
|
|
|
2304
2608
|
.tw-rounded-md {
|
|
2305
2609
|
border-radius: 4px;
|
|
2306
2610
|
}
|
|
2307
|
-
.tw-rounded-none {
|
|
2308
|
-
border-radius: 0px;
|
|
2309
|
-
}
|
|
2310
2611
|
.tw-rounded-sm {
|
|
2311
2612
|
border-radius: 2px;
|
|
2312
2613
|
}
|
|
@@ -2346,15 +2647,15 @@ imported in Sourcegraph shell.
|
|
|
2346
2647
|
.tw-border-current {
|
|
2347
2648
|
border-color: currentColor;
|
|
2348
2649
|
}
|
|
2650
|
+
.tw-border-input-border {
|
|
2651
|
+
border-color: var(--vscode-input-border);
|
|
2652
|
+
}
|
|
2349
2653
|
.tw-border-keybinding-border {
|
|
2350
2654
|
border-color: var(--vscode-keybindingLabel-border);
|
|
2351
2655
|
}
|
|
2352
2656
|
.tw-border-muted-transparent {
|
|
2353
2657
|
border-color: color-mix(in lch, currentColor 15%, transparent);
|
|
2354
2658
|
}
|
|
2355
|
-
.tw-border-ring {
|
|
2356
|
-
border-color: var(--vscode-focusBorder);
|
|
2357
|
-
}
|
|
2358
2659
|
.tw-border-transparent {
|
|
2359
2660
|
border-color: transparent;
|
|
2360
2661
|
}
|
|
@@ -2367,9 +2668,6 @@ imported in Sourcegraph shell.
|
|
|
2367
2668
|
.tw-border-t-border {
|
|
2368
2669
|
border-top-color: var(--vscode-dropdown-border);
|
|
2369
2670
|
}
|
|
2370
|
-
.\!tw-bg-\[unset\] {
|
|
2371
|
-
background-color: unset !important;
|
|
2372
|
-
}
|
|
2373
2671
|
.tw-bg-\[unset\] {
|
|
2374
2672
|
background-color: unset;
|
|
2375
2673
|
}
|
|
@@ -2391,15 +2689,34 @@ imported in Sourcegraph shell.
|
|
|
2391
2689
|
.tw-bg-button-secondary-background {
|
|
2392
2690
|
background-color: var(--vscode-button-secondaryBackground);
|
|
2393
2691
|
}
|
|
2692
|
+
.tw-bg-button-secondary-background-hover {
|
|
2693
|
+
background-color: var(--vscode-button-secondaryHoverBackground);
|
|
2694
|
+
}
|
|
2394
2695
|
.tw-bg-current {
|
|
2395
2696
|
background-color: currentColor;
|
|
2396
2697
|
}
|
|
2698
|
+
.tw-bg-input-background {
|
|
2699
|
+
background-color: var(--vscode-input-background);
|
|
2700
|
+
}
|
|
2397
2701
|
.tw-bg-keybinding-background {
|
|
2398
2702
|
background-color: var(--vscode-keybindingLabel-background);
|
|
2399
2703
|
}
|
|
2704
|
+
.tw-bg-muted {
|
|
2705
|
+
background-color: var(--vscode-input-background);
|
|
2706
|
+
}
|
|
2400
2707
|
.tw-bg-popover {
|
|
2401
2708
|
background-color: var(--vscode-quickInput-background);
|
|
2402
2709
|
}
|
|
2710
|
+
.tw-bg-red-800 {
|
|
2711
|
+
--tw-bg-opacity: 1;
|
|
2712
|
+
background-color: rgb(153 27 27 / var(--tw-bg-opacity));
|
|
2713
|
+
}
|
|
2714
|
+
.tw-bg-sidebar-background {
|
|
2715
|
+
background-color: var(--vscode-sideBar-background);
|
|
2716
|
+
}
|
|
2717
|
+
.tw-bg-status-offline-background {
|
|
2718
|
+
background-color: var(--vscode-statusBarItem-offlineBackground);
|
|
2719
|
+
}
|
|
2403
2720
|
.tw-bg-transparent {
|
|
2404
2721
|
background-color: transparent;
|
|
2405
2722
|
}
|
|
@@ -2412,6 +2729,9 @@ imported in Sourcegraph shell.
|
|
|
2412
2729
|
.\!tw-p-3 {
|
|
2413
2730
|
padding: 6px !important;
|
|
2414
2731
|
}
|
|
2732
|
+
.\!tw-p-4 {
|
|
2733
|
+
padding: 8px !important;
|
|
2734
|
+
}
|
|
2415
2735
|
.tw-p-0 {
|
|
2416
2736
|
padding: 0px;
|
|
2417
2737
|
}
|
|
@@ -2421,14 +2741,22 @@ imported in Sourcegraph shell.
|
|
|
2421
2741
|
.tw-p-2 {
|
|
2422
2742
|
padding: 4px;
|
|
2423
2743
|
}
|
|
2744
|
+
.tw-p-3 {
|
|
2745
|
+
padding: 6px;
|
|
2746
|
+
}
|
|
2424
2747
|
.tw-p-4 {
|
|
2425
2748
|
padding: 8px;
|
|
2426
2749
|
}
|
|
2427
2750
|
.tw-p-6 {
|
|
2428
2751
|
padding: 12px;
|
|
2429
2752
|
}
|
|
2430
|
-
|
|
2431
|
-
padding:
|
|
2753
|
+
.\!tw-px-6 {
|
|
2754
|
+
padding-left: 12px !important;
|
|
2755
|
+
padding-right: 12px !important;
|
|
2756
|
+
}
|
|
2757
|
+
.\!tw-px-8 {
|
|
2758
|
+
padding-left: 16px !important;
|
|
2759
|
+
padding-right: 16px !important;
|
|
2432
2760
|
}
|
|
2433
2761
|
.tw-px-0 {
|
|
2434
2762
|
padding-left: 0px;
|
|
@@ -2462,6 +2790,18 @@ imported in Sourcegraph shell.
|
|
|
2462
2790
|
padding-top: 0px;
|
|
2463
2791
|
padding-bottom: 0px;
|
|
2464
2792
|
}
|
|
2793
|
+
.tw-py-1 {
|
|
2794
|
+
padding-top: 2px;
|
|
2795
|
+
padding-bottom: 2px;
|
|
2796
|
+
}
|
|
2797
|
+
.tw-py-1\.5 {
|
|
2798
|
+
padding-top: 3px;
|
|
2799
|
+
padding-bottom: 3px;
|
|
2800
|
+
}
|
|
2801
|
+
.tw-py-10 {
|
|
2802
|
+
padding-top: 20px;
|
|
2803
|
+
padding-bottom: 20px;
|
|
2804
|
+
}
|
|
2465
2805
|
.tw-py-2 {
|
|
2466
2806
|
padding-top: 4px;
|
|
2467
2807
|
padding-bottom: 4px;
|
|
@@ -2485,9 +2825,6 @@ imported in Sourcegraph shell.
|
|
|
2485
2825
|
.tw-pb-12 {
|
|
2486
2826
|
padding-bottom: 24px;
|
|
2487
2827
|
}
|
|
2488
|
-
.tw-pb-3 {
|
|
2489
|
-
padding-bottom: 6px;
|
|
2490
|
-
}
|
|
2491
2828
|
.tw-pb-6 {
|
|
2492
2829
|
padding-bottom: 12px;
|
|
2493
2830
|
}
|
|
@@ -2500,9 +2837,6 @@ imported in Sourcegraph shell.
|
|
|
2500
2837
|
.tw-pt-2 {
|
|
2501
2838
|
padding-top: 4px;
|
|
2502
2839
|
}
|
|
2503
|
-
.tw-pt-4 {
|
|
2504
|
-
padding-top: 8px;
|
|
2505
|
-
}
|
|
2506
2840
|
.tw-pt-6 {
|
|
2507
2841
|
padding-top: 12px;
|
|
2508
2842
|
}
|
|
@@ -2518,6 +2852,9 @@ imported in Sourcegraph shell.
|
|
|
2518
2852
|
.tw-align-middle {
|
|
2519
2853
|
vertical-align: middle;
|
|
2520
2854
|
}
|
|
2855
|
+
.tw-font-mono {
|
|
2856
|
+
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
2857
|
+
}
|
|
2521
2858
|
.\!tw-text-md {
|
|
2522
2859
|
font-size: var(--vscode-font-size) !important;
|
|
2523
2860
|
}
|
|
@@ -2536,6 +2873,12 @@ imported in Sourcegraph shell.
|
|
|
2536
2873
|
.tw-text-xxs {
|
|
2537
2874
|
font-size: calc(calc(10/13)*var(--vscode-font-size));
|
|
2538
2875
|
}
|
|
2876
|
+
.\!tw-font-normal {
|
|
2877
|
+
font-weight: 400 !important;
|
|
2878
|
+
}
|
|
2879
|
+
.tw-font-bold {
|
|
2880
|
+
font-weight: 700;
|
|
2881
|
+
}
|
|
2539
2882
|
.tw-font-medium {
|
|
2540
2883
|
font-weight: 500;
|
|
2541
2884
|
}
|
|
@@ -2554,24 +2897,18 @@ imported in Sourcegraph shell.
|
|
|
2554
2897
|
.tw-leading-tight {
|
|
2555
2898
|
line-height: 1.25;
|
|
2556
2899
|
}
|
|
2557
|
-
.tw-tracking-tight {
|
|
2558
|
-
letter-spacing: -0.025em;
|
|
2559
|
-
}
|
|
2560
2900
|
.tw-tracking-widest {
|
|
2561
2901
|
letter-spacing: 0.1em;
|
|
2562
2902
|
}
|
|
2563
|
-
.\!tw-text-\[unset\] {
|
|
2564
|
-
color: unset !important;
|
|
2565
|
-
}
|
|
2566
2903
|
.\!tw-text-foreground {
|
|
2567
2904
|
color: var(--vscode-foreground) !important;
|
|
2568
2905
|
}
|
|
2906
|
+
.\!tw-text-inherit {
|
|
2907
|
+
color: inherit !important;
|
|
2908
|
+
}
|
|
2569
2909
|
.\!tw-text-muted-foreground {
|
|
2570
2910
|
color: var(--vscode-input-placeholderForeground) !important;
|
|
2571
2911
|
}
|
|
2572
|
-
.tw-text-accent-foreground {
|
|
2573
|
-
color: var(--vscode-list-activeSelectionForeground);
|
|
2574
|
-
}
|
|
2575
2912
|
.tw-text-badge-foreground {
|
|
2576
2913
|
color: var(--vscode-badge-foreground);
|
|
2577
2914
|
}
|
|
@@ -2584,6 +2921,9 @@ imported in Sourcegraph shell.
|
|
|
2584
2921
|
.tw-text-foreground {
|
|
2585
2922
|
color: var(--vscode-foreground);
|
|
2586
2923
|
}
|
|
2924
|
+
.tw-text-input-foreground {
|
|
2925
|
+
color: var(--vscode-input-foreground);
|
|
2926
|
+
}
|
|
2587
2927
|
.tw-text-keybinding-foreground {
|
|
2588
2928
|
color: var(--vscode-keybindingLabel-foreground);
|
|
2589
2929
|
}
|
|
@@ -2596,15 +2936,29 @@ imported in Sourcegraph shell.
|
|
|
2596
2936
|
.tw-text-popover-foreground {
|
|
2597
2937
|
color: var(--vscode-dropdown-foreground);
|
|
2598
2938
|
}
|
|
2939
|
+
.tw-text-red-500 {
|
|
2940
|
+
--tw-text-opacity: 1;
|
|
2941
|
+
color: rgb(239 68 68 / var(--tw-text-opacity));
|
|
2942
|
+
}
|
|
2943
|
+
.tw-text-sidebar-foreground {
|
|
2944
|
+
color: var(--vscode-sideBar-foreground);
|
|
2945
|
+
}
|
|
2946
|
+
.tw-text-status-offline-foreground {
|
|
2947
|
+
color: var(--vscode-statusBarItem-offlineForeground);
|
|
2948
|
+
}
|
|
2949
|
+
.tw-text-white {
|
|
2950
|
+
--tw-text-opacity: 1;
|
|
2951
|
+
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
2952
|
+
}
|
|
2953
|
+
.tw-underline {
|
|
2954
|
+
text-decoration-line: underline;
|
|
2955
|
+
}
|
|
2599
2956
|
.tw-underline-offset-4 {
|
|
2600
2957
|
text-underline-offset: 4px;
|
|
2601
2958
|
}
|
|
2602
2959
|
.\!tw-opacity-100 {
|
|
2603
2960
|
opacity: 1 !important;
|
|
2604
2961
|
}
|
|
2605
|
-
.tw-opacity-30 {
|
|
2606
|
-
opacity: 0.3;
|
|
2607
|
-
}
|
|
2608
2962
|
.tw-opacity-60 {
|
|
2609
2963
|
opacity: 0.6;
|
|
2610
2964
|
}
|
|
@@ -2622,11 +2976,6 @@ imported in Sourcegraph shell.
|
|
|
2622
2976
|
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
|
|
2623
2977
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2624
2978
|
}
|
|
2625
|
-
.tw-shadow-md {
|
|
2626
|
-
--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
|
|
2627
|
-
--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
|
|
2628
|
-
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2629
|
-
}
|
|
2630
2979
|
.tw-outline-none {
|
|
2631
2980
|
outline: 2px solid transparent;
|
|
2632
2981
|
outline-offset: 2px;
|
|
@@ -3013,6 +3362,9 @@ imported in Sourcegraph shell.
|
|
|
3013
3362
|
.empty\:tw-hidden:empty {
|
|
3014
3363
|
display: none;
|
|
3015
3364
|
}
|
|
3365
|
+
.hover\:\!tw-bg-button-secondary-background-hover:hover {
|
|
3366
|
+
background-color: var(--vscode-button-secondaryHoverBackground) !important;
|
|
3367
|
+
}
|
|
3016
3368
|
.hover\:tw-bg-accent:hover {
|
|
3017
3369
|
background-color: var(--vscode-list-activeSelectionBackground);
|
|
3018
3370
|
}
|
|
@@ -3028,9 +3380,6 @@ imported in Sourcegraph shell.
|
|
|
3028
3380
|
.hover\:tw-bg-muted-transparent:hover {
|
|
3029
3381
|
background-color: color-mix(in lch, currentColor 15%, transparent);
|
|
3030
3382
|
}
|
|
3031
|
-
.hover\:tw-bg-transparent:hover {
|
|
3032
|
-
background-color: transparent;
|
|
3033
|
-
}
|
|
3034
3383
|
.hover\:\!tw-text-accent-foreground:hover {
|
|
3035
3384
|
color: var(--vscode-list-activeSelectionForeground) !important;
|
|
3036
3385
|
}
|
|
@@ -3056,6 +3405,12 @@ imported in Sourcegraph shell.
|
|
|
3056
3405
|
outline: 2px solid transparent;
|
|
3057
3406
|
outline-offset: 2px;
|
|
3058
3407
|
}
|
|
3408
|
+
.focus\:tw-outline:focus {
|
|
3409
|
+
outline-style: solid;
|
|
3410
|
+
}
|
|
3411
|
+
.focus\:tw-outline-ring:focus {
|
|
3412
|
+
outline-color: var(--vscode-focusBorder);
|
|
3413
|
+
}
|
|
3059
3414
|
.focus\:tw-ring-2:focus {
|
|
3060
3415
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
3061
3416
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
@@ -3095,15 +3450,12 @@ imported in Sourcegraph shell.
|
|
|
3095
3450
|
.disabled\:tw-opacity-75:disabled {
|
|
3096
3451
|
opacity: 0.75;
|
|
3097
3452
|
}
|
|
3098
|
-
.tw-group
|
|
3453
|
+
.tw-group:hover .group-hover\:tw-visible {
|
|
3099
3454
|
visibility: visible;
|
|
3100
3455
|
}
|
|
3101
3456
|
.tw-group:hover .group-hover\:tw-opacity-100 {
|
|
3102
3457
|
opacity: 1;
|
|
3103
3458
|
}
|
|
3104
|
-
.tw-group\/\[cmdk-item\][aria-selected="true"] .group-\[\[aria-selected\=\"true\"\]\]\/\[cmdk-item\]\:tw-visible {
|
|
3105
|
-
visibility: visible;
|
|
3106
|
-
}
|
|
3107
3459
|
.aria-selected\:tw-bg-accent[aria-selected="true"] {
|
|
3108
3460
|
background-color: var(--vscode-list-activeSelectionBackground);
|
|
3109
3461
|
}
|
|
@@ -3182,31 +3534,9 @@ body[data-vscode-theme-kind="vscode-high-contrast"] .high-contrast-dark\:tw-bord
|
|
|
3182
3534
|
.\[\&_\>_\*\]\:tw-flex-shrink-0 > * {
|
|
3183
3535
|
flex-shrink: 0;
|
|
3184
3536
|
}
|
|
3185
|
-
.\[\&_\[cmdk-group-heading\]\]\:tw--mx-2 [cmdk-group-heading] {
|
|
3186
|
-
margin-left: -4px;
|
|
3187
|
-
margin-right: -4px;
|
|
3188
|
-
}
|
|
3189
|
-
.\[\&_\[cmdk-group-heading\]\]\:tw-mb-2 [cmdk-group-heading] {
|
|
3190
|
-
margin-bottom: 4px;
|
|
3191
|
-
}
|
|
3192
|
-
.\[\&_\[cmdk-group-heading\]\]\:tw-flex [cmdk-group-heading] {
|
|
3193
|
-
display: flex;
|
|
3194
|
-
}
|
|
3195
3537
|
.\[\&_\[cmdk-group-heading\]\]\:\!tw-h-\[30px\] [cmdk-group-heading] {
|
|
3196
3538
|
height: 30px !important;
|
|
3197
3539
|
}
|
|
3198
|
-
.\[\&_\[cmdk-group-heading\]\]\:\!tw-min-h-\[30px\] [cmdk-group-heading] {
|
|
3199
|
-
min-height: 30px !important;
|
|
3200
|
-
}
|
|
3201
|
-
.\[\&_\[cmdk-group-heading\]\]\:tw-items-center [cmdk-group-heading] {
|
|
3202
|
-
align-items: center;
|
|
3203
|
-
}
|
|
3204
|
-
.\[\&_\[cmdk-group-heading\]\]\:tw-gap-2 [cmdk-group-heading] {
|
|
3205
|
-
gap: 4px;
|
|
3206
|
-
}
|
|
3207
|
-
.\[\&_\[cmdk-group-heading\]\]\:tw-bg-muted [cmdk-group-heading] {
|
|
3208
|
-
background-color: var(--vscode-input-background);
|
|
3209
|
-
}
|
|
3210
3540
|
.\[\&_\[cmdk-group-heading\]\]\:\!tw-p-3 [cmdk-group-heading] {
|
|
3211
3541
|
padding: 6px !important;
|
|
3212
3542
|
}
|
|
@@ -3214,10 +3544,6 @@ body[data-vscode-theme-kind="vscode-high-contrast"] .high-contrast-dark\:tw-bord
|
|
|
3214
3544
|
padding-left: 4px;
|
|
3215
3545
|
padding-right: 4px;
|
|
3216
3546
|
}
|
|
3217
|
-
.\[\&_\[cmdk-group-heading\]\]\:tw-px-4 [cmdk-group-heading] {
|
|
3218
|
-
padding-left: 8px;
|
|
3219
|
-
padding-right: 8px;
|
|
3220
|
-
}
|
|
3221
3547
|
.\[\&_\[cmdk-group-heading\]\]\:tw-py-1\.5 [cmdk-group-heading] {
|
|
3222
3548
|
padding-top: 3px;
|
|
3223
3549
|
padding-bottom: 3px;
|
|
@@ -3237,12 +3563,6 @@ body[data-vscode-theme-kind="vscode-high-contrast"] .high-contrast-dark\:tw-bord
|
|
|
3237
3563
|
.\[\&_\[cmdk-group-heading\]\]\:tw-text-muted-foreground [cmdk-group-heading] {
|
|
3238
3564
|
color: var(--vscode-input-placeholderForeground);
|
|
3239
3565
|
}
|
|
3240
|
-
.\[\&_\[cmdk-group\]\]\:\!tw-border-0 [cmdk-group] {
|
|
3241
|
-
border-width: 0px !important;
|
|
3242
|
-
}
|
|
3243
|
-
.\[\&_\[cmdk-group\]\]\:tw-pt-0 [cmdk-group] {
|
|
3244
|
-
padding-top: 0px;
|
|
3245
|
-
}
|
|
3246
3566
|
.\[\&_\[cmdk-item\]\]\:tw-whitespace-nowrap [cmdk-item] {
|
|
3247
3567
|
white-space: nowrap;
|
|
3248
3568
|
}
|