@sourcegraph/cody-web 0.13.0 → 0.16.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/style.css CHANGED
@@ -282,6 +282,67 @@ kbd {
282
282
  ._range_1dh30_28 {
283
283
  color: var(--vscode-disabledForeground);
284
284
  }
285
+ ._accordion-trigger_12003_1 {
286
+ display: flex;
287
+ gap: 0.25rem;
288
+ align-items: center;
289
+ justify-content: space-between;
290
+ transition-property: all;
291
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
292
+ transition-duration: 150ms;
293
+ }
294
+
295
+ ._accordion-trigger_12003_1[data-state="open"] ._accordion-trigger-chevron_12003_11 {
296
+ transform: rotate(90deg);
297
+ }
298
+
299
+ ._accordion-trigger-chevron_12003_11 {
300
+ flex-shrink: 0; /* tw-shrink-0 */
301
+ transition-property: transform; /* tw-transition-transform */
302
+ transition-duration: 150ms; /* tw-duration-150 */
303
+ }
304
+ ._dots-holder_10c80_1 {
305
+ display: flex;
306
+ gap: 0.2rem;
307
+ margin: 0.5rem 0;
308
+ margin-left: 0.25rem;
309
+ }
310
+
311
+ ._dot_10c80_1 {
312
+ animation: 1s _flash_10c80_1 0.5s infinite;
313
+ width: 0.25rem !important;
314
+ height: 0.25rem !important;
315
+ border-radius: 100%;
316
+ background-color: var(--vscode-input-foreground);
317
+ opacity: 0.25;
318
+ }
319
+
320
+ body[data-vscode-theme-kind='vscode-light'] ._dot_10c80_1,
321
+ body[data-vscode-theme-kind='vscode-high-contrast-light'] ._dot_10c80_1 {
322
+ background-color: black;
323
+ }
324
+
325
+ ._dot_10c80_1:nth-child(2) {
326
+ animation-delay: 0.6s;
327
+ }
328
+
329
+ ._dot_10c80_1:nth-child(3) {
330
+ animation-delay: 0.7s;
331
+ }
332
+
333
+ @keyframes _flash_10c80_1 {
334
+ from {
335
+ opacity: 1;
336
+ }
337
+
338
+ 50% {
339
+ opacity: 1;
340
+ }
341
+
342
+ to {
343
+ opacity: 0.25;
344
+ }
345
+ }
285
346
  :root {
286
347
  --code-font-size: #{(12/14)}em;
287
348
  --code-font-family: sfmono-regular, consolas, menlo, dejavu sans mono, monospace;
@@ -481,114 +542,6 @@ kbd {
481
542
  overflow-x: auto;
482
543
  background-color: var(--code-background);
483
544
  }
484
-
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
- }
489
- ._root_15z33_1 {
490
- display: flex;
491
- flex-direction: column;
492
- gap: 0.25rem;
493
- }
494
-
495
- ._link-container_15z33_7 {
496
- display: inline-flex;
497
- padding: 2px 4px 2px 2px;
498
- min-width: 0;
499
- }
500
-
501
- ._header_15z33_13 {
502
- display: flex;
503
- gap: 0.25rem;
504
- align-items: center;
505
- }
506
-
507
- ._context-item-link_15z33_19 {
508
- background: none;
509
- border: none;
510
- color: var(--vscode-textLink-foreground);
511
- font-size: inherit;
512
- padding: 0;
513
- margin: 0;
514
- text-align: left;
515
- font-weight: normal;
516
- display: flex;
517
- align-items: center;
518
- gap: 0.125rem;
519
- overflow: hidden;
520
- }
521
-
522
- /* In light high contrast, --vscode-textLink-foreground provides little
523
- contrast; instead inherit the --code-foreground color from the container. */
524
- body[data-vscode-theme-kind='vscode-high-contrast-light'] ._context-item-link_15z33_19 {
525
- color: inherit;
526
- }
527
-
528
- ._code-block_15z33_40 {
529
- margin-bottom: 0.25rem;
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
- }
550
- ._dots-holder_10c80_1 {
551
- display: flex;
552
- gap: 0.2rem;
553
- margin: 0.5rem 0;
554
- margin-left: 0.25rem;
555
- }
556
-
557
- ._dot_10c80_1 {
558
- animation: 1s _flash_10c80_1 0.5s infinite;
559
- width: 0.25rem !important;
560
- height: 0.25rem !important;
561
- border-radius: 100%;
562
- background-color: var(--vscode-input-foreground);
563
- opacity: 0.25;
564
- }
565
-
566
- body[data-vscode-theme-kind='vscode-light'] ._dot_10c80_1,
567
- body[data-vscode-theme-kind='vscode-high-contrast-light'] ._dot_10c80_1 {
568
- background-color: black;
569
- }
570
-
571
- ._dot_10c80_1:nth-child(2) {
572
- animation-delay: 0.6s;
573
- }
574
-
575
- ._dot_10c80_1:nth-child(3) {
576
- animation-delay: 0.7s;
577
- }
578
-
579
- @keyframes _flash_10c80_1 {
580
- from {
581
- opacity: 1;
582
- }
583
-
584
- 50% {
585
- opacity: 1;
586
- }
587
-
588
- to {
589
- opacity: 0.25;
590
- }
591
- }
592
545
  ._buttons-container_1kf9a_1 {
593
546
  display: flex;
594
547
  flex-wrap: wrap;
@@ -978,37 +931,96 @@ body[data-vscode-theme-kind='vscode-light'] ._content_1kf9a_116 pre > code {
978
931
  align-items: center;
979
932
  gap: calc(var(--spacing) / 4);
980
933
  }
981
- ._context-item_id10a_1 {
982
- display: inline-flex;
983
- padding: 2px 4px 2px 2px;
934
+ ._info-message_1hay9_1 {
935
+ --mention-color-opacity: 70%;
936
+
937
+ border: 1px solid
938
+ color-mix(
939
+ in lch,
940
+ var(--vscode-inputOption-activeBackground)
941
+ calc(1.2 * var(--mention-color-opacity)),
942
+ transparent
943
+ );
944
+ background-color: color-mix(
945
+ in lch,
946
+ var(--vscode-inputOption-activeBackground) var(--mention-color-opacity),
947
+ transparent
948
+ );
949
+ word-break: break-word;
950
+ }
951
+ ._context-item_1qxrh_1 {
952
+ display: inline-flex;
953
+ padding: 2px 4px 2px 2px;
984
954
  }
985
955
 
986
- ._context-item-metadata_id10a_6 {
987
- color: var(--vscode-disabledForeground);
988
- padding-left: 0.1rem;
989
- text-wrap: nowrap;
956
+ ._context-item-metadata_1qxrh_6 {
957
+ color: var(--vscode-disabledForeground);
958
+ padding-left: 0.1rem;
959
+ text-wrap: nowrap;
990
960
  }
991
961
 
992
- ._context-item-edit-button_id10a_12 {
993
- /* display: flex; */
994
- display: none;
995
- align-items: center;
962
+ ._context-item-edit-button_1qxrh_12 {
963
+ /* display: flex; */
964
+ display: none;
965
+ align-items: center;
996
966
 
997
- flex-wrap: nowrap;
967
+ flex-wrap: nowrap;
968
+ }
998
969
 
970
+ ._context-item-edit-button-icon_1qxrh_20 {
971
+ height: 20%;
972
+ margin-right: 0.5rem;
999
973
  }
1000
974
 
1001
- ._context-item-edit-button-icon_id10a_21 {
1002
- height: 20%;
1003
- margin-right: 0.5rem;
975
+ ._context-suggested-actions_1qxrh_25 {
976
+ display: flex;
977
+ flex-wrap: wrap;
978
+ gap: 0.25rem;
1004
979
  }
1005
980
 
1006
- ._context-suggested-actions_id10a_26 {
1007
- display: flex;
1008
- flex-wrap: wrap;
1009
- gap: 0.25rem;
981
+ ._root_1qxrh_31 {
982
+ display: flex;
983
+ flex-direction: column;
984
+ gap: 0.25rem;
985
+ }
986
+
987
+ ._link-container_1qxrh_37 {
988
+ display: inline-flex;
989
+ padding: 2px 4px 2px 2px;
990
+ min-width: 0;
1010
991
  }
1011
- ._user-avatar_1ll2x_1 {
992
+
993
+ ._header_1qxrh_43 {
994
+ display: flex;
995
+ gap: 0.25rem;
996
+ align-items: center;
997
+ }
998
+
999
+ ._context-item-link_1qxrh_49 {
1000
+ background: none;
1001
+ border: none;
1002
+ color: var(--vscode-textLink-foreground);
1003
+ font-size: inherit;
1004
+ padding: 0;
1005
+ margin: 0;
1006
+ text-align: left;
1007
+ font-weight: normal;
1008
+ display: flex;
1009
+ align-items: center;
1010
+ gap: 0.125rem;
1011
+ overflow: hidden;
1012
+ }
1013
+
1014
+ /* In light high contrast, --vscode-textLink-foreground provides little
1015
+ contrast; instead inherit the --code-foreground color from the container. */
1016
+ body[data-vscode-theme-kind='vscode-high-contrast-light'] ._context-item-link_1qxrh_49 {
1017
+ color: inherit;
1018
+ }
1019
+
1020
+ ._code-block_1qxrh_70 {
1021
+ margin-bottom: 0.25rem;
1022
+ }
1023
+ ._user-avatar_1gba8_1 {
1012
1024
  isolation: isolate;
1013
1025
  display: inline-flex;
1014
1026
  border-radius: 50%;
@@ -1016,16 +1028,29 @@ body[data-vscode-theme-kind='vscode-light'] ._content_1kf9a_116 pre > code {
1016
1028
  color: var(--vscode-inputOption-activeForeground);
1017
1029
  align-items: center;
1018
1030
  justify-content: center;
1031
+ width: auto;
1019
1032
  height: 100%;
1033
+ max-height: 24px;
1020
1034
  }
1021
1035
 
1022
- ._sourcegraph-gradient-border_1ll2x_12 {
1036
+ ._sourcegraph-gradient-border_1gba8_14 {
1023
1037
  --gradient-border-width: 1px;
1024
1038
 
1025
1039
  border-radius: 50%;
1026
1040
  padding: 1px;
1027
1041
  background-clip: padding-box;
1028
- background-image: linear-gradient(180deg, #00CBEC 0%, #A112FF 50%, #FF5543 100%);
1042
+ background-image: linear-gradient(
1043
+ 180deg,
1044
+ #00cbec 0%,
1045
+ #a112ff 50%,
1046
+ #ff5543 100%
1047
+ );
1048
+
1049
+ align-items: center;
1050
+ justify-content: center;
1051
+
1052
+ width: fit-content;
1053
+ height: fit-content;
1029
1054
  }
1030
1055
 
1031
1056
  ._item_1mbcc_2 {
@@ -1302,6 +1327,11 @@ body[data-vscode-theme-kind='vscode-light'] ._content_1kf9a_116 pre > code {
1302
1327
  ._editor-content-editable_1eiqs_30 {
1303
1328
  min-height: 3lh;
1304
1329
  }
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
+ }
1305
1335
  :root {
1306
1336
  --toolbar-button-font-size: 12px;
1307
1337
  }
@@ -1442,24 +1472,24 @@ button > ._model-title-with-icon_1bw6t_1 ._badge_1bw6t_35 {
1442
1472
  Root element which only exists to use container query
1443
1473
  for changing header tabs layout.
1444
1474
  */
1445
- ._tabs-root_a1f96_10 {
1475
+ ._tabs-root_ild96_10 {
1446
1476
  container-type: inline-size;
1447
1477
  container-name: tabs-container;
1448
1478
  isolation: isolate;
1479
+ z-index: 1;
1449
1480
  }
1450
1481
 
1451
- ._tabs-container_a1f96_16 {
1482
+ ._tabs-container_ild96_17 {
1452
1483
  display: flex;
1453
1484
  width: 100%;
1454
1485
  padding: 0;
1455
1486
  flex-direction: column;
1456
1487
  justify-content: space-between;
1457
- position: sticky;
1458
1488
  border-bottom: 1px solid var(--vscode-dropdown-border);
1459
1489
  background-color: var(--vscode-sideBar-background);
1460
1490
  }
1461
1491
 
1462
- ._tabs_a1f96_10 {
1492
+ ._tabs_ild96_10 {
1463
1493
  display: flex;
1464
1494
  flex-shrink: 0;
1465
1495
  gap: 2px;
@@ -1468,22 +1498,27 @@ button > ._model-title-with-icon_1bw6t_1 ._badge_1bw6t_35 {
1468
1498
  border-bottom: 1px solid var(--vscode-dropdown-border);
1469
1499
  }
1470
1500
 
1471
- ._tabs_a1f96_10 > * {
1501
+ ._tabs_ild96_10 > * {
1472
1502
  flex-shrink: 0;
1473
1503
  }
1474
1504
 
1475
- ._sub-tabs_a1f96_40 {
1505
+ ._sub-tabs_ild96_40 {
1476
1506
  display: flex;
1477
1507
  flex-shrink: 0;
1478
1508
  gap: 8px;
1479
1509
  padding: 0 8px;
1480
1510
  }
1481
1511
 
1482
- ._sub-tabs_a1f96_40 > * {
1512
+ ._sub-tabs_ild96_40 > * {
1483
1513
  flex-shrink: 0;
1484
1514
  }
1485
1515
 
1486
- ._tab-action-label_a1f96_51 {
1516
+ ._sub-tabs_ild96_40 > button,
1517
+ ._sub-tabs_ild96_40 > a {
1518
+ padding: 8px;
1519
+ }
1520
+
1521
+ ._tab-action-label_ild96_56 {
1487
1522
  display: inline;
1488
1523
  }
1489
1524
 
@@ -1495,25 +1530,25 @@ button > ._model-title-with-icon_1bw6t_1 ._badge_1bw6t_35 {
1495
1530
  this override)
1496
1531
  */
1497
1532
  @container tabs-container (width < 575px) {
1498
- ._tabs-root_a1f96_10:not(._tabs-root--cody-web_a1f96_63) ._tab-action-label_a1f96_51 {
1533
+ ._tabs-root_ild96_10:not(._tabs-root--cody-web_ild96_68) ._tab-action-label_ild96_56 {
1499
1534
  display: none;
1500
1535
  }
1501
1536
  }
1502
1537
 
1503
1538
  /* Special override for Cody Web tabs */
1504
1539
  @container tabs-container (width < 375px) {
1505
- ._tabs-root--cody-web_a1f96_63 ._tab-action-label_a1f96_51 {
1540
+ ._tabs-root--cody-web_ild96_68 ._tab-action-label_ild96_56 {
1506
1541
  display: none;
1507
1542
  }
1508
1543
  }
1509
1544
 
1510
- ._dialog-overlay_a1f96_1 {
1545
+ ._dialog-overlay_ild96_1 {
1511
1546
  inset: 0;
1512
1547
  position: fixed;
1513
1548
  background-color: var(--vscode-overlay-background);
1514
1549
  }
1515
1550
 
1516
- ._dialog-content_a1f96_1 {
1551
+ ._dialog-content_ild96_1 {
1517
1552
  width: 90vw;
1518
1553
  max-width: 450px;
1519
1554
  max-height: 85vh;
@@ -1524,38 +1559,34 @@ button > ._model-title-with-icon_1bw6t_1 ._badge_1bw6t_35 {
1524
1559
  padding: 25px;
1525
1560
  border-radius: 6px;
1526
1561
  background-color: var(--vscode-modal-background);
1527
- box-shadow: hsl(206deg 22% 7% / 35%) 0 10px 38px -10px, hsl(206deg 22% 7% / 20%) 0 10px 20px -15px;
1562
+ box-shadow:
1563
+ hsl(206deg 22% 7% / 35%) 0 10px 38px -10px,
1564
+ hsl(206deg 22% 7% / 20%) 0 10px 20px -15px;
1528
1565
  }
1529
1566
 
1530
- ._dialog-content_a1f96_1:focus {
1567
+ ._dialog-content_ild96_1:focus {
1531
1568
  outline: none;
1532
1569
  }
1533
1570
 
1534
- ._dialog-title_a1f96_1 {
1571
+ ._dialog-title_ild96_1 {
1535
1572
  margin: 0;
1536
1573
  font-weight: 500;
1537
1574
  font-size: 17px;
1538
1575
  }
1539
1576
 
1540
- ._dialog-description_a1f96_1 {
1577
+ ._dialog-description_ild96_1 {
1541
1578
  margin: 10px 0 20px;
1542
1579
  font-size: 15px;
1543
1580
  line-height: 1.5;
1544
1581
  }
1545
1582
 
1546
- ._dialog-footer_a1f96_1 {
1583
+ ._dialog-footer_ild96_1 {
1547
1584
  margin-top: 1.5rem;
1548
1585
  width: 100%;
1549
1586
  display: flex;
1550
1587
  justify-content: flex-end;
1551
1588
  gap: 0.5rem;
1552
1589
  }
1553
- ._info-message_6yx2w_1 {
1554
- --mention-color-opacity: 70%;
1555
-
1556
- border: 1px solid color-mix(in lch, var(--vscode-inputOption-activeBackground) calc(1.2* var(--mention-color-opacity)), transparent);
1557
- background-color: color-mix(in lch, var(--vscode-inputOption-activeBackground) var(--mention-color-opacity), transparent);
1558
- }
1559
1590
  ._chat-disabled_rc7no_1 {
1560
1591
  text-align: center;
1561
1592
  padding: 0.5rem 0.25rem;
@@ -2216,9 +2247,6 @@ imported in Sourcegraph shell.
2216
2247
  since they will conflict with any possible reset/global
2217
2248
  styles in consumer. See @mixin reset-styles for more details
2218
2249
  */
2219
- .tw-invisible {
2220
- visibility: hidden;
2221
- }
2222
2250
  .tw-absolute {
2223
2251
  position: absolute;
2224
2252
  }
@@ -2240,6 +2268,12 @@ imported in Sourcegraph shell.
2240
2268
  .tw-left-\[5\.5px\] {
2241
2269
  left: 5.5px;
2242
2270
  }
2271
+ .tw-right-2 {
2272
+ right: 4px;
2273
+ }
2274
+ .tw-top-2 {
2275
+ top: 4px;
2276
+ }
2243
2277
  .tw-top-\[0px\] {
2244
2278
  top: 0px;
2245
2279
  }
@@ -2252,15 +2286,22 @@ imported in Sourcegraph shell.
2252
2286
  .tw-col-span-4 {
2253
2287
  grid-column: span 4 / span 4;
2254
2288
  }
2289
+ .tw-m-2 {
2290
+ margin: 4px;
2291
+ }
2255
2292
  .tw-m-4 {
2256
2293
  margin: 8px;
2257
2294
  }
2258
2295
  .tw-m-5 {
2259
2296
  margin: 10px;
2260
2297
  }
2261
- .tw--mx-2 {
2262
- margin-left: -4px;
2263
- margin-right: -4px;
2298
+ .tw-mx-2 {
2299
+ margin-left: 4px;
2300
+ margin-right: 4px;
2301
+ }
2302
+ .tw-mx-4 {
2303
+ margin-left: 8px;
2304
+ margin-right: 8px;
2264
2305
  }
2265
2306
  .tw-my-2 {
2266
2307
  margin-top: 4px;
@@ -2270,8 +2311,8 @@ imported in Sourcegraph shell.
2270
2311
  margin-top: 8px;
2271
2312
  margin-bottom: 8px;
2272
2313
  }
2273
- .tw-mb-0 {
2274
- margin-bottom: 0px;
2314
+ .tw-mb-10 {
2315
+ margin-bottom: 20px;
2275
2316
  }
2276
2317
  .tw-mb-2 {
2277
2318
  margin-bottom: 4px;
@@ -2285,18 +2326,21 @@ imported in Sourcegraph shell.
2285
2326
  .tw-mb-5 {
2286
2327
  margin-bottom: 10px;
2287
2328
  }
2288
- .tw-mb-6 {
2289
- margin-bottom: 12px;
2290
- }
2291
2329
  .tw-mb-8 {
2292
2330
  margin-bottom: 16px;
2293
2331
  }
2332
+ .tw-mb-\[10\%\] {
2333
+ margin-bottom: 10%;
2334
+ }
2294
2335
  .tw-ml-1 {
2295
2336
  margin-left: 2px;
2296
2337
  }
2297
2338
  .tw-ml-2 {
2298
2339
  margin-left: 4px;
2299
2340
  }
2341
+ .tw-ml-4 {
2342
+ margin-left: 8px;
2343
+ }
2300
2344
  .tw-ml-auto {
2301
2345
  margin-left: auto;
2302
2346
  }
@@ -2306,15 +2350,15 @@ imported in Sourcegraph shell.
2306
2350
  .tw-mr-2 {
2307
2351
  margin-right: 4px;
2308
2352
  }
2353
+ .tw-mr-3 {
2354
+ margin-right: 6px;
2355
+ }
2309
2356
  .tw-mt-0 {
2310
2357
  margin-top: 0px;
2311
2358
  }
2312
2359
  .tw-mt-0\.5 {
2313
2360
  margin-top: 0.125rem;
2314
2361
  }
2315
- .tw-mt-1 {
2316
- margin-top: 2px;
2317
- }
2318
2362
  .tw-mt-2 {
2319
2363
  margin-top: 4px;
2320
2364
  }
@@ -2330,6 +2374,9 @@ imported in Sourcegraph shell.
2330
2374
  .tw-mt-6 {
2331
2375
  margin-top: 12px;
2332
2376
  }
2377
+ .tw-mt-8 {
2378
+ margin-top: 16px;
2379
+ }
2333
2380
  .tw-mt-\[-1px\] {
2334
2381
  margin-top: -1px;
2335
2382
  }
@@ -2361,6 +2408,9 @@ imported in Sourcegraph shell.
2361
2408
  .tw-h-\[1\.375rem\] {
2362
2409
  height: 1.375rem;
2363
2410
  }
2411
+ .tw-h-\[16px\] {
2412
+ height: 16px;
2413
+ }
2364
2414
  .tw-h-\[18px\] {
2365
2415
  height: 18px;
2366
2416
  }
@@ -2379,6 +2429,9 @@ imported in Sourcegraph shell.
2379
2429
  .tw-h-\[7px\] {
2380
2430
  height: 7px;
2381
2431
  }
2432
+ .tw-h-auto {
2433
+ height: auto;
2434
+ }
2382
2435
  .tw-h-full {
2383
2436
  height: 100%;
2384
2437
  }
@@ -2400,8 +2453,11 @@ imported in Sourcegraph shell.
2400
2453
  .tw-max-h-fit {
2401
2454
  max-height: fit-content;
2402
2455
  }
2403
- .\!tw-w-auto {
2404
- width: auto !important;
2456
+ .\!tw-w-fit {
2457
+ width: fit-content !important;
2458
+ }
2459
+ .tw-w-4 {
2460
+ width: 8px;
2405
2461
  }
2406
2462
  .tw-w-72 {
2407
2463
  width: 18rem;
@@ -2430,6 +2486,9 @@ imported in Sourcegraph shell.
2430
2486
  .tw-w-\[30px\] {
2431
2487
  width: 30px;
2432
2488
  }
2489
+ .tw-w-\[350px\] {
2490
+ width: 350px;
2491
+ }
2433
2492
  .tw-w-\[75vw\] {
2434
2493
  width: 75vw;
2435
2494
  }
@@ -2439,6 +2498,9 @@ imported in Sourcegraph shell.
2439
2498
  .tw-w-\[unset\] {
2440
2499
  width: unset;
2441
2500
  }
2501
+ .tw-w-auto {
2502
+ width: auto;
2503
+ }
2442
2504
  .tw-w-fit {
2443
2505
  width: fit-content;
2444
2506
  }
@@ -2457,9 +2519,6 @@ imported in Sourcegraph shell.
2457
2519
  .tw-max-w-72 {
2458
2520
  max-width: 18rem;
2459
2521
  }
2460
- .tw-max-w-\[200px\] {
2461
- max-width: 200px;
2462
- }
2463
2522
  .tw-max-w-\[550px\] {
2464
2523
  max-width: 550px;
2465
2524
  }
@@ -2517,6 +2576,9 @@ imported in Sourcegraph shell.
2517
2576
  .tw-animate-spin {
2518
2577
  animation: tw-spin 1s linear infinite;
2519
2578
  }
2579
+ .tw-cursor-default {
2580
+ cursor: default;
2581
+ }
2520
2582
  .tw-cursor-pointer {
2521
2583
  cursor: pointer;
2522
2584
  }
@@ -2559,8 +2621,8 @@ imported in Sourcegraph shell.
2559
2621
  .tw-items-stretch {
2560
2622
  align-items: stretch;
2561
2623
  }
2562
- .\!tw-justify-start {
2563
- justify-content: flex-start !important;
2624
+ .tw-justify-start {
2625
+ justify-content: flex-start;
2564
2626
  }
2565
2627
  .tw-justify-end {
2566
2628
  justify-content: flex-end;
@@ -2725,9 +2787,16 @@ imported in Sourcegraph shell.
2725
2787
  .tw-border-keybinding-border {
2726
2788
  border-color: var(--vscode-keybindingLabel-border);
2727
2789
  }
2790
+ .tw-border-muted-foreground {
2791
+ border-color: var(--vscode-input-placeholderForeground);
2792
+ }
2728
2793
  .tw-border-muted-transparent {
2729
2794
  border-color: color-mix(in lch, currentColor 15%, transparent);
2730
2795
  }
2796
+ .tw-border-rose-400 {
2797
+ --tw-border-opacity: 1;
2798
+ border-color: rgb(251 113 133 / var(--tw-border-opacity));
2799
+ }
2731
2800
  .tw-border-transparent {
2732
2801
  border-color: transparent;
2733
2802
  }
@@ -2752,6 +2821,10 @@ imported in Sourcegraph shell.
2752
2821
  .tw-bg-badge-background {
2753
2822
  background-color: var(--vscode-badge-background);
2754
2823
  }
2824
+ .tw-bg-blue-500 {
2825
+ --tw-bg-opacity: 1;
2826
+ background-color: rgb(59 130 246 / var(--tw-bg-opacity));
2827
+ }
2755
2828
  .tw-bg-border {
2756
2829
  background-color: var(--vscode-dropdown-border);
2757
2830
  }
@@ -2767,6 +2840,9 @@ imported in Sourcegraph shell.
2767
2840
  .tw-bg-current {
2768
2841
  background-color: currentColor;
2769
2842
  }
2843
+ .tw-bg-inherit {
2844
+ background-color: inherit;
2845
+ }
2770
2846
  .tw-bg-input-background {
2771
2847
  background-color: var(--vscode-input-background);
2772
2848
  }
@@ -2776,12 +2852,23 @@ imported in Sourcegraph shell.
2776
2852
  .tw-bg-muted {
2777
2853
  background-color: var(--vscode-input-background);
2778
2854
  }
2855
+ .tw-bg-muted-transparent {
2856
+ background-color: color-mix(in lch, currentColor 15%, transparent);
2857
+ }
2779
2858
  .tw-bg-popover {
2780
2859
  background-color: var(--vscode-quickInput-background);
2781
2860
  }
2782
- .tw-bg-red-800 {
2861
+ .tw-bg-red-500 {
2862
+ --tw-bg-opacity: 1;
2863
+ background-color: rgb(239 68 68 / var(--tw-bg-opacity));
2864
+ }
2865
+ .tw-bg-red-700 {
2866
+ --tw-bg-opacity: 1;
2867
+ background-color: rgb(185 28 28 / var(--tw-bg-opacity));
2868
+ }
2869
+ .tw-bg-rose-300 {
2783
2870
  --tw-bg-opacity: 1;
2784
- background-color: rgb(153 27 27 / var(--tw-bg-opacity));
2871
+ background-color: rgb(253 164 175 / var(--tw-bg-opacity));
2785
2872
  }
2786
2873
  .tw-bg-sidebar-background {
2787
2874
  background-color: var(--vscode-sideBar-background);
@@ -2792,6 +2879,24 @@ imported in Sourcegraph shell.
2792
2879
  .tw-bg-transparent {
2793
2880
  background-color: transparent;
2794
2881
  }
2882
+ .tw-bg-opacity-50 {
2883
+ --tw-bg-opacity: 0.5;
2884
+ }
2885
+ .tw-bg-gradient-to-r {
2886
+ background-image: linear-gradient(to right, var(--tw-gradient-stops));
2887
+ }
2888
+ .tw-from-sourcegraph-blue {
2889
+ --tw-gradient-from: #00CBEC var(--tw-gradient-from-position);
2890
+ --tw-gradient-to: rgb(0 203 236 / 0) var(--tw-gradient-to-position);
2891
+ --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
2892
+ }
2893
+ .tw-via-sourcegraph-purple {
2894
+ --tw-gradient-to: rgb(161 18 255 / 0) var(--tw-gradient-to-position);
2895
+ --tw-gradient-stops: var(--tw-gradient-from), #A112FF var(--tw-gradient-via-position), var(--tw-gradient-to);
2896
+ }
2897
+ .tw-to-sourcegraph-orange {
2898
+ --tw-gradient-to: #FF5543 var(--tw-gradient-to-position);
2899
+ }
2795
2900
  .\!tw-p-0 {
2796
2901
  padding: 0px !important;
2797
2902
  }
@@ -2810,6 +2915,9 @@ imported in Sourcegraph shell.
2810
2915
  .tw-p-1 {
2811
2916
  padding: 2px;
2812
2917
  }
2918
+ .tw-p-10 {
2919
+ padding: 20px;
2920
+ }
2813
2921
  .tw-p-2 {
2814
2922
  padding: 4px;
2815
2923
  }
@@ -2846,6 +2954,10 @@ imported in Sourcegraph shell.
2846
2954
  padding-left: 8px;
2847
2955
  padding-right: 8px;
2848
2956
  }
2957
+ .tw-px-6 {
2958
+ padding-left: 12px;
2959
+ padding-right: 12px;
2960
+ }
2849
2961
  .tw-px-8 {
2850
2962
  padding-left: 16px;
2851
2963
  padding-right: 16px;
@@ -2950,9 +3062,15 @@ imported in Sourcegraph shell.
2950
3062
  .tw-font-medium {
2951
3063
  font-weight: 500;
2952
3064
  }
3065
+ .tw-font-normal {
3066
+ font-weight: 400;
3067
+ }
2953
3068
  .tw-font-semibold {
2954
3069
  font-weight: 600;
2955
3070
  }
3071
+ .tw-font-thin {
3072
+ font-weight: 100;
3073
+ }
2956
3074
  .tw-uppercase {
2957
3075
  text-transform: uppercase;
2958
3076
  }
@@ -2989,6 +3107,10 @@ imported in Sourcegraph shell.
2989
3107
  .tw-text-foreground {
2990
3108
  color: var(--vscode-foreground);
2991
3109
  }
3110
+ .tw-text-gray-800 {
3111
+ --tw-text-opacity: 1;
3112
+ color: rgb(31 41 55 / var(--tw-text-opacity));
3113
+ }
2992
3114
  .tw-text-input-foreground {
2993
3115
  color: var(--vscode-input-foreground);
2994
3116
  }
@@ -3033,12 +3155,18 @@ imported in Sourcegraph shell.
3033
3155
  .tw-opacity-65 {
3034
3156
  opacity: 0.65;
3035
3157
  }
3158
+ .tw-opacity-70 {
3159
+ opacity: 0.7;
3160
+ }
3036
3161
  .tw-opacity-75 {
3037
3162
  opacity: 0.75;
3038
3163
  }
3039
3164
  .tw-opacity-80 {
3040
3165
  opacity: 0.8;
3041
3166
  }
3167
+ .tw-opacity-85 {
3168
+ opacity: 0.85;
3169
+ }
3042
3170
  .tw-shadow-lg {
3043
3171
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
3044
3172
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
@@ -3440,12 +3568,19 @@ imported in Sourcegraph shell.
3440
3568
  .hover\:tw-bg-muted-transparent:hover {
3441
3569
  background-color: color-mix(in lch, currentColor 15%, transparent);
3442
3570
  }
3571
+ .hover\:tw-bg-red-600:hover {
3572
+ --tw-bg-opacity: 1;
3573
+ background-color: rgb(220 38 38 / var(--tw-bg-opacity));
3574
+ }
3443
3575
  .hover\:\!tw-text-accent-foreground:hover {
3444
3576
  color: var(--vscode-list-activeSelectionForeground) !important;
3445
3577
  }
3446
3578
  .hover\:tw-text-accent-foreground:hover {
3447
3579
  color: var(--vscode-list-activeSelectionForeground);
3448
3580
  }
3581
+ .hover\:tw-text-button-foreground:hover {
3582
+ color: var(--vscode-button-foreground);
3583
+ }
3449
3584
  .hover\:tw-text-foreground:hover {
3450
3585
  color: var(--vscode-foreground);
3451
3586
  }
@@ -3510,9 +3645,6 @@ imported in Sourcegraph shell.
3510
3645
  .disabled\:tw-opacity-75:disabled {
3511
3646
  opacity: 0.75;
3512
3647
  }
3513
- .tw-group:hover .group-hover\:tw-visible {
3514
- visibility: visible;
3515
- }
3516
3648
  .tw-group:hover .group-hover\:tw-opacity-100 {
3517
3649
  opacity: 1;
3518
3650
  }