@sourcegraph/cody-web 0.30.0 → 0.31.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{agent.worker-DFfKh9n_.mjs → agent.worker-f0xW2blH.mjs} +954 -496
- package/dist/agent.worker.js +2 -2
- package/dist/{git-log-mAummXPq.mjs → git-log-lMMNBgcI.mjs} +1 -1
- package/dist/{index-ByWBq8cv.mjs → index-CvHu3t7y.mjs} +2 -2
- package/dist/index.js +590 -533
- package/dist/style.css +163 -68
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/{util-DYm6oJqS.mjs → util-DVisVv7-.mjs} +1 -1
- package/dist/{vscode-shim-D5fSC1mv.mjs → vscode-shim-BMQfq1RF.mjs} +13143 -13148
- package/package.json +4 -4
package/dist/style.css
CHANGED
|
@@ -132,9 +132,24 @@ body:is([data-vscode-theme-kind='vscode-high-contrast'], [data-vscode-theme-kind
|
|
|
132
132
|
html[data-ide=JetBrains] ._template-input-node_14yoh_1 {
|
|
133
133
|
background-color: transparent;
|
|
134
134
|
}
|
|
135
|
-
._popover-
|
|
135
|
+
._popover-container_11l09_1 {
|
|
136
|
+
position: absolute;
|
|
137
|
+
left: 0;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
@media (max-width: 300px) {
|
|
141
|
+
._popover-container_11l09_1 {
|
|
142
|
+
position: relative;
|
|
143
|
+
|
|
144
|
+
--outside-bound-editor-width: 48px;
|
|
145
|
+
min-width: calc(100vw - var(--outside-bound-editor-width));
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
._popover-dimensions_11l09_15 {
|
|
136
150
|
margin-top: 20px; /* show on the line below the cursor */
|
|
137
151
|
width: clamp(300px, 65vw, 440px);
|
|
152
|
+
max-width: 100%;
|
|
138
153
|
|
|
139
154
|
--max-items: 12;
|
|
140
155
|
--mention-item-height: 30px;
|
|
@@ -143,14 +158,16 @@ html[data-ide=JetBrains] ._template-input-node_14yoh_1 {
|
|
|
143
158
|
display: flex;
|
|
144
159
|
align-items: start;
|
|
145
160
|
}
|
|
146
|
-
|
|
161
|
+
|
|
162
|
+
._popover-dimensions_11l09_15 ._popover_11l09_1 {
|
|
147
163
|
flex: 1;
|
|
148
164
|
}
|
|
149
|
-
|
|
165
|
+
|
|
166
|
+
.typeahead-flipped ._popover-dimensions_11l09_15 {
|
|
150
167
|
align-items: end;
|
|
151
168
|
}
|
|
152
169
|
|
|
153
|
-
.
|
|
170
|
+
._popover_11l09_1 {
|
|
154
171
|
overflow: auto;
|
|
155
172
|
background: var(--vscode-sideBar-background);
|
|
156
173
|
color: var(--vscode-sideBar-foreground);
|
|
@@ -435,22 +452,17 @@ img.ProseMirror-separator {
|
|
|
435
452
|
kbd {
|
|
436
453
|
all: unset;
|
|
437
454
|
}
|
|
438
|
-
._buttons-
|
|
455
|
+
._buttons-container_1ok1a_1 {
|
|
439
456
|
display: flex;
|
|
440
457
|
flex-wrap: wrap;
|
|
441
458
|
align-items: center;
|
|
442
|
-
border-style: solid;
|
|
443
|
-
border-width: 1px;
|
|
444
|
-
border-color: var(--vscode-sideBarSectionHeader-border);
|
|
445
|
-
border-bottom-left-radius: 2px;
|
|
446
|
-
border-bottom-right-radius: 2px;
|
|
447
459
|
padding: 4px;
|
|
448
460
|
}
|
|
449
461
|
|
|
450
|
-
.
|
|
462
|
+
._buttons_1ok1a_1 {
|
|
451
463
|
display: flex;
|
|
452
464
|
}
|
|
453
|
-
.
|
|
465
|
+
._button_1ok1a_1 {
|
|
454
466
|
display: flex;
|
|
455
467
|
align-items: center;
|
|
456
468
|
padding: 3px;
|
|
@@ -461,23 +473,23 @@ kbd {
|
|
|
461
473
|
border-radius: var(--button-icon-corner-radius);
|
|
462
474
|
color: var(--foreground);
|
|
463
475
|
}
|
|
464
|
-
.
|
|
476
|
+
._button_1ok1a_1:hover {
|
|
465
477
|
background: var(--button-icon-hover-background);
|
|
466
478
|
outline: 1px dotted var(--contrast-active-border);
|
|
467
479
|
outline-offset: -1px;
|
|
468
480
|
}
|
|
469
|
-
.
|
|
481
|
+
._button_1ok1a_1:not(:first-child) {
|
|
470
482
|
margin-left: 0.25rem;
|
|
471
483
|
}
|
|
472
484
|
|
|
473
|
-
.
|
|
485
|
+
._button_1ok1a_1 ._icon-container_1ok1a_31 {
|
|
474
486
|
margin-right: 0.25rem
|
|
475
487
|
}
|
|
476
488
|
|
|
477
|
-
._copy-
|
|
478
|
-
._insert-
|
|
479
|
-
._attribution-
|
|
480
|
-
.
|
|
489
|
+
._copy-button_1ok1a_35,
|
|
490
|
+
._insert-button_1ok1a_36,
|
|
491
|
+
._attribution-icon_1ok1a_37,
|
|
492
|
+
._status_1ok1a_38 {
|
|
481
493
|
all: unset;
|
|
482
494
|
padding: 3px;
|
|
483
495
|
min-width: 16px; /* Status element needs to be able to expand. */
|
|
@@ -485,60 +497,60 @@ kbd {
|
|
|
485
497
|
background-color: transparent;
|
|
486
498
|
}
|
|
487
499
|
|
|
488
|
-
._copy-
|
|
489
|
-
._insert-
|
|
500
|
+
._copy-button_1ok1a_35,
|
|
501
|
+
._insert-button_1ok1a_36 {
|
|
490
502
|
cursor: pointer;
|
|
491
503
|
background: var(--button-icon-background);
|
|
492
504
|
border-radius: var(--button-icon-corner-radius);
|
|
493
505
|
color: var(--foreground);
|
|
494
506
|
}
|
|
495
|
-
._copy-
|
|
496
|
-
._insert-
|
|
507
|
+
._copy-button_1ok1a_35:hover,
|
|
508
|
+
._insert-button_1ok1a_36:hover {
|
|
497
509
|
background: var(--button-icon-hover-background);
|
|
498
510
|
outline: 1px dotted var(--contrast-active-border);
|
|
499
511
|
outline-offset: -1px;
|
|
500
512
|
}
|
|
501
513
|
|
|
502
|
-
.
|
|
514
|
+
._status_1ok1a_38 {
|
|
503
515
|
font-size: 12px;
|
|
504
516
|
line-height: 1;
|
|
505
517
|
}
|
|
506
518
|
|
|
507
|
-
._metadata-
|
|
519
|
+
._metadata-container_1ok1a_65 {
|
|
508
520
|
display: flex;
|
|
509
521
|
align-items: center;
|
|
510
522
|
margin-left: auto;
|
|
511
523
|
}
|
|
512
524
|
|
|
513
|
-
._metadata-
|
|
525
|
+
._metadata-container_1ok1a_65 > :not(:last-child) {
|
|
514
526
|
margin-right: 0.25rem;
|
|
515
527
|
}
|
|
516
528
|
|
|
517
|
-
._attribution-
|
|
529
|
+
._attribution-container_1ok1a_75 {
|
|
518
530
|
all: unset;
|
|
519
531
|
display: flex;
|
|
520
532
|
margin-left: auto;
|
|
521
533
|
}
|
|
522
534
|
|
|
523
535
|
|
|
524
|
-
._attribution-icon-
|
|
536
|
+
._attribution-icon-unavailable_1ok1a_82 {
|
|
525
537
|
color: var(--hl-orange);
|
|
526
538
|
}
|
|
527
539
|
|
|
528
|
-
._attribution-icon-
|
|
540
|
+
._attribution-icon-found_1ok1a_86 {
|
|
529
541
|
color: var(--hl-dark-red);
|
|
530
542
|
}
|
|
531
543
|
|
|
532
|
-
.
|
|
544
|
+
._status_1ok1a_38 {
|
|
533
545
|
display: flex;
|
|
534
546
|
align-items: center;
|
|
535
547
|
}
|
|
536
548
|
|
|
537
|
-
._codicon-
|
|
538
|
-
animation:
|
|
549
|
+
._codicon-loading_1ok1a_95 {
|
|
550
|
+
animation: _spin_1ok1a_1 1s linear infinite;
|
|
539
551
|
}
|
|
540
552
|
|
|
541
|
-
@keyframes
|
|
553
|
+
@keyframes _spin_1ok1a_1 {
|
|
542
554
|
from { transform: rotate(0deg); }
|
|
543
555
|
to { transform: rotate(360deg); }
|
|
544
556
|
}
|
|
@@ -550,16 +562,16 @@ kbd {
|
|
|
550
562
|
--spacing: 1rem;
|
|
551
563
|
}
|
|
552
564
|
|
|
553
|
-
.
|
|
565
|
+
._content_1ok1a_111 {
|
|
554
566
|
word-break: break-word;
|
|
555
567
|
text-wrap: wrap;
|
|
556
568
|
}
|
|
557
569
|
|
|
558
570
|
/* Style @-file tokens to match TranscriptAction context files */
|
|
559
|
-
.
|
|
560
|
-
.
|
|
561
|
-
.
|
|
562
|
-
.
|
|
571
|
+
._content_1ok1a_111 a[href^="vscode://file"] em,
|
|
572
|
+
._content_1ok1a_111 a[href^="vscode-insiders://file"] em,
|
|
573
|
+
._content_1ok1a_111 a[href^="vscodium://file"] em,
|
|
574
|
+
._content_1ok1a_111 a[href^="cursor://file"] em
|
|
563
575
|
{
|
|
564
576
|
padding: 1px 2px;
|
|
565
577
|
box-sizing: border-box;
|
|
@@ -569,88 +581,88 @@ kbd {
|
|
|
569
581
|
word-break: break-all;
|
|
570
582
|
}
|
|
571
583
|
|
|
572
|
-
.
|
|
584
|
+
._content_1ok1a_111 p {
|
|
573
585
|
word-break: break-word;
|
|
574
586
|
margin-block: 1rem;
|
|
575
587
|
}
|
|
576
588
|
|
|
577
|
-
|
|
589
|
+
/* code block styling */
|
|
590
|
+
._content_1ok1a_111 pre {
|
|
578
591
|
padding: calc(var(--spacing) * 0.5);
|
|
579
592
|
overflow-x: auto;
|
|
580
|
-
border-style: solid;
|
|
581
|
-
border-width: 1px;
|
|
582
|
-
border-color: var(--vscode-sideBarSectionHeader-border);
|
|
583
593
|
border-bottom: none;
|
|
584
594
|
margin: 1rem 0;
|
|
595
|
+
border-radius: 3px;
|
|
596
|
+
border: 1px solid var(--vscode-input-background);
|
|
585
597
|
}
|
|
586
598
|
|
|
587
|
-
.
|
|
588
|
-
.
|
|
599
|
+
._content_1ok1a_111 code,
|
|
600
|
+
._content_1ok1a_111 pre {
|
|
589
601
|
font-family: var(--vscode-editor-font-family);
|
|
590
602
|
font-size: var(--vscode-editor-font-size);
|
|
591
603
|
overflow: auto;
|
|
592
604
|
}
|
|
593
605
|
|
|
594
|
-
.
|
|
595
|
-
.
|
|
606
|
+
._content_1ok1a_111 pre,
|
|
607
|
+
._content_1ok1a_111 pre > code {
|
|
596
608
|
/* Our syntax highlighter emits colors intended for dark backgrounds only. */
|
|
597
609
|
background-color: var(--code-background);
|
|
598
610
|
color: var(--code-foreground);
|
|
599
611
|
margin-bottom: 0;
|
|
600
612
|
}
|
|
601
|
-
body[data-vscode-theme-kind='vscode-light'] .
|
|
602
|
-
body[data-vscode-theme-kind='vscode-light'] .
|
|
613
|
+
body[data-vscode-theme-kind='vscode-light'] ._content_1ok1a_111 pre,
|
|
614
|
+
body[data-vscode-theme-kind='vscode-light'] ._content_1ok1a_111 pre > code {
|
|
603
615
|
/* Our syntax highlighter emits colors intended for dark backgrounds only. */
|
|
604
616
|
background-color: var(--code-background);
|
|
605
617
|
color: var(--code-foreground);
|
|
606
618
|
}
|
|
607
619
|
|
|
608
|
-
.
|
|
609
|
-
.
|
|
610
|
-
.
|
|
611
|
-
.
|
|
612
|
-
.
|
|
613
|
-
.
|
|
620
|
+
._content_1ok1a_111 h1,
|
|
621
|
+
._content_1ok1a_111 h2,
|
|
622
|
+
._content_1ok1a_111 h3,
|
|
623
|
+
._content_1ok1a_111 h4,
|
|
624
|
+
._content_1ok1a_111 h5,
|
|
625
|
+
._content_1ok1a_111 h6 {
|
|
614
626
|
margin: 1.2em 0;
|
|
615
627
|
}
|
|
616
628
|
|
|
617
|
-
.
|
|
629
|
+
._content_1ok1a_111 h1 {
|
|
618
630
|
font-size: 1.15em;
|
|
619
631
|
font-weight: 700;
|
|
620
632
|
}
|
|
621
633
|
|
|
622
|
-
.
|
|
634
|
+
._content_1ok1a_111 h2 {
|
|
623
635
|
font-size: 1.1em;
|
|
624
636
|
font-weight: 700;
|
|
625
637
|
}
|
|
626
638
|
|
|
627
|
-
.
|
|
639
|
+
._content_1ok1a_111 h3 {
|
|
628
640
|
font-size: inherit;
|
|
629
641
|
font-weight: 700;
|
|
630
642
|
}
|
|
631
643
|
|
|
632
|
-
.
|
|
633
|
-
.
|
|
634
|
-
.
|
|
644
|
+
._content_1ok1a_111 h4,
|
|
645
|
+
._content_1ok1a_111 h5,
|
|
646
|
+
._content_1ok1a_111 h6 {
|
|
635
647
|
font-size: inherit;
|
|
636
648
|
font-weight: 600;
|
|
637
649
|
}
|
|
638
650
|
|
|
639
|
-
.
|
|
651
|
+
._content_1ok1a_111 > *:first-child {
|
|
640
652
|
margin-top: 0;
|
|
641
653
|
}
|
|
642
654
|
|
|
643
|
-
.
|
|
655
|
+
._content_1ok1a_111 > *:last-child {
|
|
644
656
|
margin-bottom: 0;
|
|
645
657
|
}
|
|
646
658
|
|
|
647
|
-
.
|
|
659
|
+
._content_1ok1a_111 ul, ._content_1ok1a_111 ol {
|
|
648
660
|
margin-block: 1rem;
|
|
649
661
|
padding-inline-start: 2rem;
|
|
650
662
|
list-style: revert;
|
|
651
663
|
}
|
|
652
664
|
|
|
653
|
-
._file-name-
|
|
665
|
+
._file-name-container_1ok1a_211 {
|
|
654
666
|
color: var(--vscode-descriptionForeground);
|
|
655
667
|
margin-left: auto;
|
|
656
668
|
}
|
|
@@ -2503,6 +2515,34 @@ imported in Sourcegraph shell.
|
|
|
2503
2515
|
since they will conflict with any possible reset/global
|
|
2504
2516
|
styles in consumer. See @mixin reset-styles for more details
|
|
2505
2517
|
*/
|
|
2518
|
+
.tw-container {
|
|
2519
|
+
width: 100%;
|
|
2520
|
+
}
|
|
2521
|
+
@media (min-width: 640px) {
|
|
2522
|
+
.tw-container {
|
|
2523
|
+
max-width: 640px;
|
|
2524
|
+
}
|
|
2525
|
+
}
|
|
2526
|
+
@media (min-width: 768px) {
|
|
2527
|
+
.tw-container {
|
|
2528
|
+
max-width: 768px;
|
|
2529
|
+
}
|
|
2530
|
+
}
|
|
2531
|
+
@media (min-width: 1024px) {
|
|
2532
|
+
.tw-container {
|
|
2533
|
+
max-width: 1024px;
|
|
2534
|
+
}
|
|
2535
|
+
}
|
|
2536
|
+
@media (min-width: 1280px) {
|
|
2537
|
+
.tw-container {
|
|
2538
|
+
max-width: 1280px;
|
|
2539
|
+
}
|
|
2540
|
+
}
|
|
2541
|
+
@media (min-width: 1536px) {
|
|
2542
|
+
.tw-container {
|
|
2543
|
+
max-width: 1536px;
|
|
2544
|
+
}
|
|
2545
|
+
}
|
|
2506
2546
|
.tw-pointer-events-none {
|
|
2507
2547
|
pointer-events: none;
|
|
2508
2548
|
}
|
|
@@ -2567,6 +2607,10 @@ imported in Sourcegraph shell.
|
|
|
2567
2607
|
margin-left: 4px;
|
|
2568
2608
|
margin-right: 4px;
|
|
2569
2609
|
}
|
|
2610
|
+
.tw-mx-4 {
|
|
2611
|
+
margin-left: 8px;
|
|
2612
|
+
margin-right: 8px;
|
|
2613
|
+
}
|
|
2570
2614
|
.tw-my-2 {
|
|
2571
2615
|
margin-top: 4px;
|
|
2572
2616
|
margin-bottom: 4px;
|
|
@@ -2598,6 +2642,9 @@ imported in Sourcegraph shell.
|
|
|
2598
2642
|
.tw-mb-5 {
|
|
2599
2643
|
margin-bottom: 10px;
|
|
2600
2644
|
}
|
|
2645
|
+
.tw-mb-7 {
|
|
2646
|
+
margin-bottom: 1.75rem;
|
|
2647
|
+
}
|
|
2601
2648
|
.tw-mb-8 {
|
|
2602
2649
|
margin-bottom: 16px;
|
|
2603
2650
|
}
|
|
@@ -2682,6 +2729,9 @@ imported in Sourcegraph shell.
|
|
|
2682
2729
|
.tw-inline-block {
|
|
2683
2730
|
display: inline-block;
|
|
2684
2731
|
}
|
|
2732
|
+
.tw-inline {
|
|
2733
|
+
display: inline;
|
|
2734
|
+
}
|
|
2685
2735
|
.tw-flex {
|
|
2686
2736
|
display: flex;
|
|
2687
2737
|
}
|
|
@@ -2772,9 +2822,6 @@ imported in Sourcegraph shell.
|
|
|
2772
2822
|
.tw-max-h-full {
|
|
2773
2823
|
max-height: 100%;
|
|
2774
2824
|
}
|
|
2775
|
-
.tw-min-h-10 {
|
|
2776
|
-
min-height: 20px;
|
|
2777
|
-
}
|
|
2778
2825
|
.\!tw-w-fit {
|
|
2779
2826
|
width: fit-content !important;
|
|
2780
2827
|
}
|
|
@@ -2868,6 +2915,9 @@ imported in Sourcegraph shell.
|
|
|
2868
2915
|
.tw-max-w-md {
|
|
2869
2916
|
max-width: 28rem;
|
|
2870
2917
|
}
|
|
2918
|
+
.tw-max-w-none {
|
|
2919
|
+
max-width: none;
|
|
2920
|
+
}
|
|
2871
2921
|
.tw-flex-1 {
|
|
2872
2922
|
flex: 1 1 0%;
|
|
2873
2923
|
}
|
|
@@ -2904,6 +2954,14 @@ imported in Sourcegraph shell.
|
|
|
2904
2954
|
.tw-transform {
|
|
2905
2955
|
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));
|
|
2906
2956
|
}
|
|
2957
|
+
@keyframes tw-pulse {
|
|
2958
|
+
50% {
|
|
2959
|
+
opacity: .5;
|
|
2960
|
+
}
|
|
2961
|
+
}
|
|
2962
|
+
.tw-animate-pulse {
|
|
2963
|
+
animation: tw-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
2964
|
+
}
|
|
2907
2965
|
@keyframes tw-spin {
|
|
2908
2966
|
to {
|
|
2909
2967
|
transform: rotate(360deg);
|
|
@@ -3136,6 +3194,9 @@ imported in Sourcegraph shell.
|
|
|
3136
3194
|
.tw-border-button-border {
|
|
3137
3195
|
border-color: var(--vscode-button-border, transparent);
|
|
3138
3196
|
}
|
|
3197
|
+
.tw-border-gray-500\/20 {
|
|
3198
|
+
border-color: rgb(107 114 128 / 0.2);
|
|
3199
|
+
}
|
|
3139
3200
|
.tw-border-input-border {
|
|
3140
3201
|
border-color: var(--vscode-input-border);
|
|
3141
3202
|
}
|
|
@@ -3198,6 +3259,9 @@ imported in Sourcegraph shell.
|
|
|
3198
3259
|
.tw-bg-button-secondary-background-hover {
|
|
3199
3260
|
background-color: var(--vscode-button-secondaryHoverBackground);
|
|
3200
3261
|
}
|
|
3262
|
+
.tw-bg-gray-100\/50 {
|
|
3263
|
+
background-color: rgb(243 244 246 / 0.5);
|
|
3264
|
+
}
|
|
3201
3265
|
.tw-bg-gray-900 {
|
|
3202
3266
|
--tw-bg-opacity: 1;
|
|
3203
3267
|
background-color: rgb(17 24 39 / var(--tw-bg-opacity));
|
|
@@ -3456,6 +3520,10 @@ imported in Sourcegraph shell.
|
|
|
3456
3520
|
font-size: 1rem;
|
|
3457
3521
|
line-height: 1.5rem;
|
|
3458
3522
|
}
|
|
3523
|
+
.tw-text-base\/7 {
|
|
3524
|
+
font-size: 1rem;
|
|
3525
|
+
line-height: 1.75rem;
|
|
3526
|
+
}
|
|
3459
3527
|
.tw-text-lg {
|
|
3460
3528
|
font-size: calc(var(--vscode-font-size) * 15 / 13);
|
|
3461
3529
|
}
|
|
@@ -3501,6 +3569,9 @@ imported in Sourcegraph shell.
|
|
|
3501
3569
|
.tw-leading-none {
|
|
3502
3570
|
line-height: 1;
|
|
3503
3571
|
}
|
|
3572
|
+
.tw-leading-relaxed {
|
|
3573
|
+
line-height: 1.625;
|
|
3574
|
+
}
|
|
3504
3575
|
.tw-leading-tight {
|
|
3505
3576
|
line-height: 1.25;
|
|
3506
3577
|
}
|
|
@@ -3536,6 +3607,10 @@ imported in Sourcegraph shell.
|
|
|
3536
3607
|
--tw-text-opacity: 1;
|
|
3537
3608
|
color: rgb(209 213 219 / var(--tw-text-opacity));
|
|
3538
3609
|
}
|
|
3610
|
+
.tw-text-gray-600 {
|
|
3611
|
+
--tw-text-opacity: 1;
|
|
3612
|
+
color: rgb(75 85 99 / var(--tw-text-opacity));
|
|
3613
|
+
}
|
|
3539
3614
|
.tw-text-gray-800 {
|
|
3540
3615
|
--tw-text-opacity: 1;
|
|
3541
3616
|
color: rgb(31 41 55 / var(--tw-text-opacity));
|
|
@@ -3649,6 +3724,10 @@ imported in Sourcegraph shell.
|
|
|
3649
3724
|
.tw-ring-offset-background {
|
|
3650
3725
|
--tw-ring-offset-color: var(--vscode-editor-background);
|
|
3651
3726
|
}
|
|
3727
|
+
.tw-backdrop-blur-sm {
|
|
3728
|
+
--tw-backdrop-blur: blur(4px);
|
|
3729
|
+
backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
|
|
3730
|
+
}
|
|
3652
3731
|
.tw-transition {
|
|
3653
3732
|
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
3654
3733
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
@@ -4063,6 +4142,9 @@ imported in Sourcegraph shell.
|
|
|
4063
4142
|
.hover\:tw-bg-button-secondary-background-hover:hover {
|
|
4064
4143
|
background-color: var(--vscode-button-secondaryHoverBackground);
|
|
4065
4144
|
}
|
|
4145
|
+
.hover\:tw-bg-gray-200\/50:hover {
|
|
4146
|
+
background-color: rgb(229 231 235 / 0.5);
|
|
4147
|
+
}
|
|
4066
4148
|
.hover\:tw-bg-green-900:hover {
|
|
4067
4149
|
--tw-bg-opacity: 1;
|
|
4068
4150
|
background-color: rgb(20 83 45 / var(--tw-bg-opacity));
|
|
@@ -4305,6 +4387,19 @@ imported in Sourcegraph shell.
|
|
|
4305
4387
|
.dark\:tw-hidden {
|
|
4306
4388
|
display: none;
|
|
4307
4389
|
}
|
|
4390
|
+
.dark\:tw-border-gray-600\/40 {
|
|
4391
|
+
border-color: rgb(75 85 99 / 0.4);
|
|
4392
|
+
}
|
|
4393
|
+
.dark\:tw-bg-gray-800\/80 {
|
|
4394
|
+
background-color: rgb(31 41 55 / 0.8);
|
|
4395
|
+
}
|
|
4396
|
+
.dark\:tw-text-gray-300 {
|
|
4397
|
+
--tw-text-opacity: 1;
|
|
4398
|
+
color: rgb(209 213 219 / var(--tw-text-opacity));
|
|
4399
|
+
}
|
|
4400
|
+
.dark\:hover\:tw-bg-gray-700\/50:hover {
|
|
4401
|
+
background-color: rgb(55 65 81 / 0.5);
|
|
4402
|
+
}
|
|
4308
4403
|
}
|
|
4309
4404
|
.\[\&\:not\(\:last-child\)\]\:tw-border-b:not(:last-child) {
|
|
4310
4405
|
border-bottom-width: 1px;
|