@sourcegraph/cody-web 0.31.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/style.css CHANGED
@@ -2515,6 +2515,34 @@ imported in Sourcegraph shell.
2515
2515
  since they will conflict with any possible reset/global
2516
2516
  styles in consumer. See @mixin reset-styles for more details
2517
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
+ }
2518
2546
  .tw-pointer-events-none {
2519
2547
  pointer-events: none;
2520
2548
  }
@@ -2579,6 +2607,10 @@ imported in Sourcegraph shell.
2579
2607
  margin-left: 4px;
2580
2608
  margin-right: 4px;
2581
2609
  }
2610
+ .tw-mx-4 {
2611
+ margin-left: 8px;
2612
+ margin-right: 8px;
2613
+ }
2582
2614
  .tw-my-2 {
2583
2615
  margin-top: 4px;
2584
2616
  margin-bottom: 4px;
@@ -2610,6 +2642,9 @@ imported in Sourcegraph shell.
2610
2642
  .tw-mb-5 {
2611
2643
  margin-bottom: 10px;
2612
2644
  }
2645
+ .tw-mb-7 {
2646
+ margin-bottom: 1.75rem;
2647
+ }
2613
2648
  .tw-mb-8 {
2614
2649
  margin-bottom: 16px;
2615
2650
  }
@@ -2694,6 +2729,9 @@ imported in Sourcegraph shell.
2694
2729
  .tw-inline-block {
2695
2730
  display: inline-block;
2696
2731
  }
2732
+ .tw-inline {
2733
+ display: inline;
2734
+ }
2697
2735
  .tw-flex {
2698
2736
  display: flex;
2699
2737
  }
@@ -2877,6 +2915,9 @@ imported in Sourcegraph shell.
2877
2915
  .tw-max-w-md {
2878
2916
  max-width: 28rem;
2879
2917
  }
2918
+ .tw-max-w-none {
2919
+ max-width: none;
2920
+ }
2880
2921
  .tw-flex-1 {
2881
2922
  flex: 1 1 0%;
2882
2923
  }
@@ -2913,6 +2954,14 @@ imported in Sourcegraph shell.
2913
2954
  .tw-transform {
2914
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));
2915
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
+ }
2916
2965
  @keyframes tw-spin {
2917
2966
  to {
2918
2967
  transform: rotate(360deg);
@@ -3145,6 +3194,9 @@ imported in Sourcegraph shell.
3145
3194
  .tw-border-button-border {
3146
3195
  border-color: var(--vscode-button-border, transparent);
3147
3196
  }
3197
+ .tw-border-gray-500\/20 {
3198
+ border-color: rgb(107 114 128 / 0.2);
3199
+ }
3148
3200
  .tw-border-input-border {
3149
3201
  border-color: var(--vscode-input-border);
3150
3202
  }
@@ -3207,6 +3259,9 @@ imported in Sourcegraph shell.
3207
3259
  .tw-bg-button-secondary-background-hover {
3208
3260
  background-color: var(--vscode-button-secondaryHoverBackground);
3209
3261
  }
3262
+ .tw-bg-gray-100\/50 {
3263
+ background-color: rgb(243 244 246 / 0.5);
3264
+ }
3210
3265
  .tw-bg-gray-900 {
3211
3266
  --tw-bg-opacity: 1;
3212
3267
  background-color: rgb(17 24 39 / var(--tw-bg-opacity));
@@ -3465,6 +3520,10 @@ imported in Sourcegraph shell.
3465
3520
  font-size: 1rem;
3466
3521
  line-height: 1.5rem;
3467
3522
  }
3523
+ .tw-text-base\/7 {
3524
+ font-size: 1rem;
3525
+ line-height: 1.75rem;
3526
+ }
3468
3527
  .tw-text-lg {
3469
3528
  font-size: calc(var(--vscode-font-size) * 15 / 13);
3470
3529
  }
@@ -3510,6 +3569,9 @@ imported in Sourcegraph shell.
3510
3569
  .tw-leading-none {
3511
3570
  line-height: 1;
3512
3571
  }
3572
+ .tw-leading-relaxed {
3573
+ line-height: 1.625;
3574
+ }
3513
3575
  .tw-leading-tight {
3514
3576
  line-height: 1.25;
3515
3577
  }
@@ -3545,6 +3607,10 @@ imported in Sourcegraph shell.
3545
3607
  --tw-text-opacity: 1;
3546
3608
  color: rgb(209 213 219 / var(--tw-text-opacity));
3547
3609
  }
3610
+ .tw-text-gray-600 {
3611
+ --tw-text-opacity: 1;
3612
+ color: rgb(75 85 99 / var(--tw-text-opacity));
3613
+ }
3548
3614
  .tw-text-gray-800 {
3549
3615
  --tw-text-opacity: 1;
3550
3616
  color: rgb(31 41 55 / var(--tw-text-opacity));
@@ -3658,6 +3724,10 @@ imported in Sourcegraph shell.
3658
3724
  .tw-ring-offset-background {
3659
3725
  --tw-ring-offset-color: var(--vscode-editor-background);
3660
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
+ }
3661
3731
  .tw-transition {
3662
3732
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
3663
3733
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
@@ -4072,6 +4142,9 @@ imported in Sourcegraph shell.
4072
4142
  .hover\:tw-bg-button-secondary-background-hover:hover {
4073
4143
  background-color: var(--vscode-button-secondaryHoverBackground);
4074
4144
  }
4145
+ .hover\:tw-bg-gray-200\/50:hover {
4146
+ background-color: rgb(229 231 235 / 0.5);
4147
+ }
4075
4148
  .hover\:tw-bg-green-900:hover {
4076
4149
  --tw-bg-opacity: 1;
4077
4150
  background-color: rgb(20 83 45 / var(--tw-bg-opacity));
@@ -4314,6 +4387,19 @@ imported in Sourcegraph shell.
4314
4387
  .dark\:tw-hidden {
4315
4388
  display: none;
4316
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
+ }
4317
4403
  }
4318
4404
  .\[\&\:not\(\:last-child\)\]\:tw-border-b:not(:last-child) {
4319
4405
  border-bottom-width: 1px;