@sourcegraph/cody-web 0.17.0 → 0.19.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-BDmlRQYM.mjs → agent.worker-DPD_k696.mjs} +2687 -1846
- package/dist/agent.worker.js +2 -2
- package/dist/{browser-CI8VbAM1.mjs → browser-Ct2FvU41.mjs} +1572 -1020
- package/dist/{git-log-D7V6nOEg.mjs → git-log-LuZe_Ru4.mjs} +2 -2
- package/dist/{index-DUe3IGzL.mjs → index-B3HUdChN.mjs} +3 -3
- package/dist/index.js +12410 -11487
- package/dist/lib/components/CodyWebChat.d.ts.map +1 -1
- package/dist/style.css +301 -248
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -35,28 +35,32 @@
|
|
|
35
35
|
--description-font-size: 0.9em; /* match VS Code quickpick description */
|
|
36
36
|
}
|
|
37
37
|
|
|
38
|
-
.
|
|
38
|
+
._title_1ibg5_5, ._description_1ibg5_5, ._warning_1ibg5_5 {
|
|
39
39
|
white-space: nowrap;
|
|
40
40
|
text-overflow: ellipsis;
|
|
41
41
|
overflow: hidden;
|
|
42
42
|
}
|
|
43
43
|
|
|
44
|
-
.
|
|
44
|
+
._row_1ibg5_11 {
|
|
45
45
|
display: flex;
|
|
46
46
|
align-items: center;
|
|
47
47
|
gap: 0.35rem;
|
|
48
48
|
}
|
|
49
49
|
|
|
50
|
-
.
|
|
50
|
+
._row_1ibg5_11:hover {
|
|
51
|
+
color: inherit;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
._description_1ibg5_5, ._warning_1ibg5_5 {
|
|
51
55
|
font-size: var(--description-font-size);
|
|
52
56
|
opacity: 0.7;
|
|
53
57
|
}
|
|
54
58
|
|
|
55
|
-
.
|
|
59
|
+
._description_1ibg5_5 {
|
|
56
60
|
flex: 1;
|
|
57
61
|
}
|
|
58
62
|
|
|
59
|
-
.
|
|
63
|
+
._title_1ibg5_5:hover {
|
|
60
64
|
direction: rtl;
|
|
61
65
|
}
|
|
62
66
|
._context-item-mention-node_1eamp_1 {
|
|
@@ -343,205 +347,6 @@ body[data-vscode-theme-kind='vscode-high-contrast-light'] ._dot_10c80_1 {
|
|
|
343
347
|
opacity: 0.25;
|
|
344
348
|
}
|
|
345
349
|
}
|
|
346
|
-
:root {
|
|
347
|
-
--code-font-size: #{(12/14)}em;
|
|
348
|
-
--code-font-family: sfmono-regular, consolas, menlo, dejavu sans mono, monospace;
|
|
349
|
-
}
|
|
350
|
-
|
|
351
|
-
._code_1suzz_6 {
|
|
352
|
-
white-space: pre;
|
|
353
|
-
line-height: 1rem;
|
|
354
|
-
font-size: var(--code-font-size);
|
|
355
|
-
font-family: var(--code-font-family);
|
|
356
|
-
}
|
|
357
|
-
|
|
358
|
-
._small_1suzz_13 {
|
|
359
|
-
font-size: 0.75rem;
|
|
360
|
-
line-height: 1rem;
|
|
361
|
-
|
|
362
|
-
/* Bootstrap applies `font-weight: 400;` to `small` element,
|
|
363
|
-
but we want to control `font-weight` only with `strong` or `.font-weight-medium`. */
|
|
364
|
-
font-weight: inherit;
|
|
365
|
-
}
|
|
366
|
-
|
|
367
|
-
._code-excerpt_1gr2h_1 .line,
|
|
368
|
-
._code-excerpt_1gr2h_1 .code {
|
|
369
|
-
/* stylelint-disable-next-line declaration-property-unit-allowed-list */
|
|
370
|
-
height: 18px;
|
|
371
|
-
vertical-align: middle;
|
|
372
|
-
padding: 0;
|
|
373
|
-
}
|
|
374
|
-
._code-excerpt_1gr2h_1 .line {
|
|
375
|
-
min-width: 1.5rem;
|
|
376
|
-
text-align: right;
|
|
377
|
-
user-select: none;
|
|
378
|
-
}
|
|
379
|
-
._code-excerpt_1gr2h_1 .line::before {
|
|
380
|
-
/* draw line number with css so it cannot be copied to clipboard */
|
|
381
|
-
content: attr(data-line);
|
|
382
|
-
color: var(--cody-chat-code-text-muted);
|
|
383
|
-
}
|
|
384
|
-
._code-excerpt_1gr2h_1 .code {
|
|
385
|
-
white-space: pre;
|
|
386
|
-
padding-left: 1rem;
|
|
387
|
-
}
|
|
388
|
-
._code-excerpt-error_1gr2h_1 {
|
|
389
|
-
width: 100%;
|
|
390
|
-
}
|
|
391
|
-
._code-excerpt-alert_1gr2h_1 {
|
|
392
|
-
margin-bottom: 0;
|
|
393
|
-
color: #c92a2a;
|
|
394
|
-
}
|
|
395
|
-
._code-excerpt_1gr2h_1 .hl-text {
|
|
396
|
-
color: #657b83;
|
|
397
|
-
}
|
|
398
|
-
:root {
|
|
399
|
-
--cody-chat-code-background: var(--code-background);
|
|
400
|
-
--cody-chat-code-header-background: var(--vscode-editorGroupHeader-tabsBackground);
|
|
401
|
-
--cody-chat-code-subtle-background: var(--vscode-titleBar-inactiveBackground);
|
|
402
|
-
--cody-chat-code-border-color: var(--vscode-widget-border);
|
|
403
|
-
--cody-chat-code-text-muted: var(--vscode-input-placeholderForeground);
|
|
404
|
-
--cody-chat-code-focus-border: var(--vscode-focusBorder);
|
|
405
|
-
--cody-chat-code-mark-background: #f8e688;
|
|
406
|
-
--cody-chat-code-text-highlighted: #566880;
|
|
407
|
-
}
|
|
408
|
-
|
|
409
|
-
._result-container_1poiy_12 {
|
|
410
|
-
contain: paint;
|
|
411
|
-
}
|
|
412
|
-
|
|
413
|
-
._result-container_1poiy_12 .match-highlight {
|
|
414
|
-
color: var(--cody-chat-code-text-highlighted);
|
|
415
|
-
background-color: var(--cody-chat-code-mark-background) !important;
|
|
416
|
-
}
|
|
417
|
-
|
|
418
|
-
._result-container_1poiy_12 .sr-only {
|
|
419
|
-
position: absolute;
|
|
420
|
-
width: 0.0625rem;
|
|
421
|
-
height: 0.0625rem;
|
|
422
|
-
padding: 0;
|
|
423
|
-
margin: -0.0625rem;
|
|
424
|
-
overflow: hidden;
|
|
425
|
-
clip: rect(0, 0, 0, 0);
|
|
426
|
-
white-space: nowrap;
|
|
427
|
-
border: 0;
|
|
428
|
-
}
|
|
429
|
-
|
|
430
|
-
._header_1poiy_32 {
|
|
431
|
-
padding: 0.45rem 0.5rem;
|
|
432
|
-
display: flex;
|
|
433
|
-
align-items: center;
|
|
434
|
-
flex-wrap: wrap;
|
|
435
|
-
position: sticky;
|
|
436
|
-
top: 0;
|
|
437
|
-
|
|
438
|
-
/* Show on top of search result contents */
|
|
439
|
-
z-index: 1;
|
|
440
|
-
background-color: var(--cody-chat-code-header-background);
|
|
441
|
-
}
|
|
442
|
-
|
|
443
|
-
._header-title_1poiy_1 {
|
|
444
|
-
flex: 1 1 auto;
|
|
445
|
-
display: flex;
|
|
446
|
-
flex-wrap: wrap;
|
|
447
|
-
}
|
|
448
|
-
|
|
449
|
-
._result_1poiy_12 {
|
|
450
|
-
border-radius: 4px;
|
|
451
|
-
border: solid 1px var(--cody-chat-code-border-color);
|
|
452
|
-
background-color: var(--cody-chat-code-background);
|
|
453
|
-
}
|
|
454
|
-
|
|
455
|
-
._result_1poiy_12 code {
|
|
456
|
-
padding: 0 !important;
|
|
457
|
-
}
|
|
458
|
-
|
|
459
|
-
._search-result-match_1poiy_61 {
|
|
460
|
-
/* Don't use cascading link style */
|
|
461
|
-
text-decoration: none;
|
|
462
|
-
display: flex;
|
|
463
|
-
align-items: flex-start;
|
|
464
|
-
overflow-x: auto;
|
|
465
|
-
overflow-y: hidden;
|
|
466
|
-
position: relative;
|
|
467
|
-
}
|
|
468
|
-
|
|
469
|
-
._horizontal-divider-between_1poiy_71:not(:last-child) {
|
|
470
|
-
border-bottom: 1px solid var(--cody-chat-code-border-color);
|
|
471
|
-
}
|
|
472
|
-
|
|
473
|
-
._focusable-block_1poiy_77:focus-visible {
|
|
474
|
-
box-shadow: inset 0 0 0 1px var(--cody-chat-code-focus-border);
|
|
475
|
-
}
|
|
476
|
-
|
|
477
|
-
._clickable_1poiy_83 {
|
|
478
|
-
cursor: pointer;
|
|
479
|
-
}
|
|
480
|
-
|
|
481
|
-
._clickable_1poiy_83:hover {
|
|
482
|
-
text-decoration: none;
|
|
483
|
-
}
|
|
484
|
-
|
|
485
|
-
._divider-between_1poiy_90 > *:not(:last-child)::after {
|
|
486
|
-
content: ' ';
|
|
487
|
-
height: 1rem;
|
|
488
|
-
margin: 0 0.75rem;
|
|
489
|
-
border-right: 1px solid var(--cody-chat-code-border-color);
|
|
490
|
-
display: block;
|
|
491
|
-
}
|
|
492
|
-
|
|
493
|
-
._divider-vertical_1poiy_100 {
|
|
494
|
-
border-bottom: 1px solid var(--cody-chat-code-border-color);
|
|
495
|
-
width: 100%;
|
|
496
|
-
margin: 0.5rem 0;
|
|
497
|
-
}
|
|
498
|
-
|
|
499
|
-
._divider_1poiy_90 {
|
|
500
|
-
border-right: 1px solid var(--cody-chat-code-border-color);
|
|
501
|
-
height: 1rem;
|
|
502
|
-
margin: 0 0.5rem;
|
|
503
|
-
}
|
|
504
|
-
|
|
505
|
-
._title_1poiy_112 {
|
|
506
|
-
display: flex;
|
|
507
|
-
align-items: center;
|
|
508
|
-
flex-grow: 1;
|
|
509
|
-
min-width: 0;
|
|
510
|
-
flex-wrap: wrap;
|
|
511
|
-
}
|
|
512
|
-
|
|
513
|
-
._title-inner_1poiy_120 {
|
|
514
|
-
overflow-wrap: anywhere;
|
|
515
|
-
}
|
|
516
|
-
|
|
517
|
-
._toggle-matches-button_1poiy_124 {
|
|
518
|
-
width: 100%;
|
|
519
|
-
text-align: left;
|
|
520
|
-
border: none;
|
|
521
|
-
padding: 0.25rem 0.5rem;
|
|
522
|
-
border-top: 1px solid var(--cody-chat-code-border-color);
|
|
523
|
-
background-color: var(--cody-chat-code-background);
|
|
524
|
-
color: var(--cody-chat-code-text-muted);
|
|
525
|
-
}
|
|
526
|
-
|
|
527
|
-
._toggle-matches-button_1poiy_124:hover {
|
|
528
|
-
color: inherit;
|
|
529
|
-
}
|
|
530
|
-
|
|
531
|
-
._toggle-matches-button--expanded_1poiy_1 {
|
|
532
|
-
position: sticky;
|
|
533
|
-
bottom: 0;
|
|
534
|
-
}
|
|
535
|
-
|
|
536
|
-
._toggle-matches-button-text_1poiy_1 {
|
|
537
|
-
margin-left: 0.125rem;
|
|
538
|
-
}
|
|
539
|
-
|
|
540
|
-
._chunk_1nj7l_1 {
|
|
541
|
-
position: relative;
|
|
542
|
-
overflow-x: auto;
|
|
543
|
-
background-color: var(--code-background);
|
|
544
|
-
}
|
|
545
350
|
._buttons-container_1kf9a_1 {
|
|
546
351
|
display: flex;
|
|
547
352
|
flex-wrap: wrap;
|
|
@@ -931,6 +736,204 @@ body[data-vscode-theme-kind='vscode-light'] ._content_1kf9a_116 pre > code {
|
|
|
931
736
|
align-items: center;
|
|
932
737
|
gap: calc(var(--spacing) / 4);
|
|
933
738
|
}
|
|
739
|
+
:root {
|
|
740
|
+
--code-font-size: #{(12/14)}em;
|
|
741
|
+
--code-font-family: sfmono-regular, consolas, menlo, dejavu sans mono, monospace;
|
|
742
|
+
}
|
|
743
|
+
|
|
744
|
+
._code_1suzz_6 {
|
|
745
|
+
white-space: pre;
|
|
746
|
+
line-height: 1rem;
|
|
747
|
+
font-size: var(--code-font-size);
|
|
748
|
+
font-family: var(--code-font-family);
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
._small_1suzz_13 {
|
|
752
|
+
font-size: 0.75rem;
|
|
753
|
+
line-height: 1rem;
|
|
754
|
+
|
|
755
|
+
/* Bootstrap applies `font-weight: 400;` to `small` element,
|
|
756
|
+
but we want to control `font-weight` only with `strong` or `.font-weight-medium`. */
|
|
757
|
+
font-weight: inherit;
|
|
758
|
+
}
|
|
759
|
+
|
|
760
|
+
._code-excerpt_1gr2h_1 .line,
|
|
761
|
+
._code-excerpt_1gr2h_1 .code {
|
|
762
|
+
/* stylelint-disable-next-line declaration-property-unit-allowed-list */
|
|
763
|
+
height: 18px;
|
|
764
|
+
vertical-align: middle;
|
|
765
|
+
padding: 0;
|
|
766
|
+
}
|
|
767
|
+
._code-excerpt_1gr2h_1 .line {
|
|
768
|
+
min-width: 1.5rem;
|
|
769
|
+
text-align: right;
|
|
770
|
+
user-select: none;
|
|
771
|
+
}
|
|
772
|
+
._code-excerpt_1gr2h_1 .line::before {
|
|
773
|
+
/* draw line number with css so it cannot be copied to clipboard */
|
|
774
|
+
content: attr(data-line);
|
|
775
|
+
color: var(--cody-chat-code-text-muted);
|
|
776
|
+
}
|
|
777
|
+
._code-excerpt_1gr2h_1 .code {
|
|
778
|
+
white-space: pre;
|
|
779
|
+
padding-left: 1rem;
|
|
780
|
+
}
|
|
781
|
+
._code-excerpt-error_1gr2h_1 {
|
|
782
|
+
width: 100%;
|
|
783
|
+
}
|
|
784
|
+
._code-excerpt-alert_1gr2h_1 {
|
|
785
|
+
margin-bottom: 0;
|
|
786
|
+
color: #c92a2a;
|
|
787
|
+
}
|
|
788
|
+
._code-excerpt_1gr2h_1 .hl-text {
|
|
789
|
+
color: #657b83;
|
|
790
|
+
}
|
|
791
|
+
:root {
|
|
792
|
+
--cody-chat-code-background: var(--code-background);
|
|
793
|
+
--cody-chat-code-header-background: var(--vscode-editorGroupHeader-tabsBackground);
|
|
794
|
+
--cody-chat-code-subtle-background: var(--vscode-titleBar-inactiveBackground);
|
|
795
|
+
--cody-chat-code-border-color: var(--vscode-widget-border);
|
|
796
|
+
--cody-chat-code-text-muted: var(--vscode-input-placeholderForeground);
|
|
797
|
+
--cody-chat-code-focus-border: var(--vscode-focusBorder);
|
|
798
|
+
--cody-chat-code-mark-background: #f8e688;
|
|
799
|
+
--cody-chat-code-text-highlighted: #566880;
|
|
800
|
+
}
|
|
801
|
+
|
|
802
|
+
._result-container_61rcx_12 {
|
|
803
|
+
contain: paint;
|
|
804
|
+
}
|
|
805
|
+
|
|
806
|
+
._result-container_61rcx_12 .match-highlight {
|
|
807
|
+
color: var(--cody-chat-code-text-highlighted);
|
|
808
|
+
background-color: var(--cody-chat-code-mark-background) !important;
|
|
809
|
+
}
|
|
810
|
+
|
|
811
|
+
._result-container_61rcx_12 .sr-only {
|
|
812
|
+
position: absolute;
|
|
813
|
+
width: 0.0625rem;
|
|
814
|
+
height: 0.0625rem;
|
|
815
|
+
padding: 0;
|
|
816
|
+
margin: -0.0625rem;
|
|
817
|
+
overflow: hidden;
|
|
818
|
+
clip: rect(0, 0, 0, 0);
|
|
819
|
+
white-space: nowrap;
|
|
820
|
+
border: 0;
|
|
821
|
+
}
|
|
822
|
+
|
|
823
|
+
._header_61rcx_32 {
|
|
824
|
+
padding: 0.45rem 0rem;
|
|
825
|
+
display: flex;
|
|
826
|
+
align-items: center;
|
|
827
|
+
position: sticky;
|
|
828
|
+
top: 0;
|
|
829
|
+
|
|
830
|
+
/* Show on top of search result contents */
|
|
831
|
+
z-index: 1;
|
|
832
|
+
background-color: var(--cody-chat-code-header-background);
|
|
833
|
+
}
|
|
834
|
+
|
|
835
|
+
._header-title_61rcx_1 {
|
|
836
|
+
flex: 1 1 auto;
|
|
837
|
+
display: flex;
|
|
838
|
+
flex-wrap: wrap;
|
|
839
|
+
}
|
|
840
|
+
|
|
841
|
+
._result_61rcx_12 {
|
|
842
|
+
border-radius: 4px;
|
|
843
|
+
border: solid 1px var(--cody-chat-code-border-color);
|
|
844
|
+
background-color: var(--cody-chat-code-background);
|
|
845
|
+
}
|
|
846
|
+
|
|
847
|
+
._result_61rcx_12 code {
|
|
848
|
+
padding: 0 !important;
|
|
849
|
+
}
|
|
850
|
+
|
|
851
|
+
._search-result-match_61rcx_60 {
|
|
852
|
+
/* Don't use cascading link style */
|
|
853
|
+
text-decoration: none;
|
|
854
|
+
display: flex;
|
|
855
|
+
align-items: flex-start;
|
|
856
|
+
overflow-x: auto;
|
|
857
|
+
overflow-y: hidden;
|
|
858
|
+
position: relative;
|
|
859
|
+
}
|
|
860
|
+
|
|
861
|
+
._horizontal-divider-between_61rcx_70:not(:last-child) {
|
|
862
|
+
border-bottom: 1px solid var(--cody-chat-code-border-color);
|
|
863
|
+
}
|
|
864
|
+
|
|
865
|
+
._focusable-block_61rcx_76:focus-visible {
|
|
866
|
+
box-shadow: inset 0 0 0 1px var(--cody-chat-code-focus-border);
|
|
867
|
+
}
|
|
868
|
+
|
|
869
|
+
._clickable_61rcx_82 {
|
|
870
|
+
cursor: pointer;
|
|
871
|
+
}
|
|
872
|
+
|
|
873
|
+
._clickable_61rcx_82:hover {
|
|
874
|
+
text-decoration: none;
|
|
875
|
+
}
|
|
876
|
+
|
|
877
|
+
._divider-between_61rcx_89 > *:not(:last-child)::after {
|
|
878
|
+
content: ' ';
|
|
879
|
+
height: 1rem;
|
|
880
|
+
margin: 0 0.75rem;
|
|
881
|
+
border-right: 1px solid var(--cody-chat-code-border-color);
|
|
882
|
+
display: block;
|
|
883
|
+
}
|
|
884
|
+
|
|
885
|
+
._divider-vertical_61rcx_99 {
|
|
886
|
+
border-bottom: 1px solid var(--cody-chat-code-border-color);
|
|
887
|
+
width: 100%;
|
|
888
|
+
margin: 0.5rem 0;
|
|
889
|
+
}
|
|
890
|
+
|
|
891
|
+
._divider_61rcx_89 {
|
|
892
|
+
border-right: 1px solid var(--cody-chat-code-border-color);
|
|
893
|
+
height: 1rem;
|
|
894
|
+
margin: 0 0.5rem;
|
|
895
|
+
}
|
|
896
|
+
|
|
897
|
+
._title_61rcx_111 {
|
|
898
|
+
display: flex;
|
|
899
|
+
align-items: center;
|
|
900
|
+
flex-grow: 1;
|
|
901
|
+
min-width: 0;
|
|
902
|
+
flex-wrap: wrap;
|
|
903
|
+
}
|
|
904
|
+
|
|
905
|
+
._title-inner_61rcx_119 {
|
|
906
|
+
overflow-wrap: anywhere;
|
|
907
|
+
}
|
|
908
|
+
|
|
909
|
+
._toggle-matches-button_61rcx_123 {
|
|
910
|
+
width: 100%;
|
|
911
|
+
text-align: left;
|
|
912
|
+
border: none;
|
|
913
|
+
padding: 0.25rem 0.5rem;
|
|
914
|
+
border-top: 1px solid var(--cody-chat-code-border-color);
|
|
915
|
+
background-color: var(--cody-chat-code-background);
|
|
916
|
+
color: var(--cody-chat-code-text-muted);
|
|
917
|
+
}
|
|
918
|
+
|
|
919
|
+
._toggle-matches-button_61rcx_123:hover {
|
|
920
|
+
color: inherit;
|
|
921
|
+
}
|
|
922
|
+
|
|
923
|
+
._toggle-matches-button--expanded_61rcx_1 {
|
|
924
|
+
position: sticky;
|
|
925
|
+
bottom: 0;
|
|
926
|
+
}
|
|
927
|
+
|
|
928
|
+
._toggle-matches-button-text_61rcx_1 {
|
|
929
|
+
margin-left: 0.125rem;
|
|
930
|
+
}
|
|
931
|
+
|
|
932
|
+
._chunk_1nj7l_1 {
|
|
933
|
+
position: relative;
|
|
934
|
+
overflow-x: auto;
|
|
935
|
+
background-color: var(--code-background);
|
|
936
|
+
}
|
|
934
937
|
._info-message_1hay9_1 {
|
|
935
938
|
--mention-color-opacity: 70%;
|
|
936
939
|
|
|
@@ -948,6 +951,19 @@ body[data-vscode-theme-kind='vscode-light'] ._content_1kf9a_116 pre > code {
|
|
|
948
951
|
);
|
|
949
952
|
word-break: break-word;
|
|
950
953
|
}
|
|
954
|
+
._filter_u880r_1 {
|
|
955
|
+
background-color: var(--vscode-sidebar-background);
|
|
956
|
+
color: var(--vscode-input-foreground);
|
|
957
|
+
}
|
|
958
|
+
|
|
959
|
+
._filter_u880r_1._selected_u880r_5, ._filter_u880r_1._selected_u880r_5:hover {
|
|
960
|
+
background-color: var(--vscode-button-background);
|
|
961
|
+
color: var(--vscode-button-foreground);
|
|
962
|
+
}
|
|
963
|
+
|
|
964
|
+
._filter_u880r_1 svg {
|
|
965
|
+
fill: currentColor;
|
|
966
|
+
}
|
|
951
967
|
._context-item_1qxrh_1 {
|
|
952
968
|
display: inline-flex;
|
|
953
969
|
padding: 2px 4px 2px 2px;
|
|
@@ -1020,7 +1036,7 @@ body[data-vscode-theme-kind='vscode-high-contrast-light'] ._context-item-link_1q
|
|
|
1020
1036
|
._code-block_1qxrh_70 {
|
|
1021
1037
|
margin-bottom: 0.25rem;
|
|
1022
1038
|
}
|
|
1023
|
-
._user-
|
|
1039
|
+
._user-avatar_vhaw6_1 {
|
|
1024
1040
|
isolation: isolate;
|
|
1025
1041
|
display: inline-flex;
|
|
1026
1042
|
border-radius: 50%;
|
|
@@ -1028,12 +1044,9 @@ body[data-vscode-theme-kind='vscode-high-contrast-light'] ._context-item-link_1q
|
|
|
1028
1044
|
color: var(--vscode-inputOption-activeForeground);
|
|
1029
1045
|
align-items: center;
|
|
1030
1046
|
justify-content: center;
|
|
1031
|
-
width: auto;
|
|
1032
|
-
height: 100%;
|
|
1033
|
-
max-height: 24px;
|
|
1034
1047
|
}
|
|
1035
1048
|
|
|
1036
|
-
._sourcegraph-gradient-
|
|
1049
|
+
._sourcegraph-gradient-border_vhaw6_11 {
|
|
1037
1050
|
--gradient-border-width: 1px;
|
|
1038
1051
|
|
|
1039
1052
|
border-radius: 50%;
|
|
@@ -1053,27 +1066,27 @@ body[data-vscode-theme-kind='vscode-high-contrast-light'] ._context-item-link_1q
|
|
|
1053
1066
|
height: fit-content;
|
|
1054
1067
|
}
|
|
1055
1068
|
|
|
1056
|
-
.
|
|
1069
|
+
._item_1lclp_2 {
|
|
1057
1070
|
display: flex;
|
|
1058
1071
|
gap: 0.5rem;
|
|
1059
1072
|
}
|
|
1060
1073
|
|
|
1061
|
-
._item--
|
|
1074
|
+
._item--indicator_1lclp_13 {
|
|
1062
1075
|
display: none !important;
|
|
1063
1076
|
margin-left: auto;
|
|
1064
1077
|
align-self: flex-start;
|
|
1065
1078
|
}
|
|
1066
1079
|
|
|
1067
|
-
.
|
|
1080
|
+
._item_1lclp_2[data-selected="true"] ._item--indicator_1lclp_13 {
|
|
1068
1081
|
display: block !important;
|
|
1069
1082
|
color: inherit;
|
|
1070
1083
|
}
|
|
1071
1084
|
|
|
1072
|
-
.
|
|
1085
|
+
._item_1lclp_2[data-selected="true"] ._prompt--avatar_1lclp_18, ._item_1lclp_2[data-selected="true"] ._prompt--description_1lclp_18, ._item_1lclp_2[data-selected="true"] ._prompt--icon_1lclp_18 {
|
|
1073
1086
|
color: inherit;
|
|
1074
1087
|
}
|
|
1075
1088
|
|
|
1076
|
-
.
|
|
1089
|
+
._item_1lclp_2[data-disabled="true"] {
|
|
1077
1090
|
/*
|
|
1078
1091
|
In order to override internal cmdk styles for disabled item.
|
|
1079
1092
|
We need to have events over element to have a tooltip over the
|
|
@@ -1084,47 +1097,45 @@ body[data-vscode-theme-kind='vscode-high-contrast-light'] ._context-item-link_1q
|
|
|
1084
1097
|
cursor: not-allowed;
|
|
1085
1098
|
}
|
|
1086
1099
|
|
|
1087
|
-
.
|
|
1100
|
+
._prompt_1lclp_18 {
|
|
1088
1101
|
display: flex;
|
|
1089
1102
|
gap: 0.5rem;
|
|
1090
1103
|
align-items: center;
|
|
1091
1104
|
min-width: 0;
|
|
1092
1105
|
}
|
|
1093
1106
|
|
|
1094
|
-
._prompt--
|
|
1107
|
+
._prompt--avatar_1lclp_18 {
|
|
1095
1108
|
flex-shrink: 0;
|
|
1096
|
-
width: 22px;
|
|
1097
|
-
height: 22px;
|
|
1098
1109
|
display: flex;
|
|
1099
1110
|
align-items: center;
|
|
1100
1111
|
justify-content: center;
|
|
1101
1112
|
}
|
|
1102
1113
|
|
|
1103
|
-
._prompt--
|
|
1114
|
+
._prompt--icon_1lclp_18 {
|
|
1104
1115
|
color: var(--vscode-input-placeholderForeground);
|
|
1105
1116
|
}
|
|
1106
1117
|
|
|
1107
|
-
._prompt--
|
|
1118
|
+
._prompt--content_1lclp_1 {
|
|
1108
1119
|
min-width: 0;
|
|
1109
1120
|
display: flex;
|
|
1110
1121
|
flex-direction: column;
|
|
1111
1122
|
}
|
|
1112
1123
|
|
|
1113
|
-
._prompt--
|
|
1124
|
+
._prompt--title_1lclp_1 {
|
|
1114
1125
|
min-width: 0;
|
|
1115
1126
|
display: flex;
|
|
1116
1127
|
gap: 0.25rem;
|
|
1117
1128
|
align-items: center;
|
|
1118
1129
|
}
|
|
1119
1130
|
|
|
1120
|
-
._prompt--
|
|
1131
|
+
._prompt--name_1lclp_1 {
|
|
1121
1132
|
white-space: nowrap;
|
|
1122
1133
|
overflow: hidden;
|
|
1123
1134
|
text-overflow: ellipsis;
|
|
1124
1135
|
font-weight: 500;
|
|
1125
1136
|
}
|
|
1126
1137
|
|
|
1127
|
-
._prompt--
|
|
1138
|
+
._prompt--description_1lclp_18 {
|
|
1128
1139
|
color: var(--vscode-input-placeholderForeground);
|
|
1129
1140
|
white-space: nowrap;
|
|
1130
1141
|
overflow: hidden;
|
|
@@ -1176,6 +1187,11 @@ body[data-vscode-theme-kind='vscode-high-contrast-light'] ._context-item-link_1q
|
|
|
1176
1187
|
background-color: var(--vscode-dropdown-background);
|
|
1177
1188
|
}
|
|
1178
1189
|
|
|
1190
|
+
._popover_1ah8d_2 {
|
|
1191
|
+
box-shadow: 0 193px 54px 0 rgba(0, 0, 0, 0), 0 123px 49px 0 rgba(0, 0, 0, 0.01),
|
|
1192
|
+
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);
|
|
1193
|
+
}
|
|
1194
|
+
|
|
1179
1195
|
._root_oxlxy_2 {
|
|
1180
1196
|
display: flex;
|
|
1181
1197
|
flex-direction: column;
|
|
@@ -1327,11 +1343,6 @@ body[data-vscode-theme-kind='vscode-high-contrast-light'] ._context-item-link_1q
|
|
|
1327
1343
|
._editor-content-editable_1eiqs_30 {
|
|
1328
1344
|
min-height: 3lh;
|
|
1329
1345
|
}
|
|
1330
|
-
|
|
1331
|
-
._popover_1ah8d_2 {
|
|
1332
|
-
box-shadow: 0 193px 54px 0 rgba(0, 0, 0, 0), 0 123px 49px 0 rgba(0, 0, 0, 0.01),
|
|
1333
|
-
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);
|
|
1334
|
-
}
|
|
1335
1346
|
:root {
|
|
1336
1347
|
--toolbar-button-font-size: 12px;
|
|
1337
1348
|
}
|
|
@@ -1472,14 +1483,14 @@ button > ._model-title-with-icon_1bw6t_1 ._badge_1bw6t_35 {
|
|
|
1472
1483
|
Root element which only exists to use container query
|
|
1473
1484
|
for changing header tabs layout.
|
|
1474
1485
|
*/
|
|
1475
|
-
._tabs-
|
|
1486
|
+
._tabs-root_11pag_10 {
|
|
1476
1487
|
container-type: inline-size;
|
|
1477
1488
|
container-name: tabs-container;
|
|
1478
1489
|
isolation: isolate;
|
|
1479
|
-
z-index:
|
|
1490
|
+
z-index: 2;
|
|
1480
1491
|
}
|
|
1481
1492
|
|
|
1482
|
-
._tabs-
|
|
1493
|
+
._tabs-container_11pag_17 {
|
|
1483
1494
|
display: flex;
|
|
1484
1495
|
width: 100%;
|
|
1485
1496
|
padding: 0;
|
|
@@ -1489,7 +1500,7 @@ button > ._model-title-with-icon_1bw6t_1 ._badge_1bw6t_35 {
|
|
|
1489
1500
|
background-color: var(--vscode-sideBar-background);
|
|
1490
1501
|
}
|
|
1491
1502
|
|
|
1492
|
-
.
|
|
1503
|
+
._tabs_11pag_10 {
|
|
1493
1504
|
display: flex;
|
|
1494
1505
|
flex-shrink: 0;
|
|
1495
1506
|
gap: 2px;
|
|
@@ -1498,27 +1509,27 @@ button > ._model-title-with-icon_1bw6t_1 ._badge_1bw6t_35 {
|
|
|
1498
1509
|
border-bottom: 1px solid var(--vscode-dropdown-border);
|
|
1499
1510
|
}
|
|
1500
1511
|
|
|
1501
|
-
.
|
|
1512
|
+
._tabs_11pag_10 > * {
|
|
1502
1513
|
flex-shrink: 0;
|
|
1503
1514
|
}
|
|
1504
1515
|
|
|
1505
|
-
._sub-
|
|
1516
|
+
._sub-tabs_11pag_40 {
|
|
1506
1517
|
display: flex;
|
|
1507
1518
|
flex-shrink: 0;
|
|
1508
1519
|
gap: 8px;
|
|
1509
1520
|
padding: 0 8px;
|
|
1510
1521
|
}
|
|
1511
1522
|
|
|
1512
|
-
._sub-
|
|
1523
|
+
._sub-tabs_11pag_40 > * {
|
|
1513
1524
|
flex-shrink: 0;
|
|
1514
1525
|
}
|
|
1515
1526
|
|
|
1516
|
-
._sub-
|
|
1517
|
-
._sub-
|
|
1527
|
+
._sub-tabs_11pag_40 > button,
|
|
1528
|
+
._sub-tabs_11pag_40 > a {
|
|
1518
1529
|
padding: 8px;
|
|
1519
1530
|
}
|
|
1520
1531
|
|
|
1521
|
-
._tab-action-
|
|
1532
|
+
._tab-action-label_11pag_56 {
|
|
1522
1533
|
display: inline;
|
|
1523
1534
|
}
|
|
1524
1535
|
|
|
@@ -1530,25 +1541,25 @@ button > ._model-title-with-icon_1bw6t_1 ._badge_1bw6t_35 {
|
|
|
1530
1541
|
this override)
|
|
1531
1542
|
*/
|
|
1532
1543
|
@container tabs-container (width < 575px) {
|
|
1533
|
-
._tabs-
|
|
1544
|
+
._tabs-root_11pag_10:not(._tabs-root--cody-web_11pag_68) ._tab-action-label_11pag_56 {
|
|
1534
1545
|
display: none;
|
|
1535
1546
|
}
|
|
1536
1547
|
}
|
|
1537
1548
|
|
|
1538
1549
|
/* Special override for Cody Web tabs */
|
|
1539
1550
|
@container tabs-container (width < 375px) {
|
|
1540
|
-
._tabs-root--cody-
|
|
1551
|
+
._tabs-root--cody-web_11pag_68 ._tab-action-label_11pag_56 {
|
|
1541
1552
|
display: none;
|
|
1542
1553
|
}
|
|
1543
1554
|
}
|
|
1544
1555
|
|
|
1545
|
-
._dialog-
|
|
1556
|
+
._dialog-overlay_11pag_1 {
|
|
1546
1557
|
inset: 0;
|
|
1547
1558
|
position: fixed;
|
|
1548
1559
|
background-color: var(--vscode-overlay-background);
|
|
1549
1560
|
}
|
|
1550
1561
|
|
|
1551
|
-
._dialog-
|
|
1562
|
+
._dialog-content_11pag_1 {
|
|
1552
1563
|
width: 90vw;
|
|
1553
1564
|
max-width: 450px;
|
|
1554
1565
|
max-height: 85vh;
|
|
@@ -1564,23 +1575,23 @@ button > ._model-title-with-icon_1bw6t_1 ._badge_1bw6t_35 {
|
|
|
1564
1575
|
hsl(206deg 22% 7% / 20%) 0 10px 20px -15px;
|
|
1565
1576
|
}
|
|
1566
1577
|
|
|
1567
|
-
._dialog-
|
|
1578
|
+
._dialog-content_11pag_1:focus {
|
|
1568
1579
|
outline: none;
|
|
1569
1580
|
}
|
|
1570
1581
|
|
|
1571
|
-
._dialog-
|
|
1582
|
+
._dialog-title_11pag_1 {
|
|
1572
1583
|
margin: 0;
|
|
1573
1584
|
font-weight: 500;
|
|
1574
1585
|
font-size: 17px;
|
|
1575
1586
|
}
|
|
1576
1587
|
|
|
1577
|
-
._dialog-
|
|
1588
|
+
._dialog-description_11pag_1 {
|
|
1578
1589
|
margin: 10px 0 20px;
|
|
1579
1590
|
font-size: 15px;
|
|
1580
1591
|
line-height: 1.5;
|
|
1581
1592
|
}
|
|
1582
1593
|
|
|
1583
|
-
._dialog-
|
|
1594
|
+
._dialog-footer_11pag_1 {
|
|
1584
1595
|
margin-top: 1.5rem;
|
|
1585
1596
|
width: 100%;
|
|
1586
1597
|
display: flex;
|
|
@@ -2311,6 +2322,12 @@ imported in Sourcegraph shell.
|
|
|
2311
2322
|
margin-top: 8px;
|
|
2312
2323
|
margin-bottom: 8px;
|
|
2313
2324
|
}
|
|
2325
|
+
.tw--ml-2 {
|
|
2326
|
+
margin-left: -4px;
|
|
2327
|
+
}
|
|
2328
|
+
.tw--mr-2 {
|
|
2329
|
+
margin-right: -4px;
|
|
2330
|
+
}
|
|
2314
2331
|
.tw-mb-10 {
|
|
2315
2332
|
margin-bottom: 20px;
|
|
2316
2333
|
}
|
|
@@ -2402,6 +2419,9 @@ imported in Sourcegraph shell.
|
|
|
2402
2419
|
.\!tw-h-\[30px\] {
|
|
2403
2420
|
height: 30px !important;
|
|
2404
2421
|
}
|
|
2422
|
+
.tw-h-10 {
|
|
2423
|
+
height: 20px;
|
|
2424
|
+
}
|
|
2405
2425
|
.tw-h-8 {
|
|
2406
2426
|
height: 16px;
|
|
2407
2427
|
}
|
|
@@ -2441,6 +2461,9 @@ imported in Sourcegraph shell.
|
|
|
2441
2461
|
.\!tw-max-h-\[unset\] {
|
|
2442
2462
|
max-height: unset !important;
|
|
2443
2463
|
}
|
|
2464
|
+
.tw-max-h-\[200px\] {
|
|
2465
|
+
max-height: 200px;
|
|
2466
|
+
}
|
|
2444
2467
|
.tw-max-h-\[500px\] {
|
|
2445
2468
|
max-height: 500px;
|
|
2446
2469
|
}
|
|
@@ -2456,9 +2479,15 @@ imported in Sourcegraph shell.
|
|
|
2456
2479
|
.\!tw-w-fit {
|
|
2457
2480
|
width: fit-content !important;
|
|
2458
2481
|
}
|
|
2482
|
+
.tw-w-10 {
|
|
2483
|
+
width: 20px;
|
|
2484
|
+
}
|
|
2459
2485
|
.tw-w-4 {
|
|
2460
2486
|
width: 8px;
|
|
2461
2487
|
}
|
|
2488
|
+
.tw-w-48 {
|
|
2489
|
+
width: 12rem;
|
|
2490
|
+
}
|
|
2462
2491
|
.tw-w-72 {
|
|
2463
2492
|
width: 18rem;
|
|
2464
2493
|
}
|
|
@@ -2483,6 +2512,9 @@ imported in Sourcegraph shell.
|
|
|
2483
2512
|
.tw-w-\[225px\] {
|
|
2484
2513
|
width: 225px;
|
|
2485
2514
|
}
|
|
2515
|
+
.tw-w-\[250px\] {
|
|
2516
|
+
width: 250px;
|
|
2517
|
+
}
|
|
2486
2518
|
.tw-w-\[30px\] {
|
|
2487
2519
|
width: 30px;
|
|
2488
2520
|
}
|
|
@@ -2621,6 +2653,9 @@ imported in Sourcegraph shell.
|
|
|
2621
2653
|
.tw-items-stretch {
|
|
2622
2654
|
align-items: stretch;
|
|
2623
2655
|
}
|
|
2656
|
+
.\!tw-justify-start {
|
|
2657
|
+
justify-content: flex-start !important;
|
|
2658
|
+
}
|
|
2624
2659
|
.tw-justify-start {
|
|
2625
2660
|
justify-content: flex-start;
|
|
2626
2661
|
}
|
|
@@ -2689,8 +2724,8 @@ imported in Sourcegraph shell.
|
|
|
2689
2724
|
.tw-divide-muted > :not([hidden]) ~ :not([hidden]) {
|
|
2690
2725
|
border-color: var(--vscode-input-background);
|
|
2691
2726
|
}
|
|
2692
|
-
.tw-self-
|
|
2693
|
-
align-self:
|
|
2727
|
+
.tw-self-center {
|
|
2728
|
+
align-self: center;
|
|
2694
2729
|
}
|
|
2695
2730
|
.tw-self-stretch {
|
|
2696
2731
|
align-self: stretch;
|
|
@@ -3011,6 +3046,9 @@ imported in Sourcegraph shell.
|
|
|
3011
3046
|
.tw-pl-5 {
|
|
3012
3047
|
padding-left: 10px;
|
|
3013
3048
|
}
|
|
3049
|
+
.tw-pl-8 {
|
|
3050
|
+
padding-left: 16px;
|
|
3051
|
+
}
|
|
3014
3052
|
.tw-pr-4 {
|
|
3015
3053
|
padding-right: 8px;
|
|
3016
3054
|
}
|
|
@@ -3111,6 +3149,9 @@ imported in Sourcegraph shell.
|
|
|
3111
3149
|
--tw-text-opacity: 1;
|
|
3112
3150
|
color: rgb(31 41 55 / var(--tw-text-opacity));
|
|
3113
3151
|
}
|
|
3152
|
+
.tw-text-inherit {
|
|
3153
|
+
color: inherit;
|
|
3154
|
+
}
|
|
3114
3155
|
.tw-text-input-foreground {
|
|
3115
3156
|
color: var(--vscode-input-foreground);
|
|
3116
3157
|
}
|
|
@@ -3143,6 +3184,9 @@ imported in Sourcegraph shell.
|
|
|
3143
3184
|
.tw-underline {
|
|
3144
3185
|
text-decoration-line: underline;
|
|
3145
3186
|
}
|
|
3187
|
+
.tw-no-underline {
|
|
3188
|
+
text-decoration-line: none;
|
|
3189
|
+
}
|
|
3146
3190
|
.tw-underline-offset-4 {
|
|
3147
3191
|
text-underline-offset: 4px;
|
|
3148
3192
|
}
|
|
@@ -3553,6 +3597,9 @@ imported in Sourcegraph shell.
|
|
|
3553
3597
|
.hover\:\!tw-bg-button-secondary-background-hover:hover {
|
|
3554
3598
|
background-color: var(--vscode-button-secondaryHoverBackground) !important;
|
|
3555
3599
|
}
|
|
3600
|
+
.hover\:\!tw-bg-transparent:hover {
|
|
3601
|
+
background-color: transparent !important;
|
|
3602
|
+
}
|
|
3556
3603
|
.hover\:tw-bg-accent:hover {
|
|
3557
3604
|
background-color: var(--vscode-list-activeSelectionBackground);
|
|
3558
3605
|
}
|
|
@@ -3648,6 +3695,12 @@ imported in Sourcegraph shell.
|
|
|
3648
3695
|
.tw-group:hover .group-hover\:tw-opacity-100 {
|
|
3649
3696
|
opacity: 1;
|
|
3650
3697
|
}
|
|
3698
|
+
.tw-peer:disabled ~ .peer-disabled\:tw-cursor-not-allowed {
|
|
3699
|
+
cursor: not-allowed;
|
|
3700
|
+
}
|
|
3701
|
+
.tw-peer:disabled ~ .peer-disabled\:tw-opacity-70 {
|
|
3702
|
+
opacity: 0.7;
|
|
3703
|
+
}
|
|
3651
3704
|
.aria-selected\:tw-bg-accent[aria-selected="true"] {
|
|
3652
3705
|
background-color: var(--vscode-list-activeSelectionBackground);
|
|
3653
3706
|
}
|