@sourcegraph/cody-web 0.9.0 → 0.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/agent.worker-DCppPL5H.mjs +173956 -0
- package/dist/agent.worker.js +2 -2
- package/dist/{browser-BeeBuz0g.mjs → browser-DYM0xYW7.mjs} +9904 -3568
- package/dist/{git-log-D_9yysRz.mjs → git-log-2CCyb12r.mjs} +2 -2
- package/dist/{index-CGvgvDrO.mjs → index-C0Q-ALpC.mjs} +2 -2
- package/dist/index.js +32990 -31760
- 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/components/CodyWebChat.d.ts +8 -0
- package/dist/lib/components/CodyWebChat.d.ts.map +1 -1
- package/dist/lib/index.d.ts +1 -1
- package/dist/lib/index.d.ts.map +1 -1
- package/dist/lib/types.d.ts +1 -0
- package/dist/lib/types.d.ts.map +1 -1
- package/dist/style.css +555 -220
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/dist/agent.worker-BkGIISm4.mjs +0 -73263
- package/dist/shell-06IUz87L.mjs +0 -47
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;
|
|
@@ -511,6 +528,25 @@ body[data-vscode-theme-kind='vscode-high-contrast-light'] ._context-item-link_15
|
|
|
511
528
|
._code-block_15z33_40 {
|
|
512
529
|
margin-bottom: 0.25rem;
|
|
513
530
|
}
|
|
531
|
+
._accordion-trigger_12003_1 {
|
|
532
|
+
display: flex;
|
|
533
|
+
gap: 0.25rem;
|
|
534
|
+
align-items: center;
|
|
535
|
+
justify-content: space-between;
|
|
536
|
+
transition-property: all;
|
|
537
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
538
|
+
transition-duration: 150ms;
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
._accordion-trigger_12003_1[data-state="open"] ._accordion-trigger-chevron_12003_11 {
|
|
542
|
+
transform: rotate(90deg);
|
|
543
|
+
}
|
|
544
|
+
|
|
545
|
+
._accordion-trigger-chevron_12003_11 {
|
|
546
|
+
flex-shrink: 0; /* tw-shrink-0 */
|
|
547
|
+
transition-property: transform; /* tw-transition-transform */
|
|
548
|
+
transition-duration: 150ms; /* tw-duration-150 */
|
|
549
|
+
}
|
|
514
550
|
._dots-holder_10c80_1 {
|
|
515
551
|
display: flex;
|
|
516
552
|
gap: 0.2rem;
|
|
@@ -942,17 +978,30 @@ body[data-vscode-theme-kind='vscode-light'] ._content_1kf9a_116 pre > code {
|
|
|
942
978
|
align-items: center;
|
|
943
979
|
gap: calc(var(--spacing) / 4);
|
|
944
980
|
}
|
|
945
|
-
._context-
|
|
981
|
+
._context-item_19lcq_1 {
|
|
946
982
|
display: inline-flex;
|
|
947
983
|
padding: 2px 4px 2px 2px;
|
|
948
984
|
}
|
|
949
985
|
|
|
950
|
-
._context-item-
|
|
986
|
+
._context-item-metadata_19lcq_6 {
|
|
951
987
|
color: var(--vscode-disabledForeground);
|
|
952
988
|
padding-left: 0.1rem;
|
|
953
989
|
text-wrap: nowrap;
|
|
954
990
|
}
|
|
955
|
-
|
|
991
|
+
|
|
992
|
+
._context-item-edit-button_19lcq_12 {
|
|
993
|
+
display: flex;
|
|
994
|
+
align-items: center;
|
|
995
|
+
|
|
996
|
+
flex-wrap: nowrap;
|
|
997
|
+
|
|
998
|
+
}
|
|
999
|
+
|
|
1000
|
+
._context-item-edit-button-icon_19lcq_20 {
|
|
1001
|
+
height: 20%;
|
|
1002
|
+
margin-right: 0.5rem;
|
|
1003
|
+
}
|
|
1004
|
+
._user-avatar_1ll2x_1 {
|
|
956
1005
|
isolation: isolate;
|
|
957
1006
|
display: inline-flex;
|
|
958
1007
|
border-radius: 50%;
|
|
@@ -960,10 +1009,10 @@ body[data-vscode-theme-kind='vscode-light'] ._content_1kf9a_116 pre > code {
|
|
|
960
1009
|
color: var(--vscode-inputOption-activeForeground);
|
|
961
1010
|
align-items: center;
|
|
962
1011
|
justify-content: center;
|
|
963
|
-
height:
|
|
1012
|
+
height: 100%;
|
|
964
1013
|
}
|
|
965
1014
|
|
|
966
|
-
._sourcegraph-gradient-
|
|
1015
|
+
._sourcegraph-gradient-border_1ll2x_12 {
|
|
967
1016
|
--gradient-border-width: 1px;
|
|
968
1017
|
|
|
969
1018
|
border-radius: 50%;
|
|
@@ -976,11 +1025,11 @@ body[data-vscode-theme-kind='vscode-light'] ._content_1kf9a_116 pre > code {
|
|
|
976
1025
|
--human-message-editor-cell-spacing-bottom: 6px;
|
|
977
1026
|
}
|
|
978
1027
|
|
|
979
|
-
.
|
|
1028
|
+
._container_1eiqs_6 {
|
|
980
1029
|
display: flex;
|
|
981
1030
|
flex-direction: column;
|
|
982
1031
|
gap: var(--human-message-editor-gap);
|
|
983
|
-
border-radius:
|
|
1032
|
+
border-radius: 4px;
|
|
984
1033
|
background-color: color-mix(in srgb, var(--vscode-input-background) 50%, transparent);
|
|
985
1034
|
color: var(--vscode-input-foreground);
|
|
986
1035
|
outline: solid 1px var(--vscode-input-border);
|
|
@@ -988,22 +1037,21 @@ body[data-vscode-theme-kind='vscode-light'] ._content_1kf9a_116 pre > code {
|
|
|
988
1037
|
cursor: text;
|
|
989
1038
|
}
|
|
990
1039
|
|
|
991
|
-
.
|
|
1040
|
+
._container_1eiqs_6 ._editor_1eiqs_17 {
|
|
992
1041
|
scrollbar-gutter: stable;
|
|
993
1042
|
padding: var(--prompt-editor-padding-y) var(--prompt-editor-padding-x);
|
|
994
1043
|
}
|
|
995
1044
|
|
|
996
|
-
.
|
|
1045
|
+
._toolbar_1eiqs_23 {
|
|
997
1046
|
padding: calc(0.75*var(--prompt-editor-padding-y)) var(--prompt-editor-padding-x);
|
|
998
|
-
margin-left: -2px;
|
|
999
1047
|
overflow: hidden;
|
|
1000
1048
|
}
|
|
1001
1049
|
|
|
1002
|
-
.
|
|
1003
|
-
|
|
1004
|
-
}
|
|
1050
|
+
._container_1eiqs_6:not(._focused_1eiqs_28, [data-keep-toolbar-open]) ._editor-content-editable_1eiqs_30 {
|
|
1051
|
+
min-height: 1lh;
|
|
1052
|
+
}
|
|
1005
1053
|
|
|
1006
|
-
.
|
|
1054
|
+
._container_1eiqs_6:not(._focused_1eiqs_28, [data-keep-toolbar-open]) ._toolbar_1eiqs_23 {
|
|
1007
1055
|
height: 0;
|
|
1008
1056
|
opacity: 0;
|
|
1009
1057
|
margin-top: 0;
|
|
@@ -1011,18 +1059,18 @@ body[data-vscode-theme-kind='vscode-light'] ._content_1kf9a_116 pre > code {
|
|
|
1011
1059
|
padding: 0;
|
|
1012
1060
|
}
|
|
1013
1061
|
|
|
1014
|
-
.
|
|
1062
|
+
._container_1eiqs_6:hover, ._container_1eiqs_6:has(:focus-within, menu>button:focus) {
|
|
1015
1063
|
background-color: var(--vscode-input-background);
|
|
1016
1064
|
}
|
|
1017
1065
|
|
|
1018
1066
|
/* Show focus ring when the input is focused or a toolbar button within the input container is
|
|
1019
1067
|
focused, but NOT if something in a toolbar button's popover is focused. */
|
|
1020
|
-
.
|
|
1068
|
+
._container_1eiqs_6:has([data-lexical-editor='true']:focus-within, menu>button:focus) {
|
|
1021
1069
|
outline-color: var(--vscode-focusBorder);
|
|
1022
1070
|
}
|
|
1023
1071
|
|
|
1024
|
-
._editor-content-
|
|
1025
|
-
min-height:
|
|
1072
|
+
._editor-content-editable_1eiqs_30 {
|
|
1073
|
+
min-height: 3lh;
|
|
1026
1074
|
}
|
|
1027
1075
|
:root {
|
|
1028
1076
|
--toolbar-button-font-size: 12px;
|
|
@@ -1099,7 +1147,7 @@ body[data-vscode-theme-kind='vscode-light'] ._content_1kf9a_116 pre > code {
|
|
|
1099
1147
|
._button_rqosg_5:disabled._button--secondary_rqosg_54 {
|
|
1100
1148
|
opacity: 0.7;
|
|
1101
1149
|
}
|
|
1102
|
-
._model-title-with-
|
|
1150
|
+
._model-title-with-icon_1bw6t_1 {
|
|
1103
1151
|
flex: 1;
|
|
1104
1152
|
display: flex;
|
|
1105
1153
|
align-items: center;
|
|
@@ -1107,71 +1155,264 @@ body[data-vscode-theme-kind='vscode-light'] ._content_1kf9a_116 pre > code {
|
|
|
1107
1155
|
line-height: 16px;
|
|
1108
1156
|
}
|
|
1109
1157
|
|
|
1110
|
-
._model-title-with-
|
|
1158
|
+
._model-title-with-icon_1bw6t_1:is(a) {
|
|
1111
1159
|
outline: none !important;
|
|
1112
1160
|
}
|
|
1113
1161
|
|
|
1114
|
-
._model-title-with-
|
|
1162
|
+
._model-title-with-icon_1bw6t_1 ._model-name_1bw6t_13 {
|
|
1115
1163
|
font-weight: 500;
|
|
1116
1164
|
}
|
|
1117
1165
|
|
|
1118
|
-
._model-title-with-
|
|
1166
|
+
._model-title-with-icon_1bw6t_1 ._model-provider_1bw6t_17 {
|
|
1119
1167
|
margin-left: 0.25rem;
|
|
1120
1168
|
opacity: 0.65;
|
|
1121
1169
|
font-size: 85%;
|
|
1122
1170
|
}
|
|
1123
1171
|
|
|
1124
|
-
._model-title-with-
|
|
1172
|
+
._model-title-with-icon_1bw6t_1._disabled_1bw6t_23 {
|
|
1125
1173
|
opacity: 0.5;
|
|
1126
1174
|
}
|
|
1127
1175
|
|
|
1128
|
-
._model-title-with-
|
|
1176
|
+
._model-title-with-icon_1bw6t_1 ._model-icon_1bw6t_27 {
|
|
1129
1177
|
opacity: 0.5;
|
|
1130
1178
|
}
|
|
1131
1179
|
|
|
1132
|
-
._right-
|
|
1180
|
+
._right-icon_1bw6t_31 {
|
|
1133
1181
|
margin-left: auto;
|
|
1134
1182
|
}
|
|
1135
1183
|
|
|
1136
|
-
.
|
|
1184
|
+
._badge_1bw6t_35 {
|
|
1137
1185
|
margin-left: auto;
|
|
1138
1186
|
line-height: 16px;
|
|
1139
1187
|
font-size: 11px;
|
|
1140
1188
|
border-radius: 2px;
|
|
1141
1189
|
padding: 0 5px;
|
|
1142
1190
|
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
1191
|
}
|
|
1150
1192
|
|
|
1151
|
-
button > ._model-title-with-
|
|
1193
|
+
button > ._model-title-with-icon_1bw6t_1 ._model-name_1bw6t_13 {
|
|
1152
1194
|
font-weight: normal;
|
|
1153
1195
|
}
|
|
1154
1196
|
|
|
1155
|
-
button > ._model-title-with-
|
|
1156
|
-
button > ._model-title-with-
|
|
1157
|
-
button > ._model-title-with-
|
|
1197
|
+
button > ._model-title-with-icon_1bw6t_1 ._model-icon_1bw6t_27,
|
|
1198
|
+
button > ._model-title-with-icon_1bw6t_1 ._model-provider_1bw6t_17,
|
|
1199
|
+
button > ._model-title-with-icon_1bw6t_1 ._badge_1bw6t_35 {
|
|
1158
1200
|
display: none;
|
|
1159
1201
|
}
|
|
1160
|
-
._info-message_6yx2w_1 {
|
|
1161
|
-
--mention-color-opacity: 70%;
|
|
1162
1202
|
|
|
1163
|
-
|
|
1164
|
-
|
|
1203
|
+
._item_105bl_2 {
|
|
1204
|
+
display: flex;
|
|
1205
|
+
gap: 0.5rem;
|
|
1165
1206
|
}
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1207
|
+
|
|
1208
|
+
._item--indicator_105bl_13 {
|
|
1209
|
+
display: none !important;
|
|
1210
|
+
margin-left: auto;
|
|
1211
|
+
align-self: flex-start;
|
|
1212
|
+
}
|
|
1213
|
+
|
|
1214
|
+
._item_105bl_2[data-selected="true"] ._item--indicator_105bl_13 {
|
|
1215
|
+
display: block !important;
|
|
1216
|
+
color: inherit;
|
|
1217
|
+
}
|
|
1218
|
+
|
|
1219
|
+
._item_105bl_2[data-selected="true"] ._prompt--avatar_105bl_18, ._item_105bl_2[data-selected="true"] ._prompt--description_105bl_18, ._item_105bl_2[data-selected="true"] ._prompt--icon_105bl_18 {
|
|
1220
|
+
color: inherit;
|
|
1221
|
+
}
|
|
1222
|
+
|
|
1223
|
+
._prompt_105bl_18 {
|
|
1224
|
+
display: flex;
|
|
1225
|
+
gap: 0.5rem;
|
|
1226
|
+
align-items: center;
|
|
1227
|
+
min-width: 0;
|
|
1228
|
+
}
|
|
1229
|
+
|
|
1230
|
+
._prompt--avatar_105bl_18 {
|
|
1231
|
+
flex-shrink: 0;
|
|
1232
|
+
width: 22px;
|
|
1233
|
+
height: 22px;
|
|
1234
|
+
display: flex;
|
|
1235
|
+
align-items: center;
|
|
1236
|
+
justify-content: center;
|
|
1237
|
+
}
|
|
1238
|
+
|
|
1239
|
+
._prompt--icon_105bl_18 {
|
|
1240
|
+
color: var(--vscode-input-placeholderForeground);
|
|
1241
|
+
}
|
|
1242
|
+
|
|
1243
|
+
._prompt--content_105bl_1 {
|
|
1244
|
+
min-width: 0;
|
|
1245
|
+
display: flex;
|
|
1246
|
+
flex-direction: column;
|
|
1247
|
+
}
|
|
1248
|
+
|
|
1249
|
+
._prompt--title_105bl_1 {
|
|
1250
|
+
min-width: 0;
|
|
1251
|
+
display: flex;
|
|
1252
|
+
gap: 0.25rem;
|
|
1253
|
+
align-items: center;
|
|
1254
|
+
}
|
|
1255
|
+
|
|
1256
|
+
._prompt--name_105bl_1 {
|
|
1257
|
+
white-space: nowrap;
|
|
1258
|
+
overflow: hidden;
|
|
1259
|
+
text-overflow: ellipsis;
|
|
1260
|
+
font-weight: 500;
|
|
1261
|
+
}
|
|
1262
|
+
|
|
1263
|
+
._prompt--description_105bl_18 {
|
|
1264
|
+
color: var(--vscode-input-placeholderForeground);
|
|
1265
|
+
white-space: nowrap;
|
|
1266
|
+
overflow: hidden;
|
|
1267
|
+
text-overflow: ellipsis;
|
|
1268
|
+
}
|
|
1269
|
+
|
|
1270
|
+
|
|
1271
|
+
._list_q63t8_2 {
|
|
1272
|
+
outline: none;
|
|
1273
|
+
max-height: unset !important;
|
|
1274
|
+
background-color: transparent !important;
|
|
1275
|
+
}
|
|
1276
|
+
|
|
1277
|
+
._list--input-container_q63t8_1 {
|
|
1278
|
+
top: 0;
|
|
1279
|
+
position: sticky;
|
|
1280
|
+
z-index: 1;
|
|
1281
|
+
}
|
|
1282
|
+
|
|
1283
|
+
._list--input_q63t8_1 {
|
|
1284
|
+
margin: 0.5rem;
|
|
1285
|
+
padding: 0.5rem;
|
|
1286
|
+
border-radius: 3px;
|
|
1287
|
+
background-color: var(--vscode-input-background);
|
|
1288
|
+
color: var(--vscode-input-foreground);
|
|
1289
|
+
}
|
|
1290
|
+
|
|
1291
|
+
._list--input_q63t8_1:focus {
|
|
1292
|
+
box-shadow: 0 0 0 0.125rem var(--vscode-focusBorder)
|
|
1293
|
+
}
|
|
1294
|
+
|
|
1295
|
+
._list-chips_q63t8_1 [cmdk-list-sizer] {
|
|
1296
|
+
display: flex;
|
|
1297
|
+
flex-direction: column;
|
|
1298
|
+
gap: 0.5rem
|
|
1299
|
+
}
|
|
1300
|
+
|
|
1301
|
+
._list-chips_q63t8_1 ._list--item_q63t8_32 {
|
|
1302
|
+
border-radius: 3px;
|
|
1303
|
+
border: 1px solid var(--vscode-dropdown-border, transparent);
|
|
1304
|
+
padding: 0.25rem 0.5rem;
|
|
1305
|
+
}
|
|
1306
|
+
|
|
1307
|
+
._list-chips_q63t8_1 ._list--item_q63t8_32[aria-selected="true"] {
|
|
1308
|
+
border-color: var(--vscode-list-activeSelectionBackground);
|
|
1309
|
+
}
|
|
1310
|
+
|
|
1311
|
+
._list-chips_q63t8_1 ._list--item_q63t8_32:not([aria-selected="true"]) {
|
|
1312
|
+
background-color: var(--vscode-dropdown-background);
|
|
1313
|
+
}
|
|
1314
|
+
|
|
1315
|
+
._root_oxlxy_2 {
|
|
1316
|
+
display: flex;
|
|
1317
|
+
flex-direction: column;
|
|
1318
|
+
padding: 0.75rem;
|
|
1319
|
+
border-radius: 3px;
|
|
1320
|
+
border: 1px solid var(--vscode-dropdown-border);
|
|
1321
|
+
background-color: var(--vscode-dropdown-background);
|
|
1322
|
+
}
|
|
1323
|
+
|
|
1324
|
+
._icons-header_oxlxy_11 {
|
|
1325
|
+
display: flex;
|
|
1326
|
+
gap: 0.5rem;
|
|
1327
|
+
margin-bottom: 0.625rem;
|
|
1328
|
+
}
|
|
1329
|
+
|
|
1330
|
+
._heading_oxlxy_17 {
|
|
1331
|
+
font-size: 0.875rem;
|
|
1332
|
+
font-weight: 500;
|
|
1333
|
+
margin-bottom: 0.175rem;
|
|
1334
|
+
color: var(--vscode-dropdown-foreground);
|
|
1335
|
+
}
|
|
1336
|
+
|
|
1337
|
+
._description-text_oxlxy_24 {
|
|
1338
|
+
line-height: 1rem;
|
|
1339
|
+
margin-bottom: 0.875rem;
|
|
1340
|
+
color: var(--vscode-dropdown-foreground);
|
|
1341
|
+
}
|
|
1342
|
+
|
|
1343
|
+
._actions_oxlxy_30 {
|
|
1344
|
+
display: flex;
|
|
1345
|
+
flex-wrap: wrap;
|
|
1346
|
+
align-items: center;
|
|
1347
|
+
gap: 0.5rem;
|
|
1348
|
+
}
|
|
1349
|
+
|
|
1350
|
+
._action_oxlxy_30 {
|
|
1351
|
+
flex-shrink: 0;
|
|
1352
|
+
}
|
|
1353
|
+
|
|
1354
|
+
._footer_oxlxy_41 {
|
|
1355
|
+
margin-top: 0.75rem;
|
|
1356
|
+
line-height: 1rem;
|
|
1357
|
+
font-size: 12px;
|
|
1358
|
+
}
|
|
1359
|
+
|
|
1360
|
+
._inner-container_oxlxy_47 {
|
|
1361
|
+
margin-top: 0.5rem;
|
|
1362
|
+
}
|
|
1363
|
+
|
|
1364
|
+
._loader_oxlxy_51 {
|
|
1365
|
+
width: 100%;
|
|
1366
|
+
height: 0.5rem;
|
|
1367
|
+
position: relative;
|
|
1368
|
+
overflow: hidden;
|
|
1369
|
+
margin-top: 0.5rem;
|
|
1370
|
+
margin-bottom: 0.5rem;
|
|
1371
|
+
border-radius: 3px;
|
|
1372
|
+
background-color: var(--vscode-editor-background);
|
|
1373
|
+
|
|
1374
|
+
/* Fix overflow clipping in Safari */
|
|
1375
|
+
/* https://gist.github.com/domske/b66047671c780a238b51c51ffde8d3a0 */
|
|
1376
|
+
transform: translateZ(0);
|
|
1377
|
+
}
|
|
1378
|
+
|
|
1379
|
+
._loader-indicator_oxlxy_1 {
|
|
1380
|
+
width: 100%;
|
|
1381
|
+
height: 100%;
|
|
1382
|
+
background-color: var(--vscode-button-background);
|
|
1383
|
+
transition: transform 660ms cubic-bezier(0.65, 0, 0.35, 1);
|
|
1384
|
+
}
|
|
1385
|
+
|
|
1386
|
+
._error_oxlxy_73 {
|
|
1387
|
+
color: #de3400;
|
|
1388
|
+
background-color: #f7bcbc;
|
|
1389
|
+
line-height: 150%;
|
|
1390
|
+
padding: 0.5rem;
|
|
1391
|
+
word-break: break-word;
|
|
1392
|
+
border-left: 0.5rem solid #d8000c;
|
|
1393
|
+
font-weight: bold;
|
|
1394
|
+
}
|
|
1395
|
+
|
|
1396
|
+
._close_oxlxy_83 {
|
|
1397
|
+
padding: 0.25rem;
|
|
1398
|
+
align-self: flex-start;
|
|
1399
|
+
margin: -0.25rem -0.25rem 0 auto;
|
|
1400
|
+
}
|
|
1401
|
+
|
|
1402
|
+
._prompts-input_lclhy_2 {
|
|
1403
|
+
background-color: var(--vscode-sideBar-background);
|
|
1404
|
+
}
|
|
1405
|
+
|
|
1406
|
+
._prompts-container_lclhy_6 {
|
|
1407
|
+
height: min-content !important;
|
|
1408
|
+
overflow: visible !important;
|
|
1409
|
+
}
|
|
1410
|
+
|
|
1411
|
+
._prompt-migration-widget_lclhy_11 {
|
|
1412
|
+
margin: 1rem 1rem -0.75rem 1rem;
|
|
1172
1413
|
}
|
|
1173
1414
|
:root {
|
|
1174
|
-
--vscode-overlay-background:
|
|
1415
|
+
--vscode-overlay-background: rgb(0 0 0 / 50%);
|
|
1175
1416
|
--vscode-modal-background: var(--vscode-sideBar-background);
|
|
1176
1417
|
}
|
|
1177
1418
|
|
|
@@ -1179,15 +1420,13 @@ button > ._model-title-with-icon_rn0uf_1 ._badge_rn0uf_35 {
|
|
|
1179
1420
|
Root element which only exists to use container query
|
|
1180
1421
|
for changing header tabs layout.
|
|
1181
1422
|
*/
|
|
1182
|
-
._tabs-
|
|
1423
|
+
._tabs-root_a1f96_10 {
|
|
1183
1424
|
container-type: inline-size;
|
|
1184
1425
|
container-name: tabs-container;
|
|
1185
|
-
|
|
1186
1426
|
isolation: isolate;
|
|
1187
|
-
z-index: 1;
|
|
1188
1427
|
}
|
|
1189
1428
|
|
|
1190
|
-
._tabs-
|
|
1429
|
+
._tabs-container_a1f96_16 {
|
|
1191
1430
|
display: flex;
|
|
1192
1431
|
width: 100%;
|
|
1193
1432
|
padding: 0;
|
|
@@ -1198,7 +1437,7 @@ button > ._model-title-with-icon_rn0uf_1 ._badge_rn0uf_35 {
|
|
|
1198
1437
|
background-color: var(--vscode-sideBar-background);
|
|
1199
1438
|
}
|
|
1200
1439
|
|
|
1201
|
-
.
|
|
1440
|
+
._tabs_a1f96_10 {
|
|
1202
1441
|
display: flex;
|
|
1203
1442
|
flex-shrink: 0;
|
|
1204
1443
|
gap: 2px;
|
|
@@ -1207,22 +1446,22 @@ button > ._model-title-with-icon_rn0uf_1 ._badge_rn0uf_35 {
|
|
|
1207
1446
|
border-bottom: 1px solid var(--vscode-dropdown-border);
|
|
1208
1447
|
}
|
|
1209
1448
|
|
|
1210
|
-
.
|
|
1449
|
+
._tabs_a1f96_10 > * {
|
|
1211
1450
|
flex-shrink: 0;
|
|
1212
1451
|
}
|
|
1213
1452
|
|
|
1214
|
-
._sub-
|
|
1453
|
+
._sub-tabs_a1f96_40 {
|
|
1215
1454
|
display: flex;
|
|
1216
1455
|
flex-shrink: 0;
|
|
1217
1456
|
gap: 8px;
|
|
1218
1457
|
padding: 0 8px;
|
|
1219
1458
|
}
|
|
1220
1459
|
|
|
1221
|
-
._sub-
|
|
1460
|
+
._sub-tabs_a1f96_40 > * {
|
|
1222
1461
|
flex-shrink: 0;
|
|
1223
1462
|
}
|
|
1224
1463
|
|
|
1225
|
-
._tab-action-
|
|
1464
|
+
._tab-action-label_a1f96_51 {
|
|
1226
1465
|
display: inline;
|
|
1227
1466
|
}
|
|
1228
1467
|
|
|
@@ -1234,25 +1473,25 @@ button > ._model-title-with-icon_rn0uf_1 ._badge_rn0uf_35 {
|
|
|
1234
1473
|
this override)
|
|
1235
1474
|
*/
|
|
1236
1475
|
@container tabs-container (width < 575px) {
|
|
1237
|
-
._tabs-
|
|
1476
|
+
._tabs-root_a1f96_10:not(._tabs-root--cody-web_a1f96_63) ._tab-action-label_a1f96_51 {
|
|
1238
1477
|
display: none;
|
|
1239
1478
|
}
|
|
1240
1479
|
}
|
|
1241
1480
|
|
|
1242
1481
|
/* Special override for Cody Web tabs */
|
|
1243
1482
|
@container tabs-container (width < 375px) {
|
|
1244
|
-
._tabs-root--cody-
|
|
1483
|
+
._tabs-root--cody-web_a1f96_63 ._tab-action-label_a1f96_51 {
|
|
1245
1484
|
display: none;
|
|
1246
1485
|
}
|
|
1247
1486
|
}
|
|
1248
1487
|
|
|
1249
|
-
._dialog-
|
|
1488
|
+
._dialog-overlay_a1f96_1 {
|
|
1250
1489
|
inset: 0;
|
|
1251
1490
|
position: fixed;
|
|
1252
1491
|
background-color: var(--vscode-overlay-background);
|
|
1253
1492
|
}
|
|
1254
1493
|
|
|
1255
|
-
._dialog-
|
|
1494
|
+
._dialog-content_a1f96_1 {
|
|
1256
1495
|
width: 90vw;
|
|
1257
1496
|
max-width: 450px;
|
|
1258
1497
|
max-height: 85vh;
|
|
@@ -1261,35 +1500,88 @@ button > ._model-title-with-icon_rn0uf_1 ._badge_rn0uf_35 {
|
|
|
1261
1500
|
left: 50%;
|
|
1262
1501
|
transform: translate(-50%, -50%);
|
|
1263
1502
|
padding: 25px;
|
|
1264
|
-
|
|
1265
1503
|
border-radius: 6px;
|
|
1266
1504
|
background-color: var(--vscode-modal-background);
|
|
1267
|
-
box-shadow: hsl(
|
|
1505
|
+
box-shadow: hsl(206deg 22% 7% / 35%) 0 10px 38px -10px, hsl(206deg 22% 7% / 20%) 0 10px 20px -15px;
|
|
1268
1506
|
}
|
|
1269
1507
|
|
|
1270
|
-
._dialog-
|
|
1508
|
+
._dialog-content_a1f96_1:focus {
|
|
1271
1509
|
outline: none;
|
|
1272
1510
|
}
|
|
1273
1511
|
|
|
1274
|
-
._dialog-
|
|
1512
|
+
._dialog-title_a1f96_1 {
|
|
1275
1513
|
margin: 0;
|
|
1276
1514
|
font-weight: 500;
|
|
1277
1515
|
font-size: 17px;
|
|
1278
1516
|
}
|
|
1279
1517
|
|
|
1280
|
-
._dialog-
|
|
1518
|
+
._dialog-description_a1f96_1 {
|
|
1281
1519
|
margin: 10px 0 20px;
|
|
1282
1520
|
font-size: 15px;
|
|
1283
1521
|
line-height: 1.5;
|
|
1284
1522
|
}
|
|
1285
1523
|
|
|
1286
|
-
._dialog-
|
|
1524
|
+
._dialog-footer_a1f96_1 {
|
|
1287
1525
|
margin-top: 1.5rem;
|
|
1288
1526
|
width: 100%;
|
|
1289
1527
|
display: flex;
|
|
1290
1528
|
justify-content: flex-end;
|
|
1291
1529
|
gap: 0.5rem;
|
|
1292
1530
|
}
|
|
1531
|
+
._info-message_6yx2w_1 {
|
|
1532
|
+
--mention-color-opacity: 70%;
|
|
1533
|
+
|
|
1534
|
+
border: 1px solid color-mix(in lch, var(--vscode-inputOption-activeBackground) calc(1.2* var(--mention-color-opacity)), transparent);
|
|
1535
|
+
background-color: color-mix(in lch, var(--vscode-inputOption-activeBackground) var(--mention-color-opacity), transparent);
|
|
1536
|
+
}
|
|
1537
|
+
._chat-disabled_rc7no_1 {
|
|
1538
|
+
text-align: center;
|
|
1539
|
+
padding: 0.5rem 0.25rem;
|
|
1540
|
+
background-color: var(--vscode-inputValidation-errorBackground);
|
|
1541
|
+
border-bottom: solid 1px var(--vscode-inputValidation-errorBorder);
|
|
1542
|
+
color: var(--vscode-foreground);
|
|
1543
|
+
}
|
|
1544
|
+
._welcome-footer_g0fdz_1 {
|
|
1545
|
+
padding: 1rem 1rem;
|
|
1546
|
+
display: flex;
|
|
1547
|
+
flex-flow: column nowrap;
|
|
1548
|
+
max-width: 100%;
|
|
1549
|
+
color: var(--vscode-input-placeholderForeground)
|
|
1550
|
+
}
|
|
1551
|
+
|
|
1552
|
+
._tips_g0fdz_9 {
|
|
1553
|
+
display: flex;
|
|
1554
|
+
flex-flow: column nowrap;
|
|
1555
|
+
width: 100%;
|
|
1556
|
+
gap: 0.5rem;
|
|
1557
|
+
padding: 1rem 0;
|
|
1558
|
+
border-bottom: 0.25px solid var(--vscode-dropdown-border);
|
|
1559
|
+
}
|
|
1560
|
+
|
|
1561
|
+
._links_g0fdz_18 {
|
|
1562
|
+
display: flex;
|
|
1563
|
+
flex-flow: row wrap;
|
|
1564
|
+
padding: 0.75rem 0;
|
|
1565
|
+
gap: 0.5rem;
|
|
1566
|
+
}
|
|
1567
|
+
|
|
1568
|
+
._item_g0fdz_25 {
|
|
1569
|
+
display: flex;
|
|
1570
|
+
flex-flow: row nowrap;
|
|
1571
|
+
flex-shrink: 0;
|
|
1572
|
+
padding: 0 0.5rem;
|
|
1573
|
+
gap: 0.5rem;
|
|
1574
|
+
align-items: center;
|
|
1575
|
+
}
|
|
1576
|
+
|
|
1577
|
+
._link_g0fdz_18 {
|
|
1578
|
+
color: inherit;
|
|
1579
|
+
text-decoration: none;
|
|
1580
|
+
}
|
|
1581
|
+
|
|
1582
|
+
._actions_129f5_2 {
|
|
1583
|
+
--vscode-keybindingLabel-foreground: currentColor;
|
|
1584
|
+
}
|
|
1293
1585
|
|
|
1294
1586
|
/*
|
|
1295
1587
|
Since this package is used only for Cody Web in Sourcegraph it's ok to
|
|
@@ -1949,6 +2241,25 @@ imported in Sourcegraph shell.
|
|
|
1949
2241
|
margin-top: 4px;
|
|
1950
2242
|
margin-bottom: 4px;
|
|
1951
2243
|
}
|
|
2244
|
+
.tw-my-4 {
|
|
2245
|
+
margin-top: 8px;
|
|
2246
|
+
margin-bottom: 8px;
|
|
2247
|
+
}
|
|
2248
|
+
.-tw-mr-2 {
|
|
2249
|
+
margin-right: -4px;
|
|
2250
|
+
}
|
|
2251
|
+
.-tw-mr-6 {
|
|
2252
|
+
margin-right: -12px;
|
|
2253
|
+
}
|
|
2254
|
+
.tw-mb-0 {
|
|
2255
|
+
margin-bottom: 0px;
|
|
2256
|
+
}
|
|
2257
|
+
.tw-mb-2 {
|
|
2258
|
+
margin-bottom: 4px;
|
|
2259
|
+
}
|
|
2260
|
+
.tw-mb-3 {
|
|
2261
|
+
margin-bottom: 6px;
|
|
2262
|
+
}
|
|
1952
2263
|
.tw-mb-4 {
|
|
1953
2264
|
margin-bottom: 8px;
|
|
1954
2265
|
}
|
|
@@ -1967,9 +2278,6 @@ imported in Sourcegraph shell.
|
|
|
1967
2278
|
.tw-ml-2 {
|
|
1968
2279
|
margin-left: 4px;
|
|
1969
2280
|
}
|
|
1970
|
-
.tw-ml-4 {
|
|
1971
|
-
margin-left: 8px;
|
|
1972
|
-
}
|
|
1973
2281
|
.tw-ml-auto {
|
|
1974
2282
|
margin-left: auto;
|
|
1975
2283
|
}
|
|
@@ -1991,9 +2299,15 @@ imported in Sourcegraph shell.
|
|
|
1991
2299
|
.tw-mt-2 {
|
|
1992
2300
|
margin-top: 4px;
|
|
1993
2301
|
}
|
|
2302
|
+
.tw-mt-3 {
|
|
2303
|
+
margin-top: 6px;
|
|
2304
|
+
}
|
|
1994
2305
|
.tw-mt-4 {
|
|
1995
2306
|
margin-top: 8px;
|
|
1996
2307
|
}
|
|
2308
|
+
.tw-mt-5 {
|
|
2309
|
+
margin-top: 10px;
|
|
2310
|
+
}
|
|
1997
2311
|
.tw-mt-6 {
|
|
1998
2312
|
margin-top: 12px;
|
|
1999
2313
|
}
|
|
@@ -2003,6 +2317,9 @@ imported in Sourcegraph shell.
|
|
|
2003
2317
|
.tw-mt-auto {
|
|
2004
2318
|
margin-top: auto;
|
|
2005
2319
|
}
|
|
2320
|
+
.tw-inline-block {
|
|
2321
|
+
display: inline-block;
|
|
2322
|
+
}
|
|
2006
2323
|
.tw-flex {
|
|
2007
2324
|
display: flex;
|
|
2008
2325
|
}
|
|
@@ -2034,6 +2351,9 @@ imported in Sourcegraph shell.
|
|
|
2034
2351
|
.tw-h-\[20px\] {
|
|
2035
2352
|
height: 20px;
|
|
2036
2353
|
}
|
|
2354
|
+
.tw-h-\[30px\] {
|
|
2355
|
+
height: 30px;
|
|
2356
|
+
}
|
|
2037
2357
|
.tw-h-\[50vh\] {
|
|
2038
2358
|
height: 50vh;
|
|
2039
2359
|
}
|
|
@@ -2052,6 +2372,18 @@ imported in Sourcegraph shell.
|
|
|
2052
2372
|
.tw-max-h-\[500px\] {
|
|
2053
2373
|
max-height: 500px;
|
|
2054
2374
|
}
|
|
2375
|
+
.tw-max-h-\[70vh\] {
|
|
2376
|
+
max-height: 70vh;
|
|
2377
|
+
}
|
|
2378
|
+
.tw-max-h-\[80vh\] {
|
|
2379
|
+
max-height: 80vh;
|
|
2380
|
+
}
|
|
2381
|
+
.tw-max-h-fit {
|
|
2382
|
+
max-height: fit-content;
|
|
2383
|
+
}
|
|
2384
|
+
.\!tw-w-auto {
|
|
2385
|
+
width: auto !important;
|
|
2386
|
+
}
|
|
2055
2387
|
.tw-w-72 {
|
|
2056
2388
|
width: 18rem;
|
|
2057
2389
|
}
|
|
@@ -2061,6 +2393,9 @@ imported in Sourcegraph shell.
|
|
|
2061
2393
|
.tw-w-\[1\.375rem\] {
|
|
2062
2394
|
width: 1.375rem;
|
|
2063
2395
|
}
|
|
2396
|
+
.tw-w-\[16px\] {
|
|
2397
|
+
width: 16px;
|
|
2398
|
+
}
|
|
2064
2399
|
.tw-w-\[18px\] {
|
|
2065
2400
|
width: 18px;
|
|
2066
2401
|
}
|
|
@@ -2073,6 +2408,9 @@ imported in Sourcegraph shell.
|
|
|
2073
2408
|
.tw-w-\[225px\] {
|
|
2074
2409
|
width: 225px;
|
|
2075
2410
|
}
|
|
2411
|
+
.tw-w-\[30px\] {
|
|
2412
|
+
width: 30px;
|
|
2413
|
+
}
|
|
2076
2414
|
.tw-w-\[75vw\] {
|
|
2077
2415
|
width: 75vw;
|
|
2078
2416
|
}
|
|
@@ -2097,6 +2435,9 @@ imported in Sourcegraph shell.
|
|
|
2097
2435
|
.tw-max-w-72 {
|
|
2098
2436
|
max-width: 18rem;
|
|
2099
2437
|
}
|
|
2438
|
+
.tw-max-w-\[200px\] {
|
|
2439
|
+
max-width: 200px;
|
|
2440
|
+
}
|
|
2100
2441
|
.tw-max-w-\[550px\] {
|
|
2101
2442
|
max-width: 550px;
|
|
2102
2443
|
}
|
|
@@ -2109,11 +2450,17 @@ imported in Sourcegraph shell.
|
|
|
2109
2450
|
.tw-max-w-lg {
|
|
2110
2451
|
max-width: 32rem;
|
|
2111
2452
|
}
|
|
2453
|
+
.tw-max-w-md {
|
|
2454
|
+
max-width: 28rem;
|
|
2455
|
+
}
|
|
2112
2456
|
.tw-flex-1 {
|
|
2113
2457
|
flex: 1 1 0%;
|
|
2114
2458
|
}
|
|
2115
|
-
.tw-flex-
|
|
2116
|
-
flex:
|
|
2459
|
+
.tw-flex-auto {
|
|
2460
|
+
flex: 1 1 auto;
|
|
2461
|
+
}
|
|
2462
|
+
.tw-flex-shrink-0 {
|
|
2463
|
+
flex-shrink: 0;
|
|
2117
2464
|
}
|
|
2118
2465
|
.tw-shrink-0 {
|
|
2119
2466
|
flex-shrink: 0;
|
|
@@ -2121,8 +2468,8 @@ imported in Sourcegraph shell.
|
|
|
2121
2468
|
.tw-flex-grow {
|
|
2122
2469
|
flex-grow: 1;
|
|
2123
2470
|
}
|
|
2124
|
-
.tw-
|
|
2125
|
-
flex-
|
|
2471
|
+
.tw-basis-0 {
|
|
2472
|
+
flex-basis: 0px;
|
|
2126
2473
|
}
|
|
2127
2474
|
.-tw-translate-y-\[\.2em\] {
|
|
2128
2475
|
--tw-translate-y: -.2em;
|
|
@@ -2150,6 +2497,9 @@ imported in Sourcegraph shell.
|
|
|
2150
2497
|
.tw-select-none {
|
|
2151
2498
|
user-select: none;
|
|
2152
2499
|
}
|
|
2500
|
+
.tw-resize-none {
|
|
2501
|
+
resize: none;
|
|
2502
|
+
}
|
|
2153
2503
|
.tw-list-none {
|
|
2154
2504
|
list-style-type: none;
|
|
2155
2505
|
}
|
|
@@ -2159,15 +2509,15 @@ imported in Sourcegraph shell.
|
|
|
2159
2509
|
.tw-flex-col {
|
|
2160
2510
|
flex-direction: column;
|
|
2161
2511
|
}
|
|
2512
|
+
.tw-flex-col-reverse {
|
|
2513
|
+
flex-direction: column-reverse;
|
|
2514
|
+
}
|
|
2162
2515
|
.tw-flex-wrap {
|
|
2163
2516
|
flex-wrap: wrap;
|
|
2164
2517
|
}
|
|
2165
2518
|
.tw-flex-wrap-reverse {
|
|
2166
2519
|
flex-wrap: wrap-reverse;
|
|
2167
2520
|
}
|
|
2168
|
-
.\!tw-items-start {
|
|
2169
|
-
align-items: flex-start !important;
|
|
2170
|
-
}
|
|
2171
2521
|
.tw-items-start {
|
|
2172
2522
|
align-items: flex-start;
|
|
2173
2523
|
}
|
|
@@ -2183,6 +2533,9 @@ imported in Sourcegraph shell.
|
|
|
2183
2533
|
.tw-items-stretch {
|
|
2184
2534
|
align-items: stretch;
|
|
2185
2535
|
}
|
|
2536
|
+
.\!tw-justify-start {
|
|
2537
|
+
justify-content: flex-start !important;
|
|
2538
|
+
}
|
|
2186
2539
|
.tw-justify-end {
|
|
2187
2540
|
justify-content: flex-end;
|
|
2188
2541
|
}
|
|
@@ -2192,11 +2545,8 @@ imported in Sourcegraph shell.
|
|
|
2192
2545
|
.tw-justify-between {
|
|
2193
2546
|
justify-content: space-between;
|
|
2194
2547
|
}
|
|
2195
|
-
|
|
2196
|
-
gap:
|
|
2197
|
-
}
|
|
2198
|
-
.tw-gap-0\.5 {
|
|
2199
|
-
gap: 0.125rem;
|
|
2548
|
+
.\!tw-gap-2 {
|
|
2549
|
+
gap: 4px !important;
|
|
2200
2550
|
}
|
|
2201
2551
|
.tw-gap-1 {
|
|
2202
2552
|
gap: 2px;
|
|
@@ -2245,6 +2595,9 @@ imported in Sourcegraph shell.
|
|
|
2245
2595
|
.tw-divide-muted > :not([hidden]) ~ :not([hidden]) {
|
|
2246
2596
|
border-color: var(--vscode-input-background);
|
|
2247
2597
|
}
|
|
2598
|
+
.tw-self-start {
|
|
2599
|
+
align-self: flex-start;
|
|
2600
|
+
}
|
|
2248
2601
|
.tw-self-stretch {
|
|
2249
2602
|
align-self: stretch;
|
|
2250
2603
|
}
|
|
@@ -2254,9 +2607,6 @@ imported in Sourcegraph shell.
|
|
|
2254
2607
|
.tw-overflow-hidden {
|
|
2255
2608
|
overflow: hidden;
|
|
2256
2609
|
}
|
|
2257
|
-
.tw-overflow-clip {
|
|
2258
|
-
overflow: clip;
|
|
2259
|
-
}
|
|
2260
2610
|
.tw-overflow-y-auto {
|
|
2261
2611
|
overflow-y: auto;
|
|
2262
2612
|
}
|
|
@@ -2268,18 +2618,12 @@ imported in Sourcegraph shell.
|
|
|
2268
2618
|
text-overflow: ellipsis;
|
|
2269
2619
|
white-space: nowrap;
|
|
2270
2620
|
}
|
|
2271
|
-
.tw-text-ellipsis {
|
|
2272
|
-
text-overflow: ellipsis;
|
|
2273
|
-
}
|
|
2274
2621
|
.tw-whitespace-nowrap {
|
|
2275
2622
|
white-space: nowrap;
|
|
2276
2623
|
}
|
|
2277
2624
|
.tw-whitespace-pre-line {
|
|
2278
2625
|
white-space: pre-line;
|
|
2279
2626
|
}
|
|
2280
|
-
.tw-text-nowrap {
|
|
2281
|
-
text-wrap: nowrap;
|
|
2282
|
-
}
|
|
2283
2627
|
.\!tw-rounded-full {
|
|
2284
2628
|
border-radius: 9999px !important;
|
|
2285
2629
|
}
|
|
@@ -2304,9 +2648,6 @@ imported in Sourcegraph shell.
|
|
|
2304
2648
|
.tw-rounded-md {
|
|
2305
2649
|
border-radius: 4px;
|
|
2306
2650
|
}
|
|
2307
|
-
.tw-rounded-none {
|
|
2308
|
-
border-radius: 0px;
|
|
2309
|
-
}
|
|
2310
2651
|
.tw-rounded-sm {
|
|
2311
2652
|
border-radius: 2px;
|
|
2312
2653
|
}
|
|
@@ -2346,15 +2687,15 @@ imported in Sourcegraph shell.
|
|
|
2346
2687
|
.tw-border-current {
|
|
2347
2688
|
border-color: currentColor;
|
|
2348
2689
|
}
|
|
2690
|
+
.tw-border-input-border {
|
|
2691
|
+
border-color: var(--vscode-input-border);
|
|
2692
|
+
}
|
|
2349
2693
|
.tw-border-keybinding-border {
|
|
2350
2694
|
border-color: var(--vscode-keybindingLabel-border);
|
|
2351
2695
|
}
|
|
2352
2696
|
.tw-border-muted-transparent {
|
|
2353
2697
|
border-color: color-mix(in lch, currentColor 15%, transparent);
|
|
2354
2698
|
}
|
|
2355
|
-
.tw-border-ring {
|
|
2356
|
-
border-color: var(--vscode-focusBorder);
|
|
2357
|
-
}
|
|
2358
2699
|
.tw-border-transparent {
|
|
2359
2700
|
border-color: transparent;
|
|
2360
2701
|
}
|
|
@@ -2367,9 +2708,6 @@ imported in Sourcegraph shell.
|
|
|
2367
2708
|
.tw-border-t-border {
|
|
2368
2709
|
border-top-color: var(--vscode-dropdown-border);
|
|
2369
2710
|
}
|
|
2370
|
-
.\!tw-bg-\[unset\] {
|
|
2371
|
-
background-color: unset !important;
|
|
2372
|
-
}
|
|
2373
2711
|
.tw-bg-\[unset\] {
|
|
2374
2712
|
background-color: unset;
|
|
2375
2713
|
}
|
|
@@ -2391,15 +2729,31 @@ imported in Sourcegraph shell.
|
|
|
2391
2729
|
.tw-bg-button-secondary-background {
|
|
2392
2730
|
background-color: var(--vscode-button-secondaryBackground);
|
|
2393
2731
|
}
|
|
2732
|
+
.tw-bg-button-secondary-background-hover {
|
|
2733
|
+
background-color: var(--vscode-button-secondaryHoverBackground);
|
|
2734
|
+
}
|
|
2394
2735
|
.tw-bg-current {
|
|
2395
2736
|
background-color: currentColor;
|
|
2396
2737
|
}
|
|
2738
|
+
.tw-bg-input-background {
|
|
2739
|
+
background-color: var(--vscode-input-background);
|
|
2740
|
+
}
|
|
2397
2741
|
.tw-bg-keybinding-background {
|
|
2398
2742
|
background-color: var(--vscode-keybindingLabel-background);
|
|
2399
2743
|
}
|
|
2744
|
+
.tw-bg-muted {
|
|
2745
|
+
background-color: var(--vscode-input-background);
|
|
2746
|
+
}
|
|
2400
2747
|
.tw-bg-popover {
|
|
2401
2748
|
background-color: var(--vscode-quickInput-background);
|
|
2402
2749
|
}
|
|
2750
|
+
.tw-bg-red-800 {
|
|
2751
|
+
--tw-bg-opacity: 1;
|
|
2752
|
+
background-color: rgb(153 27 27 / var(--tw-bg-opacity));
|
|
2753
|
+
}
|
|
2754
|
+
.tw-bg-sidebar-background {
|
|
2755
|
+
background-color: var(--vscode-sideBar-background);
|
|
2756
|
+
}
|
|
2403
2757
|
.tw-bg-status-offline-background {
|
|
2404
2758
|
background-color: var(--vscode-statusBarItem-offlineBackground);
|
|
2405
2759
|
}
|
|
@@ -2415,6 +2769,9 @@ imported in Sourcegraph shell.
|
|
|
2415
2769
|
.\!tw-p-3 {
|
|
2416
2770
|
padding: 6px !important;
|
|
2417
2771
|
}
|
|
2772
|
+
.\!tw-p-4 {
|
|
2773
|
+
padding: 8px !important;
|
|
2774
|
+
}
|
|
2418
2775
|
.tw-p-0 {
|
|
2419
2776
|
padding: 0px;
|
|
2420
2777
|
}
|
|
@@ -2424,14 +2781,22 @@ imported in Sourcegraph shell.
|
|
|
2424
2781
|
.tw-p-2 {
|
|
2425
2782
|
padding: 4px;
|
|
2426
2783
|
}
|
|
2784
|
+
.tw-p-3 {
|
|
2785
|
+
padding: 6px;
|
|
2786
|
+
}
|
|
2427
2787
|
.tw-p-4 {
|
|
2428
2788
|
padding: 8px;
|
|
2429
2789
|
}
|
|
2430
2790
|
.tw-p-6 {
|
|
2431
2791
|
padding: 12px;
|
|
2432
2792
|
}
|
|
2433
|
-
|
|
2434
|
-
padding:
|
|
2793
|
+
.\!tw-px-6 {
|
|
2794
|
+
padding-left: 12px !important;
|
|
2795
|
+
padding-right: 12px !important;
|
|
2796
|
+
}
|
|
2797
|
+
.\!tw-px-8 {
|
|
2798
|
+
padding-left: 16px !important;
|
|
2799
|
+
padding-right: 16px !important;
|
|
2435
2800
|
}
|
|
2436
2801
|
.tw-px-0 {
|
|
2437
2802
|
padding-left: 0px;
|
|
@@ -2449,10 +2814,6 @@ imported in Sourcegraph shell.
|
|
|
2449
2814
|
padding-left: 8px;
|
|
2450
2815
|
padding-right: 8px;
|
|
2451
2816
|
}
|
|
2452
|
-
.tw-px-6 {
|
|
2453
|
-
padding-left: 12px;
|
|
2454
|
-
padding-right: 12px;
|
|
2455
|
-
}
|
|
2456
2817
|
.tw-px-8 {
|
|
2457
2818
|
padding-left: 16px;
|
|
2458
2819
|
padding-right: 16px;
|
|
@@ -2465,6 +2826,18 @@ imported in Sourcegraph shell.
|
|
|
2465
2826
|
padding-top: 0px;
|
|
2466
2827
|
padding-bottom: 0px;
|
|
2467
2828
|
}
|
|
2829
|
+
.tw-py-1 {
|
|
2830
|
+
padding-top: 2px;
|
|
2831
|
+
padding-bottom: 2px;
|
|
2832
|
+
}
|
|
2833
|
+
.tw-py-1\.5 {
|
|
2834
|
+
padding-top: 3px;
|
|
2835
|
+
padding-bottom: 3px;
|
|
2836
|
+
}
|
|
2837
|
+
.tw-py-10 {
|
|
2838
|
+
padding-top: 20px;
|
|
2839
|
+
padding-bottom: 20px;
|
|
2840
|
+
}
|
|
2468
2841
|
.tw-py-2 {
|
|
2469
2842
|
padding-top: 4px;
|
|
2470
2843
|
padding-bottom: 4px;
|
|
@@ -2488,9 +2861,6 @@ imported in Sourcegraph shell.
|
|
|
2488
2861
|
.tw-pb-12 {
|
|
2489
2862
|
padding-bottom: 24px;
|
|
2490
2863
|
}
|
|
2491
|
-
.tw-pb-3 {
|
|
2492
|
-
padding-bottom: 6px;
|
|
2493
|
-
}
|
|
2494
2864
|
.tw-pb-6 {
|
|
2495
2865
|
padding-bottom: 12px;
|
|
2496
2866
|
}
|
|
@@ -2503,9 +2873,6 @@ imported in Sourcegraph shell.
|
|
|
2503
2873
|
.tw-pt-2 {
|
|
2504
2874
|
padding-top: 4px;
|
|
2505
2875
|
}
|
|
2506
|
-
.tw-pt-4 {
|
|
2507
|
-
padding-top: 8px;
|
|
2508
|
-
}
|
|
2509
2876
|
.tw-pt-6 {
|
|
2510
2877
|
padding-top: 12px;
|
|
2511
2878
|
}
|
|
@@ -2521,6 +2888,9 @@ imported in Sourcegraph shell.
|
|
|
2521
2888
|
.tw-align-middle {
|
|
2522
2889
|
vertical-align: middle;
|
|
2523
2890
|
}
|
|
2891
|
+
.tw-font-mono {
|
|
2892
|
+
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
2893
|
+
}
|
|
2524
2894
|
.\!tw-text-md {
|
|
2525
2895
|
font-size: var(--vscode-font-size) !important;
|
|
2526
2896
|
}
|
|
@@ -2539,6 +2909,9 @@ imported in Sourcegraph shell.
|
|
|
2539
2909
|
.tw-text-xxs {
|
|
2540
2910
|
font-size: calc(calc(10/13)*var(--vscode-font-size));
|
|
2541
2911
|
}
|
|
2912
|
+
.\!tw-font-normal {
|
|
2913
|
+
font-weight: 400 !important;
|
|
2914
|
+
}
|
|
2542
2915
|
.tw-font-bold {
|
|
2543
2916
|
font-weight: 700;
|
|
2544
2917
|
}
|
|
@@ -2560,24 +2933,18 @@ imported in Sourcegraph shell.
|
|
|
2560
2933
|
.tw-leading-tight {
|
|
2561
2934
|
line-height: 1.25;
|
|
2562
2935
|
}
|
|
2563
|
-
.tw-tracking-tight {
|
|
2564
|
-
letter-spacing: -0.025em;
|
|
2565
|
-
}
|
|
2566
2936
|
.tw-tracking-widest {
|
|
2567
2937
|
letter-spacing: 0.1em;
|
|
2568
2938
|
}
|
|
2569
|
-
.\!tw-text-\[unset\] {
|
|
2570
|
-
color: unset !important;
|
|
2571
|
-
}
|
|
2572
2939
|
.\!tw-text-foreground {
|
|
2573
2940
|
color: var(--vscode-foreground) !important;
|
|
2574
2941
|
}
|
|
2942
|
+
.\!tw-text-inherit {
|
|
2943
|
+
color: inherit !important;
|
|
2944
|
+
}
|
|
2575
2945
|
.\!tw-text-muted-foreground {
|
|
2576
2946
|
color: var(--vscode-input-placeholderForeground) !important;
|
|
2577
2947
|
}
|
|
2578
|
-
.tw-text-accent-foreground {
|
|
2579
|
-
color: var(--vscode-list-activeSelectionForeground);
|
|
2580
|
-
}
|
|
2581
2948
|
.tw-text-badge-foreground {
|
|
2582
2949
|
color: var(--vscode-badge-foreground);
|
|
2583
2950
|
}
|
|
@@ -2590,6 +2957,9 @@ imported in Sourcegraph shell.
|
|
|
2590
2957
|
.tw-text-foreground {
|
|
2591
2958
|
color: var(--vscode-foreground);
|
|
2592
2959
|
}
|
|
2960
|
+
.tw-text-input-foreground {
|
|
2961
|
+
color: var(--vscode-input-foreground);
|
|
2962
|
+
}
|
|
2593
2963
|
.tw-text-keybinding-foreground {
|
|
2594
2964
|
color: var(--vscode-keybindingLabel-foreground);
|
|
2595
2965
|
}
|
|
@@ -2602,18 +2972,29 @@ imported in Sourcegraph shell.
|
|
|
2602
2972
|
.tw-text-popover-foreground {
|
|
2603
2973
|
color: var(--vscode-dropdown-foreground);
|
|
2604
2974
|
}
|
|
2975
|
+
.tw-text-red-500 {
|
|
2976
|
+
--tw-text-opacity: 1;
|
|
2977
|
+
color: rgb(239 68 68 / var(--tw-text-opacity));
|
|
2978
|
+
}
|
|
2979
|
+
.tw-text-sidebar-foreground {
|
|
2980
|
+
color: var(--vscode-sideBar-foreground);
|
|
2981
|
+
}
|
|
2605
2982
|
.tw-text-status-offline-foreground {
|
|
2606
2983
|
color: var(--vscode-statusBarItem-offlineForeground);
|
|
2607
2984
|
}
|
|
2985
|
+
.tw-text-white {
|
|
2986
|
+
--tw-text-opacity: 1;
|
|
2987
|
+
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
2988
|
+
}
|
|
2989
|
+
.tw-underline {
|
|
2990
|
+
text-decoration-line: underline;
|
|
2991
|
+
}
|
|
2608
2992
|
.tw-underline-offset-4 {
|
|
2609
2993
|
text-underline-offset: 4px;
|
|
2610
2994
|
}
|
|
2611
2995
|
.\!tw-opacity-100 {
|
|
2612
2996
|
opacity: 1 !important;
|
|
2613
2997
|
}
|
|
2614
|
-
.tw-opacity-30 {
|
|
2615
|
-
opacity: 0.3;
|
|
2616
|
-
}
|
|
2617
2998
|
.tw-opacity-60 {
|
|
2618
2999
|
opacity: 0.6;
|
|
2619
3000
|
}
|
|
@@ -2631,11 +3012,6 @@ imported in Sourcegraph shell.
|
|
|
2631
3012
|
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
|
|
2632
3013
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2633
3014
|
}
|
|
2634
|
-
.tw-shadow-md {
|
|
2635
|
-
--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
|
|
2636
|
-
--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
|
|
2637
|
-
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2638
|
-
}
|
|
2639
3015
|
.tw-outline-none {
|
|
2640
3016
|
outline: 2px solid transparent;
|
|
2641
3017
|
outline-offset: 2px;
|
|
@@ -2650,14 +3026,6 @@ imported in Sourcegraph shell.
|
|
|
2650
3026
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2651
3027
|
transition-duration: 150ms;
|
|
2652
3028
|
}
|
|
2653
|
-
.tw-transition-transform {
|
|
2654
|
-
transition-property: transform;
|
|
2655
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2656
|
-
transition-duration: 150ms;
|
|
2657
|
-
}
|
|
2658
|
-
.tw-duration-150 {
|
|
2659
|
-
transition-duration: 150ms;
|
|
2660
|
-
}
|
|
2661
3029
|
.tw-duration-75 {
|
|
2662
3030
|
transition-duration: 75ms;
|
|
2663
3031
|
}
|
|
@@ -3022,6 +3390,9 @@ imported in Sourcegraph shell.
|
|
|
3022
3390
|
.empty\:tw-hidden:empty {
|
|
3023
3391
|
display: none;
|
|
3024
3392
|
}
|
|
3393
|
+
.hover\:\!tw-bg-button-secondary-background-hover:hover {
|
|
3394
|
+
background-color: var(--vscode-button-secondaryHoverBackground) !important;
|
|
3395
|
+
}
|
|
3025
3396
|
.hover\:tw-bg-accent:hover {
|
|
3026
3397
|
background-color: var(--vscode-list-activeSelectionBackground);
|
|
3027
3398
|
}
|
|
@@ -3037,9 +3408,6 @@ imported in Sourcegraph shell.
|
|
|
3037
3408
|
.hover\:tw-bg-muted-transparent:hover {
|
|
3038
3409
|
background-color: color-mix(in lch, currentColor 15%, transparent);
|
|
3039
3410
|
}
|
|
3040
|
-
.hover\:tw-bg-transparent:hover {
|
|
3041
|
-
background-color: transparent;
|
|
3042
|
-
}
|
|
3043
3411
|
.hover\:\!tw-text-accent-foreground:hover {
|
|
3044
3412
|
color: var(--vscode-list-activeSelectionForeground) !important;
|
|
3045
3413
|
}
|
|
@@ -3065,6 +3433,12 @@ imported in Sourcegraph shell.
|
|
|
3065
3433
|
outline: 2px solid transparent;
|
|
3066
3434
|
outline-offset: 2px;
|
|
3067
3435
|
}
|
|
3436
|
+
.focus\:tw-outline:focus {
|
|
3437
|
+
outline-style: solid;
|
|
3438
|
+
}
|
|
3439
|
+
.focus\:tw-outline-ring:focus {
|
|
3440
|
+
outline-color: var(--vscode-focusBorder);
|
|
3441
|
+
}
|
|
3068
3442
|
.focus\:tw-ring-2:focus {
|
|
3069
3443
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
3070
3444
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
@@ -3104,15 +3478,12 @@ imported in Sourcegraph shell.
|
|
|
3104
3478
|
.disabled\:tw-opacity-75:disabled {
|
|
3105
3479
|
opacity: 0.75;
|
|
3106
3480
|
}
|
|
3107
|
-
.tw-group
|
|
3481
|
+
.tw-group:hover .group-hover\:tw-visible {
|
|
3108
3482
|
visibility: visible;
|
|
3109
3483
|
}
|
|
3110
3484
|
.tw-group:hover .group-hover\:tw-opacity-100 {
|
|
3111
3485
|
opacity: 1;
|
|
3112
3486
|
}
|
|
3113
|
-
.tw-group\/\[cmdk-item\][aria-selected="true"] .group-\[\[aria-selected\=\"true\"\]\]\/\[cmdk-item\]\:tw-visible {
|
|
3114
|
-
visibility: visible;
|
|
3115
|
-
}
|
|
3116
3487
|
.aria-selected\:tw-bg-accent[aria-selected="true"] {
|
|
3117
3488
|
background-color: var(--vscode-list-activeSelectionBackground);
|
|
3118
3489
|
}
|
|
@@ -3184,38 +3555,12 @@ body[data-vscode-theme-kind="vscode-high-contrast"] .high-contrast-dark\:tw-bord
|
|
|
3184
3555
|
.\[\&\:not\(\:last-child\)\]\:tw-border-border:not(:last-child) {
|
|
3185
3556
|
border-color: var(--vscode-dropdown-border);
|
|
3186
3557
|
}
|
|
3187
|
-
.\[\&\[data-state\=open\]\>svg\.lucide\]\:tw-rotate-90[data-state=open]>svg.lucide {
|
|
3188
|
-
--tw-rotate: 90deg;
|
|
3189
|
-
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));
|
|
3190
|
-
}
|
|
3191
3558
|
.\[\&_\>_\*\]\:tw-flex-shrink-0 > * {
|
|
3192
3559
|
flex-shrink: 0;
|
|
3193
3560
|
}
|
|
3194
|
-
.\[\&_\[cmdk-group-heading\]\]\:tw--mx-2 [cmdk-group-heading] {
|
|
3195
|
-
margin-left: -4px;
|
|
3196
|
-
margin-right: -4px;
|
|
3197
|
-
}
|
|
3198
|
-
.\[\&_\[cmdk-group-heading\]\]\:tw-mb-2 [cmdk-group-heading] {
|
|
3199
|
-
margin-bottom: 4px;
|
|
3200
|
-
}
|
|
3201
|
-
.\[\&_\[cmdk-group-heading\]\]\:tw-flex [cmdk-group-heading] {
|
|
3202
|
-
display: flex;
|
|
3203
|
-
}
|
|
3204
3561
|
.\[\&_\[cmdk-group-heading\]\]\:\!tw-h-\[30px\] [cmdk-group-heading] {
|
|
3205
3562
|
height: 30px !important;
|
|
3206
3563
|
}
|
|
3207
|
-
.\[\&_\[cmdk-group-heading\]\]\:\!tw-min-h-\[30px\] [cmdk-group-heading] {
|
|
3208
|
-
min-height: 30px !important;
|
|
3209
|
-
}
|
|
3210
|
-
.\[\&_\[cmdk-group-heading\]\]\:tw-items-center [cmdk-group-heading] {
|
|
3211
|
-
align-items: center;
|
|
3212
|
-
}
|
|
3213
|
-
.\[\&_\[cmdk-group-heading\]\]\:tw-gap-2 [cmdk-group-heading] {
|
|
3214
|
-
gap: 4px;
|
|
3215
|
-
}
|
|
3216
|
-
.\[\&_\[cmdk-group-heading\]\]\:tw-bg-muted [cmdk-group-heading] {
|
|
3217
|
-
background-color: var(--vscode-input-background);
|
|
3218
|
-
}
|
|
3219
3564
|
.\[\&_\[cmdk-group-heading\]\]\:\!tw-p-3 [cmdk-group-heading] {
|
|
3220
3565
|
padding: 6px !important;
|
|
3221
3566
|
}
|
|
@@ -3223,10 +3568,6 @@ body[data-vscode-theme-kind="vscode-high-contrast"] .high-contrast-dark\:tw-bord
|
|
|
3223
3568
|
padding-left: 4px;
|
|
3224
3569
|
padding-right: 4px;
|
|
3225
3570
|
}
|
|
3226
|
-
.\[\&_\[cmdk-group-heading\]\]\:tw-px-4 [cmdk-group-heading] {
|
|
3227
|
-
padding-left: 8px;
|
|
3228
|
-
padding-right: 8px;
|
|
3229
|
-
}
|
|
3230
3571
|
.\[\&_\[cmdk-group-heading\]\]\:tw-py-1\.5 [cmdk-group-heading] {
|
|
3231
3572
|
padding-top: 3px;
|
|
3232
3573
|
padding-bottom: 3px;
|
|
@@ -3246,12 +3587,6 @@ body[data-vscode-theme-kind="vscode-high-contrast"] .high-contrast-dark\:tw-bord
|
|
|
3246
3587
|
.\[\&_\[cmdk-group-heading\]\]\:tw-text-muted-foreground [cmdk-group-heading] {
|
|
3247
3588
|
color: var(--vscode-input-placeholderForeground);
|
|
3248
3589
|
}
|
|
3249
|
-
.\[\&_\[cmdk-group\]\]\:\!tw-border-0 [cmdk-group] {
|
|
3250
|
-
border-width: 0px !important;
|
|
3251
|
-
}
|
|
3252
|
-
.\[\&_\[cmdk-group\]\]\:tw-pt-0 [cmdk-group] {
|
|
3253
|
-
padding-top: 0px;
|
|
3254
|
-
}
|
|
3255
3590
|
.\[\&_\[cmdk-item\]\]\:tw-whitespace-nowrap [cmdk-item] {
|
|
3256
3591
|
white-space: nowrap;
|
|
3257
3592
|
}
|