@morscherlab/mint-sdk 1.0.21 → 1.0.22

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/styles.css CHANGED
@@ -3704,6 +3704,7 @@ html.dark .mint-pill__remove:hover {
3704
3704
  display: flex;
3705
3705
  flex-direction: column;
3706
3706
  gap: 0.75rem;
3707
+ min-height: 0;
3707
3708
  }
3708
3709
 
3709
3710
  /* Shared filter row layout */
@@ -3735,24 +3736,39 @@ html.dark .mint-pill__remove:hover {
3735
3736
  display: inline-flex;
3736
3737
  align-items: center;
3737
3738
  gap: 0.375rem;
3738
- padding: 0.375rem 0.625rem;
3739
+ min-height: 2.25rem;
3740
+ padding: 0.5rem 0.75rem;
3739
3741
  border: 1px solid var(--border-color);
3740
- border-radius: var(--radius-sm);
3742
+ border-radius: var(--radius-md);
3741
3743
  background: var(--bg-primary);
3742
3744
  color: var(--text-secondary);
3743
3745
  font-size: 0.8125rem;
3746
+ font-weight: 500;
3744
3747
  cursor: pointer;
3745
3748
  white-space: nowrap;
3746
3749
  position: relative;
3747
- transition: border-color 0.15s ease, color 0.15s ease;
3750
+ transition:
3751
+ background-color 0.15s ease,
3752
+ border-color 0.15s ease,
3753
+ color 0.15s ease,
3754
+ box-shadow 0.15s ease;
3748
3755
  }
3749
3756
  .mint-experiment-selector__filters-toggle:hover {
3750
3757
  border-color: var(--color-primary);
3758
+ background-color: var(--bg-hover);
3751
3759
  color: var(--text-primary);
3752
3760
  }
3761
+ .mint-experiment-selector__filters-toggle:focus-visible {
3762
+ outline: none;
3763
+ box-shadow: var(--focus-ring);
3764
+ }
3753
3765
  .mint-experiment-selector__filters-toggle--active {
3754
3766
  color: var(--color-primary);
3755
3767
  border-color: var(--color-primary);
3768
+ background-color: color-mix(in srgb, var(--color-primary) 8%, transparent);
3769
+ }
3770
+ html.dark .mint-experiment-selector__filters-toggle--active {
3771
+ background-color: color-mix(in srgb, var(--color-primary) 16%, transparent);
3756
3772
  }
3757
3773
 
3758
3774
  /* Active filter badge dot */
@@ -3766,7 +3782,10 @@ html.dark .mint-pill__remove:hover {
3766
3782
 
3767
3783
  /* Advanced filters row */
3768
3784
  .mint-experiment-selector__filters-advanced {
3769
- padding-top: 0.25rem;
3785
+ padding: 0.625rem;
3786
+ border: 1px solid var(--border-light);
3787
+ border-radius: var(--radius-md);
3788
+ background-color: color-mix(in srgb, var(--bg-secondary) 72%, transparent);
3770
3789
  }
3771
3790
 
3772
3791
  /* Group toggle checkbox label */
@@ -3774,6 +3793,7 @@ html.dark .mint-pill__remove:hover {
3774
3793
  display: inline-flex;
3775
3794
  align-items: center;
3776
3795
  gap: 0.375rem;
3796
+ min-height: 2.25rem;
3777
3797
  font-size: 0.8125rem;
3778
3798
  color: var(--text-secondary);
3779
3799
  cursor: pointer;
@@ -3782,19 +3802,23 @@ html.dark .mint-pill__remove:hover {
3782
3802
  margin-left: auto;
3783
3803
  }
3784
3804
  .mint-experiment-selector__group-checkbox {
3785
- width: 14px;
3786
- height: 14px;
3805
+ width: 1rem;
3806
+ height: 1rem;
3787
3807
  accent-color: var(--color-primary);
3788
3808
  cursor: pointer;
3789
3809
  }
3810
+ .mint-experiment-selector__group-checkbox:focus-visible {
3811
+ outline: none;
3812
+ box-shadow: var(--focus-ring);
3813
+ }
3790
3814
 
3791
3815
  /* Loading skeleton */
3792
3816
  .mint-experiment-selector__skeleton {
3793
3817
  display: flex;
3794
3818
  flex-direction: column;
3795
- gap: 1px;
3796
3819
  border: 1px solid var(--border-color);
3797
- border-radius: var(--radius);
3820
+ border-radius: var(--radius-md);
3821
+ overflow: hidden;
3798
3822
  }
3799
3823
  .mint-experiment-selector__skeleton-row {
3800
3824
  display: flex;
@@ -3813,7 +3837,8 @@ html.dark .mint-pill__remove:hover {
3813
3837
  /* Error */
3814
3838
  .mint-experiment-selector__error {
3815
3839
  padding: 0.75rem;
3816
- border-radius: var(--radius-sm);
3840
+ border: 1px solid color-mix(in srgb, var(--mint-error) 30%, transparent);
3841
+ border-radius: var(--radius-md);
3817
3842
  background-color: var(--mint-error-bg);
3818
3843
  color: var(--mint-error);
3819
3844
  font-size: 0.875rem;
@@ -3821,13 +3846,27 @@ html.dark .mint-pill__remove:hover {
3821
3846
 
3822
3847
  /* Scrollable list */
3823
3848
  .mint-experiment-selector__list {
3824
- max-height: 400px;
3849
+ max-height: min(28rem, calc(100vh - 16rem));
3825
3850
  overflow-y: auto;
3826
3851
  display: flex;
3827
3852
  flex-direction: column;
3828
- gap: 1px;
3829
3853
  border: 1px solid var(--border-color);
3830
- border-radius: var(--radius);
3854
+ border-radius: var(--radius-md);
3855
+ background-color: var(--bg-primary);
3856
+ scrollbar-width: thin;
3857
+ overscroll-behavior: contain;
3858
+ }
3859
+ .mint-experiment-selector__list::-webkit-scrollbar {
3860
+ width: 0.5rem;
3861
+ }
3862
+ .mint-experiment-selector__list::-webkit-scrollbar-track {
3863
+ background: transparent;
3864
+ }
3865
+ .mint-experiment-selector__list::-webkit-scrollbar-thumb {
3866
+ background-color: color-mix(in srgb, var(--text-muted) 30%, transparent);
3867
+ border: 2px solid transparent;
3868
+ border-radius: 9999px;
3869
+ background-clip: content-box;
3831
3870
  }
3832
3871
 
3833
3872
  /* Project group header */
@@ -3835,9 +3874,11 @@ html.dark .mint-pill__remove:hover {
3835
3874
  display: flex;
3836
3875
  align-items: center;
3837
3876
  gap: 0.5rem;
3838
- padding: 0.5rem 1rem;
3839
- background-color: var(--bg-secondary, var(--bg-primary));
3877
+ min-height: 2.5rem;
3878
+ padding: 0.5rem 0.875rem;
3879
+ background-color: color-mix(in srgb, var(--bg-secondary) 82%, transparent);
3840
3880
  border: none;
3881
+ border-bottom: 1px solid var(--border-light);
3841
3882
  cursor: pointer;
3842
3883
  width: 100%;
3843
3884
  text-align: left;
@@ -3851,6 +3892,10 @@ html.dark .mint-pill__remove:hover {
3851
3892
  .mint-experiment-selector__group-header:hover {
3852
3893
  background-color: var(--bg-hover);
3853
3894
  }
3895
+ .mint-experiment-selector__group-header:focus-visible {
3896
+ outline: none;
3897
+ box-shadow: inset 0 0 0 2px var(--color-primary);
3898
+ }
3854
3899
  .mint-experiment-selector__group-chevron {
3855
3900
  flex-shrink: 0;
3856
3901
  transition: transform 0.15s ease;
@@ -3881,22 +3926,25 @@ html.dark .mint-pill__remove:hover {
3881
3926
 
3882
3927
  /* Row */
3883
3928
  .mint-experiment-selector__row {
3929
+ position: relative;
3884
3930
  display: flex;
3885
3931
  align-items: center;
3886
3932
  gap: 0.75rem;
3887
- padding: 0.75rem 1rem;
3933
+ min-height: 4.125rem;
3934
+ padding: 0.75rem 1rem 0.75rem 1.125rem;
3888
3935
  cursor: pointer;
3889
- border-left: 3px solid transparent;
3936
+ border-left: 0 solid transparent;
3937
+ border-bottom: 1px solid var(--border-light);
3890
3938
  background-color: var(--bg-primary);
3891
3939
  transition:
3892
3940
  background-color 0.15s ease,
3893
- border-color 0.15s ease;
3941
+ box-shadow 0.15s ease;
3894
3942
  }
3895
3943
  .mint-experiment-selector__row:hover {
3896
3944
  background-color: var(--bg-hover);
3897
3945
  }
3898
3946
  .mint-experiment-selector__row--active {
3899
- border-left-color: var(--color-primary);
3947
+ box-shadow: inset 3px 0 0 var(--color-primary);
3900
3948
  background-color: var(--color-primary-soft);
3901
3949
  }
3902
3950
  .mint-experiment-selector__row--active:hover {
@@ -3906,9 +3954,10 @@ html.dark .mint-pill__remove:hover {
3906
3954
  /* Keyboard focused row */
3907
3955
  .mint-experiment-selector__row--focused {
3908
3956
  background-color: var(--bg-hover);
3909
- outline: 2px solid var(--color-primary);
3910
- outline-offset: -2px;
3911
- border-radius: 2px;
3957
+ outline: none;
3958
+ box-shadow:
3959
+ inset 0 0 0 2px var(--color-primary),
3960
+ inset 3px 0 0 var(--color-primary);
3912
3961
  }
3913
3962
  .mint-experiment-selector__row--active.mint-experiment-selector__row--focused {
3914
3963
  background-color: var(--color-primary-soft);
@@ -3936,6 +3985,7 @@ html.dark .mint-pill__remove:hover {
3936
3985
  display: flex;
3937
3986
  align-items: center;
3938
3987
  gap: 0.5rem;
3988
+ flex-wrap: wrap;
3939
3989
  font-size: 0.75rem;
3940
3990
  color: var(--text-muted);
3941
3991
  margin-top: 0.125rem;
@@ -3962,6 +4012,11 @@ html.dark .mint-pill__remove:hover {
3962
4012
  color: var(--color-primary);
3963
4013
  text-decoration-color: var(--color-primary);
3964
4014
  }
4015
+ .mint-experiment-selector__clear-btn:focus-visible {
4016
+ outline: none;
4017
+ box-shadow: var(--focus-ring);
4018
+ border-radius: var(--radius-sm);
4019
+ }
3965
4020
  /* ConfirmDialog — aligned with refresh design.
3966
4021
  - Title + optional subtitle live in BaseModal's header (top of modal)
3967
4022
  - Body is focused on the message (no forced icon/flex-row layout)
@@ -4688,6 +4743,7 @@ to { transform: rotate(360deg);
4688
4743
  display: flex;
4689
4744
  flex-direction: column;
4690
4745
  gap: 1rem;
4746
+ min-height: 0;
4691
4747
  }
4692
4748
  .mint-settings-modal__tabs {
4693
4749
  display: flex;
@@ -4793,7 +4849,9 @@ html.dark .mint-settings-modal__option-btn--active {
4793
4849
  flex-direction: row;
4794
4850
  gap: 1.25rem;
4795
4851
  align-items: stretch;
4852
+ height: clamp(22rem, calc(100vh - 9rem), 42rem);
4796
4853
  min-height: 22rem;
4854
+ overflow: hidden;
4797
4855
  }
4798
4856
  .mint-settings-modal__rail {
4799
4857
  flex-shrink: 0;
@@ -4801,15 +4859,18 @@ html.dark .mint-settings-modal__option-btn--active {
4801
4859
  display: flex;
4802
4860
  flex-direction: column;
4803
4861
  gap: 0.125rem;
4804
- padding-right: 0.75rem;
4862
+ padding: 0.125rem 0.75rem 0.125rem 0;
4805
4863
  border-right: 1px solid var(--border-light);
4864
+ overflow: hidden;
4806
4865
  }
4807
4866
  .mint-settings-modal__rail-item {
4867
+ position: relative;
4808
4868
  display: flex;
4809
4869
  align-items: flex-start;
4810
4870
  gap: 0.625rem;
4811
4871
  width: 100%;
4812
- padding: 0.5rem 0.75rem;
4872
+ min-height: 2.5rem;
4873
+ padding: 0.5rem 0.75rem 0.5rem 0.875rem;
4813
4874
  font-size: 0.8125rem;
4814
4875
  font-weight: 500;
4815
4876
  color: var(--text-secondary);
@@ -4834,6 +4895,16 @@ html.dark .mint-settings-modal__option-btn--active {
4834
4895
  color: var(--color-primary);
4835
4896
  background-color: color-mix(in srgb, var(--color-primary) 10%, transparent);
4836
4897
  }
4898
+ .mint-settings-modal__rail-item--active::before {
4899
+ content: "";
4900
+ position: absolute;
4901
+ left: 0.375rem;
4902
+ top: 0.625rem;
4903
+ bottom: 0.625rem;
4904
+ width: 2px;
4905
+ border-radius: 9999px;
4906
+ background-color: var(--color-primary);
4907
+ }
4837
4908
  html.dark .mint-settings-modal__rail-item--active {
4838
4909
  background-color: color-mix(in srgb, var(--color-primary) 18%, transparent);
4839
4910
  }
@@ -4863,12 +4934,14 @@ html.dark .mint-settings-modal__rail-item--active {
4863
4934
  }
4864
4935
  .mint-settings-modal__rail-item-label {
4865
4936
  line-height: 1.3;
4937
+ overflow-wrap: anywhere;
4866
4938
  }
4867
4939
  .mint-settings-modal__rail-item-description {
4868
4940
  font-size: 0.6875rem;
4869
4941
  font-weight: 400;
4870
4942
  color: var(--text-muted);
4871
4943
  line-height: 1.35;
4944
+ overflow-wrap: anywhere;
4872
4945
  }
4873
4946
  .mint-settings-modal__rail-item--active .mint-settings-modal__rail-item-description {
4874
4947
  color: color-mix(in srgb, var(--color-primary) 65%, var(--text-secondary));
@@ -4876,10 +4949,18 @@ html.dark .mint-settings-modal__rail-item--active {
4876
4949
  .mint-settings-modal__pane {
4877
4950
  flex: 1;
4878
4951
  min-width: 0;
4952
+ min-height: 0;
4879
4953
  display: flex;
4880
4954
  flex-direction: column;
4955
+ overflow: hidden;
4956
+ }
4957
+ .mint-settings-modal__pane:focus-visible {
4958
+ outline: none;
4959
+ box-shadow: var(--focus-ring);
4960
+ border-radius: var(--radius-md);
4881
4961
  }
4882
4962
  .mint-settings-modal__pane-header {
4963
+ flex-shrink: 0;
4883
4964
  margin-bottom: 1rem;
4884
4965
  padding-bottom: 0.75rem;
4885
4966
  border-bottom: 1px solid var(--border-light);
@@ -4903,8 +4984,27 @@ html.dark .mint-settings-modal__rail-item--active {
4903
4984
  .mint-settings-modal__pane-body {
4904
4985
  flex: 1;
4905
4986
  min-height: 0;
4987
+ overflow-y: auto;
4988
+ scrollbar-width: thin;
4906
4989
  /* Trailing breathing room so the last field doesn't hug the modal border */
4907
- padding-bottom: 0.25rem;
4990
+ padding: 0 0.5rem 0.25rem 0;
4991
+ margin-right: -0.25rem;
4992
+ overscroll-behavior: contain;
4993
+ }
4994
+ .mint-settings-modal__pane-body::-webkit-scrollbar {
4995
+ width: 0.5rem;
4996
+ }
4997
+ .mint-settings-modal__pane-body::-webkit-scrollbar-track {
4998
+ background: transparent;
4999
+ }
5000
+ .mint-settings-modal__pane-body::-webkit-scrollbar-thumb {
5001
+ background-color: color-mix(in srgb, var(--text-muted) 30%, transparent);
5002
+ border: 2px solid transparent;
5003
+ border-radius: 9999px;
5004
+ background-clip: content-box;
5005
+ }
5006
+ .mint-settings-modal__pane-body::-webkit-scrollbar-thumb:hover {
5007
+ background-color: color-mix(in srgb, var(--text-muted) 45%, transparent);
4908
5008
  }
4909
5009
 
4910
5010
  /* Mobile — collapse the rail into a horizontal scroll-strip so the modal stays usable.
@@ -4913,7 +5013,10 @@ html.dark .mint-settings-modal__rail-item--active {
4913
5013
  .mint-settings-modal--vertical {
4914
5014
  flex-direction: column;
4915
5015
  gap: 0.875rem;
5016
+ height: auto;
5017
+ max-height: none;
4916
5018
  min-height: 0;
5019
+ overflow: visible;
4917
5020
  }
4918
5021
  .mint-settings-modal__rail {
4919
5022
  width: 100%;
@@ -4930,6 +5033,9 @@ html.dark .mint-settings-modal__rail-item--active {
4930
5033
  width: auto;
4931
5034
  padding: 0.5rem 0.75rem;
4932
5035
  }
5036
+ .mint-settings-modal__rail-item--active::before {
5037
+ display: none;
5038
+ }
4933
5039
 
4934
5040
  /* Two-line description hides on mobile so the rail strip stays compact */
4935
5041
  .mint-settings-modal__rail-item-description {
@@ -5722,19 +5828,20 @@ html.dark .mint-calendar__day--in-range {
5722
5828
  }
5723
5829
  /* DataFrame Component Styles */
5724
5830
  .mint-dataframe {
5725
- background-color: var(--bg-secondary);
5831
+ background-color: var(--bg-primary);
5726
5832
  border-radius: var(--radius-md);
5727
5833
  overflow: hidden;
5728
5834
  }
5729
5835
  .mint-dataframe--bordered {
5730
5836
  border: 1px solid var(--border-color);
5837
+ box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
5731
5838
  }
5732
5839
 
5733
5840
  /* Search header */
5734
5841
  .mint-dataframe__header {
5735
- padding: 0.625rem 0.75rem;
5736
- border-bottom: 1px solid var(--border-color);
5737
- background-color: var(--bg-tertiary);
5842
+ padding: 0.75rem;
5843
+ border-bottom: 1px solid var(--border-light);
5844
+ background-color: color-mix(in srgb, var(--bg-secondary) 88%, transparent);
5738
5845
  }
5739
5846
  .mint-dataframe__search-wrapper {
5740
5847
  position: relative;
@@ -5751,20 +5858,25 @@ html.dark .mint-calendar__day--in-range {
5751
5858
  }
5752
5859
  .mint-dataframe__search {
5753
5860
  width: 100%;
5754
- padding: 0.375rem 0.5rem 0.375rem 1.75rem;
5755
- background-color: var(--bg-secondary);
5861
+ min-height: 2.25rem;
5862
+ padding: 0.5rem 0.625rem 0.5rem 2rem;
5863
+ background-color: var(--bg-primary);
5756
5864
  border: 1px solid var(--border-color);
5757
- border-radius: var(--radius-sm);
5865
+ border-radius: var(--radius-md);
5758
5866
  font-size: 0.8125rem;
5759
5867
  color: var(--text-primary);
5760
5868
  outline: none;
5761
- transition: border-color 0.15s ease, box-shadow 0.15s ease;
5869
+ transition:
5870
+ background-color 0.15s ease,
5871
+ border-color 0.15s ease,
5872
+ box-shadow 0.15s ease;
5762
5873
  }
5763
5874
  .mint-dataframe__search::placeholder {
5764
5875
  color: var(--text-muted);
5765
5876
  }
5766
5877
  .mint-dataframe__search:focus-visible {
5767
5878
  border-color: transparent;
5879
+ background-color: var(--bg-primary);
5768
5880
  box-shadow: var(--focus-ring);
5769
5881
  }
5770
5882
 
@@ -5772,6 +5884,21 @@ html.dark .mint-calendar__day--in-range {
5772
5884
  .mint-dataframe__table-wrapper {
5773
5885
  position: relative;
5774
5886
  overflow-x: auto;
5887
+ background-color: var(--bg-primary);
5888
+ scrollbar-width: thin;
5889
+ }
5890
+ .mint-dataframe__table-wrapper::-webkit-scrollbar {
5891
+ width: 0.5rem;
5892
+ height: 0.5rem;
5893
+ }
5894
+ .mint-dataframe__table-wrapper::-webkit-scrollbar-track {
5895
+ background: transparent;
5896
+ }
5897
+ .mint-dataframe__table-wrapper::-webkit-scrollbar-thumb {
5898
+ background-color: color-mix(in srgb, var(--text-muted) 30%, transparent);
5899
+ border: 2px solid transparent;
5900
+ border-radius: 9999px;
5901
+ background-clip: content-box;
5775
5902
  }
5776
5903
 
5777
5904
  /* Table */
@@ -5801,19 +5928,20 @@ html.dark .mint-calendar__day--in-range {
5801
5928
 
5802
5929
  /* Thead */
5803
5930
  .mint-dataframe__thead {
5804
- background-color: var(--bg-tertiary);
5931
+ background-color: color-mix(in srgb, var(--bg-secondary) 92%, var(--bg-primary));
5805
5932
  }
5806
5933
  .mint-dataframe__thead--sticky {
5807
5934
  position: sticky;
5808
5935
  top: 0;
5809
5936
  z-index: 2;
5937
+ box-shadow: 0 1px 0 var(--border-color);
5810
5938
  }
5811
5939
 
5812
5940
  /* Th */
5813
5941
  .mint-dataframe__th {
5814
5942
  font-size: 0.6875rem !important;
5815
5943
  font-weight: 600 !important;
5816
- color: var(--text-muted) !important;
5944
+ color: var(--text-secondary) !important;
5817
5945
  text-transform: uppercase !important;
5818
5946
  letter-spacing: 0.05em !important;
5819
5947
  text-align: left !important;
@@ -5821,7 +5949,7 @@ html.dark .mint-calendar__day--in-range {
5821
5949
  border-top: none !important;
5822
5950
  border-left: none !important;
5823
5951
  border-right: none !important;
5824
- border-bottom: 1px solid var(--border-color) !important;
5952
+ border-bottom: 1px solid var(--border-light) !important;
5825
5953
  background: transparent !important;
5826
5954
  }
5827
5955
  .mint-dataframe__th--sm {
@@ -5843,15 +5971,18 @@ html.dark .mint-calendar__day--in-range {
5843
5971
  text-align: right;
5844
5972
  }
5845
5973
  .mint-dataframe__th--sortable {
5974
+ position: relative;
5846
5975
  cursor: pointer;
5847
5976
  user-select: none;
5848
- transition: color 0.15s ease;
5977
+ transition: color 0.15s ease, background-color 0.15s ease;
5849
5978
  }
5850
5979
  .mint-dataframe__th--sortable:hover {
5851
- color: var(--text-primary);
5980
+ background-color: color-mix(in srgb, var(--color-primary) 6%, transparent) !important;
5981
+ color: var(--text-primary) !important;
5852
5982
  }
5853
5983
  .mint-dataframe__th--sorted {
5854
- color: var(--color-primary);
5984
+ color: var(--color-primary) !important;
5985
+ background-color: color-mix(in srgb, var(--color-primary) 8%, transparent) !important;
5855
5986
  }
5856
5987
  .mint-dataframe__th--checkbox {
5857
5988
  width: 2.5rem;
@@ -5862,6 +5993,7 @@ html.dark .mint-calendar__day--in-range {
5862
5993
  display: inline-flex;
5863
5994
  align-items: center;
5864
5995
  gap: 0.25rem;
5996
+ min-height: 1.25rem;
5865
5997
  }
5866
5998
 
5867
5999
  /* Sort icon */
@@ -5887,7 +6019,7 @@ html.dark .mint-calendar__day--in-range {
5887
6019
  border-top: none !important;
5888
6020
  border-left: none !important;
5889
6021
  border-right: none !important;
5890
- border-bottom: 1px solid var(--border-color) !important;
6022
+ border-bottom: 1px solid var(--border-light) !important;
5891
6023
  background: transparent !important;
5892
6024
  transition: background-color 0.15s ease, box-shadow 0.15s ease;
5893
6025
  }
@@ -5928,14 +6060,21 @@ html.dark .mint-calendar__day--in-range {
5928
6060
  cursor: pointer;
5929
6061
  accent-color: var(--color-primary);
5930
6062
  }
6063
+ .mint-dataframe__checkbox:focus-visible {
6064
+ outline: none;
6065
+ box-shadow: var(--focus-ring);
6066
+ }
5931
6067
 
5932
6068
  /* Row */
5933
6069
  .mint-dataframe__row {
5934
- transition: background-color 0.1s ease;
6070
+ transition: background-color 0.15s ease;
5935
6071
  }
5936
6072
  .mint-dataframe__row:hover {
5937
6073
  background-color: var(--bg-hover);
5938
6074
  }
6075
+ .mint-dataframe__row:hover > .mint-dataframe__td {
6076
+ background-color: var(--bg-hover) !important;
6077
+ }
5939
6078
  .mint-dataframe__row--clickable {
5940
6079
  cursor: pointer;
5941
6080
  }
@@ -5958,16 +6097,31 @@ html.dark .mint-calendar__day--in-range {
5958
6097
  outline-offset: -2px;
5959
6098
  }
5960
6099
  .mint-dataframe__row--striped {
5961
- background-color: var(--bg-tertiary);
6100
+ background-color: color-mix(in srgb, var(--bg-secondary) 62%, transparent);
6101
+ }
6102
+ .mint-dataframe__row--striped > .mint-dataframe__td {
6103
+ background-color: color-mix(in srgb, var(--bg-secondary) 62%, transparent) !important;
5962
6104
  }
5963
6105
  .mint-dataframe__row--striped:hover {
5964
6106
  background-color: var(--bg-hover);
5965
6107
  }
6108
+ .mint-dataframe__row--striped:hover > .mint-dataframe__td {
6109
+ background-color: var(--bg-hover) !important;
6110
+ }
5966
6111
  .mint-dataframe__row--selected {
5967
- background-color: rgba(59, 130, 246, 0.08);
6112
+ background-color: color-mix(in srgb, var(--color-primary) 9%, transparent);
6113
+ }
6114
+ .mint-dataframe__row--selected > .mint-dataframe__td {
6115
+ background-color: color-mix(in srgb, var(--color-primary) 9%, transparent) !important;
6116
+ }
6117
+ .mint-dataframe__row--selected > .mint-dataframe__td:first-child {
6118
+ box-shadow: inset 3px 0 0 var(--color-primary);
5968
6119
  }
5969
6120
  html.dark .mint-dataframe__row--selected {
5970
- background-color: rgba(59, 130, 246, 0.15);
6121
+ background-color: color-mix(in srgb, var(--color-primary) 18%, transparent);
6122
+ }
6123
+ html.dark .mint-dataframe__row--selected > .mint-dataframe__td {
6124
+ background-color: color-mix(in srgb, var(--color-primary) 18%, transparent) !important;
5971
6125
  }
5972
6126
  .mint-dataframe__row:last-child .mint-dataframe__td {
5973
6127
  border-bottom: none;
@@ -5979,8 +6133,10 @@ html.dark .mint-dataframe__row--selected {
5979
6133
  flex-direction: column;
5980
6134
  align-items: center;
5981
6135
  justify-content: center;
5982
- padding: 2rem;
6136
+ min-height: 12rem;
6137
+ padding: 2.5rem 2rem;
5983
6138
  color: var(--text-muted);
6139
+ background-color: var(--bg-primary);
5984
6140
  }
5985
6141
  .mint-dataframe__empty-icon {
5986
6142
  width: 2.5rem;
@@ -6002,7 +6158,9 @@ html.dark .mint-dataframe__row--selected {
6002
6158
  display: flex;
6003
6159
  align-items: center;
6004
6160
  justify-content: center;
6005
- background-color: rgba(255, 255, 255, 0.6);
6161
+ background-color: color-mix(in srgb, var(--bg-primary) 74%, transparent);
6162
+ backdrop-filter: blur(2px);
6163
+ -webkit-backdrop-filter: blur(2px);
6006
6164
  z-index: 3;
6007
6165
  }
6008
6166
  html.dark .mint-dataframe__loading {
@@ -6026,9 +6184,9 @@ to { transform: rotate(360deg);
6026
6184
  display: flex;
6027
6185
  align-items: center;
6028
6186
  justify-content: space-between;
6029
- padding: 0.5rem 0.75rem;
6030
- border-top: 1px solid var(--border-color);
6031
- background-color: var(--bg-tertiary);
6187
+ padding: 0.625rem 0.75rem;
6188
+ border-top: 1px solid var(--border-light);
6189
+ background-color: color-mix(in srgb, var(--bg-secondary) 88%, transparent);
6032
6190
  }
6033
6191
  .mint-dataframe__page-info {
6034
6192
  font-size: 0.75rem;
@@ -6052,14 +6210,19 @@ to { transform: rotate(360deg);
6052
6210
  width: 1.75rem;
6053
6211
  height: 1.75rem;
6054
6212
  border: 1px solid var(--border-color);
6055
- border-radius: var(--radius-sm);
6056
- background: var(--bg-secondary);
6213
+ border-radius: var(--radius-md);
6214
+ background: var(--bg-primary);
6057
6215
  color: var(--text-secondary);
6058
6216
  cursor: pointer;
6059
- transition: background-color 0.15s ease, color 0.15s ease;
6217
+ transition:
6218
+ background-color 0.15s ease,
6219
+ border-color 0.15s ease,
6220
+ color 0.15s ease,
6221
+ box-shadow 0.15s ease;
6060
6222
  }
6061
6223
  .mint-dataframe__page-btn:hover:not(:disabled) {
6062
6224
  background-color: var(--bg-hover);
6225
+ border-color: var(--color-primary);
6063
6226
  color: var(--text-primary);
6064
6227
  }
6065
6228
  .mint-dataframe__page-btn:disabled {
@@ -28694,18 +28857,19 @@ html.dark .mint-calendar__day--in-range {
28694
28857
  }
28695
28858
  /* DataFrame Component Styles */
28696
28859
  .mint-dataframe {
28697
- background-color: var(--bg-secondary);
28860
+ background-color: var(--bg-primary);
28698
28861
  border-radius: var(--radius-md);
28699
28862
  overflow: hidden;
28700
28863
  }
28701
28864
  .mint-dataframe--bordered {
28702
28865
  border: 1px solid var(--border-color);
28866
+ box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
28703
28867
  }
28704
28868
  /* Search header */
28705
28869
  .mint-dataframe__header {
28706
- padding: 0.625rem 0.75rem;
28707
- border-bottom: 1px solid var(--border-color);
28708
- background-color: var(--bg-tertiary);
28870
+ padding: 0.75rem;
28871
+ border-bottom: 1px solid var(--border-light);
28872
+ background-color: color-mix(in srgb, var(--bg-secondary) 88%, transparent);
28709
28873
  }
28710
28874
  .mint-dataframe__search-wrapper {
28711
28875
  position: relative;
@@ -28722,26 +28886,46 @@ html.dark .mint-calendar__day--in-range {
28722
28886
  }
28723
28887
  .mint-dataframe__search {
28724
28888
  width: 100%;
28725
- padding: 0.375rem 0.5rem 0.375rem 1.75rem;
28726
- background-color: var(--bg-secondary);
28889
+ min-height: 2.25rem;
28890
+ padding: 0.5rem 0.625rem 0.5rem 2rem;
28891
+ background-color: var(--bg-primary);
28727
28892
  border: 1px solid var(--border-color);
28728
- border-radius: var(--radius-sm);
28893
+ border-radius: var(--radius-md);
28729
28894
  font-size: 0.8125rem;
28730
28895
  color: var(--text-primary);
28731
28896
  outline: none;
28732
- transition: border-color 0.15s ease, box-shadow 0.15s ease;
28897
+ transition:
28898
+ background-color 0.15s ease,
28899
+ border-color 0.15s ease,
28900
+ box-shadow 0.15s ease;
28733
28901
  }
28734
28902
  .mint-dataframe__search::placeholder {
28735
28903
  color: var(--text-muted);
28736
28904
  }
28737
28905
  .mint-dataframe__search:focus-visible {
28738
28906
  border-color: transparent;
28907
+ background-color: var(--bg-primary);
28739
28908
  box-shadow: var(--focus-ring);
28740
28909
  }
28741
28910
  /* Table wrapper */
28742
28911
  .mint-dataframe__table-wrapper {
28743
28912
  position: relative;
28744
28913
  overflow-x: auto;
28914
+ background-color: var(--bg-primary);
28915
+ scrollbar-width: thin;
28916
+ }
28917
+ .mint-dataframe__table-wrapper::-webkit-scrollbar {
28918
+ width: 0.5rem;
28919
+ height: 0.5rem;
28920
+ }
28921
+ .mint-dataframe__table-wrapper::-webkit-scrollbar-track {
28922
+ background: transparent;
28923
+ }
28924
+ .mint-dataframe__table-wrapper::-webkit-scrollbar-thumb {
28925
+ background-color: color-mix(in srgb, var(--text-muted) 30%, transparent);
28926
+ border: 2px solid transparent;
28927
+ border-radius: 9999px;
28928
+ background-clip: content-box;
28745
28929
  }
28746
28930
  /* Table */
28747
28931
  .mint-dataframe__table {
@@ -28769,18 +28953,19 @@ html.dark .mint-calendar__day--in-range {
28769
28953
  }
28770
28954
  /* Thead */
28771
28955
  .mint-dataframe__thead {
28772
- background-color: var(--bg-tertiary);
28956
+ background-color: color-mix(in srgb, var(--bg-secondary) 92%, var(--bg-primary));
28773
28957
  }
28774
28958
  .mint-dataframe__thead--sticky {
28775
28959
  position: sticky;
28776
28960
  top: 0;
28777
28961
  z-index: 2;
28962
+ box-shadow: 0 1px 0 var(--border-color);
28778
28963
  }
28779
28964
  /* Th */
28780
28965
  .mint-dataframe__th {
28781
28966
  font-size: 0.6875rem !important;
28782
28967
  font-weight: 600 !important;
28783
- color: var(--text-muted) !important;
28968
+ color: var(--text-secondary) !important;
28784
28969
  text-transform: uppercase !important;
28785
28970
  letter-spacing: 0.05em !important;
28786
28971
  text-align: left !important;
@@ -28788,7 +28973,7 @@ html.dark .mint-calendar__day--in-range {
28788
28973
  border-top: none !important;
28789
28974
  border-left: none !important;
28790
28975
  border-right: none !important;
28791
- border-bottom: 1px solid var(--border-color) !important;
28976
+ border-bottom: 1px solid var(--border-light) !important;
28792
28977
  background: transparent !important;
28793
28978
  }
28794
28979
  .mint-dataframe__th--sm {
@@ -28810,15 +28995,18 @@ html.dark .mint-calendar__day--in-range {
28810
28995
  text-align: right;
28811
28996
  }
28812
28997
  .mint-dataframe__th--sortable {
28998
+ position: relative;
28813
28999
  cursor: pointer;
28814
29000
  user-select: none;
28815
- transition: color 0.15s ease;
29001
+ transition: color 0.15s ease, background-color 0.15s ease;
28816
29002
  }
28817
29003
  .mint-dataframe__th--sortable:hover {
28818
- color: var(--text-primary);
29004
+ background-color: color-mix(in srgb, var(--color-primary) 6%, transparent) !important;
29005
+ color: var(--text-primary) !important;
28819
29006
  }
28820
29007
  .mint-dataframe__th--sorted {
28821
- color: var(--color-primary);
29008
+ color: var(--color-primary) !important;
29009
+ background-color: color-mix(in srgb, var(--color-primary) 8%, transparent) !important;
28822
29010
  }
28823
29011
  .mint-dataframe__th--checkbox {
28824
29012
  width: 2.5rem;
@@ -28829,6 +29017,7 @@ html.dark .mint-calendar__day--in-range {
28829
29017
  display: inline-flex;
28830
29018
  align-items: center;
28831
29019
  gap: 0.25rem;
29020
+ min-height: 1.25rem;
28832
29021
  }
28833
29022
  /* Sort icon */
28834
29023
  .mint-dataframe__sort-icon {
@@ -28852,7 +29041,7 @@ html.dark .mint-calendar__day--in-range {
28852
29041
  border-top: none !important;
28853
29042
  border-left: none !important;
28854
29043
  border-right: none !important;
28855
- border-bottom: 1px solid var(--border-color) !important;
29044
+ border-bottom: 1px solid var(--border-light) !important;
28856
29045
  background: transparent !important;
28857
29046
  transition: background-color 0.15s ease, box-shadow 0.15s ease;
28858
29047
  }
@@ -28892,13 +29081,20 @@ html.dark .mint-calendar__day--in-range {
28892
29081
  cursor: pointer;
28893
29082
  accent-color: var(--color-primary);
28894
29083
  }
29084
+ .mint-dataframe__checkbox:focus-visible {
29085
+ outline: none;
29086
+ box-shadow: var(--focus-ring);
29087
+ }
28895
29088
  /* Row */
28896
29089
  .mint-dataframe__row {
28897
- transition: background-color 0.1s ease;
29090
+ transition: background-color 0.15s ease;
28898
29091
  }
28899
29092
  .mint-dataframe__row:hover {
28900
29093
  background-color: var(--bg-hover);
28901
29094
  }
29095
+ .mint-dataframe__row:hover > .mint-dataframe__td {
29096
+ background-color: var(--bg-hover) !important;
29097
+ }
28902
29098
  .mint-dataframe__row--clickable {
28903
29099
  cursor: pointer;
28904
29100
  }
@@ -28921,16 +29117,31 @@ html.dark .mint-calendar__day--in-range {
28921
29117
  outline-offset: -2px;
28922
29118
  }
28923
29119
  .mint-dataframe__row--striped {
28924
- background-color: var(--bg-tertiary);
29120
+ background-color: color-mix(in srgb, var(--bg-secondary) 62%, transparent);
29121
+ }
29122
+ .mint-dataframe__row--striped > .mint-dataframe__td {
29123
+ background-color: color-mix(in srgb, var(--bg-secondary) 62%, transparent) !important;
28925
29124
  }
28926
29125
  .mint-dataframe__row--striped:hover {
28927
29126
  background-color: var(--bg-hover);
28928
29127
  }
29128
+ .mint-dataframe__row--striped:hover > .mint-dataframe__td {
29129
+ background-color: var(--bg-hover) !important;
29130
+ }
28929
29131
  .mint-dataframe__row--selected {
28930
- background-color: rgba(59, 130, 246, 0.08);
29132
+ background-color: color-mix(in srgb, var(--color-primary) 9%, transparent);
29133
+ }
29134
+ .mint-dataframe__row--selected > .mint-dataframe__td {
29135
+ background-color: color-mix(in srgb, var(--color-primary) 9%, transparent) !important;
29136
+ }
29137
+ .mint-dataframe__row--selected > .mint-dataframe__td:first-child {
29138
+ box-shadow: inset 3px 0 0 var(--color-primary);
28931
29139
  }
28932
29140
  html.dark .mint-dataframe__row--selected {
28933
- background-color: rgba(59, 130, 246, 0.15);
29141
+ background-color: color-mix(in srgb, var(--color-primary) 18%, transparent);
29142
+ }
29143
+ html.dark .mint-dataframe__row--selected > .mint-dataframe__td {
29144
+ background-color: color-mix(in srgb, var(--color-primary) 18%, transparent) !important;
28934
29145
  }
28935
29146
  .mint-dataframe__row:last-child .mint-dataframe__td {
28936
29147
  border-bottom: none;
@@ -28941,8 +29152,10 @@ html.dark .mint-dataframe__row--selected {
28941
29152
  flex-direction: column;
28942
29153
  align-items: center;
28943
29154
  justify-content: center;
28944
- padding: 2rem;
29155
+ min-height: 12rem;
29156
+ padding: 2.5rem 2rem;
28945
29157
  color: var(--text-muted);
29158
+ background-color: var(--bg-primary);
28946
29159
  }
28947
29160
  .mint-dataframe__empty-icon {
28948
29161
  width: 2.5rem;
@@ -28963,7 +29176,9 @@ html.dark .mint-dataframe__row--selected {
28963
29176
  display: flex;
28964
29177
  align-items: center;
28965
29178
  justify-content: center;
28966
- background-color: rgba(255, 255, 255, 0.6);
29179
+ background-color: color-mix(in srgb, var(--bg-primary) 74%, transparent);
29180
+ backdrop-filter: blur(2px);
29181
+ -webkit-backdrop-filter: blur(2px);
28967
29182
  z-index: 3;
28968
29183
  }
28969
29184
  html.dark .mint-dataframe__loading {
@@ -28984,9 +29199,9 @@ html.dark .mint-dataframe__loading {
28984
29199
  display: flex;
28985
29200
  align-items: center;
28986
29201
  justify-content: space-between;
28987
- padding: 0.5rem 0.75rem;
28988
- border-top: 1px solid var(--border-color);
28989
- background-color: var(--bg-tertiary);
29202
+ padding: 0.625rem 0.75rem;
29203
+ border-top: 1px solid var(--border-light);
29204
+ background-color: color-mix(in srgb, var(--bg-secondary) 88%, transparent);
28990
29205
  }
28991
29206
  .mint-dataframe__page-info {
28992
29207
  font-size: 0.75rem;
@@ -29010,14 +29225,19 @@ html.dark .mint-dataframe__loading {
29010
29225
  width: 1.75rem;
29011
29226
  height: 1.75rem;
29012
29227
  border: 1px solid var(--border-color);
29013
- border-radius: var(--radius-sm);
29014
- background: var(--bg-secondary);
29228
+ border-radius: var(--radius-md);
29229
+ background: var(--bg-primary);
29015
29230
  color: var(--text-secondary);
29016
29231
  cursor: pointer;
29017
- transition: background-color 0.15s ease, color 0.15s ease;
29232
+ transition:
29233
+ background-color 0.15s ease,
29234
+ border-color 0.15s ease,
29235
+ color 0.15s ease,
29236
+ box-shadow 0.15s ease;
29018
29237
  }
29019
29238
  .mint-dataframe__page-btn:hover:not(:disabled) {
29020
29239
  background-color: var(--bg-hover);
29240
+ border-color: var(--color-primary);
29021
29241
  color: var(--text-primary);
29022
29242
  }
29023
29243
  .mint-dataframe__page-btn:disabled {
@@ -30463,6 +30683,7 @@ html.dark .mint-dataframe__loading {
30463
30683
  display: flex;
30464
30684
  flex-direction: column;
30465
30685
  gap: 1rem;
30686
+ min-height: 0;
30466
30687
  }
30467
30688
  .mint-settings-modal__tabs {
30468
30689
  display: flex;
@@ -30566,7 +30787,9 @@ html.dark .mint-settings-modal__option-btn--active {
30566
30787
  flex-direction: row;
30567
30788
  gap: 1.25rem;
30568
30789
  align-items: stretch;
30790
+ height: clamp(22rem, calc(100vh - 9rem), 42rem);
30569
30791
  min-height: 22rem;
30792
+ overflow: hidden;
30570
30793
  }
30571
30794
  .mint-settings-modal__rail {
30572
30795
  flex-shrink: 0;
@@ -30574,15 +30797,18 @@ html.dark .mint-settings-modal__option-btn--active {
30574
30797
  display: flex;
30575
30798
  flex-direction: column;
30576
30799
  gap: 0.125rem;
30577
- padding-right: 0.75rem;
30800
+ padding: 0.125rem 0.75rem 0.125rem 0;
30578
30801
  border-right: 1px solid var(--border-light);
30802
+ overflow: hidden;
30579
30803
  }
30580
30804
  .mint-settings-modal__rail-item {
30805
+ position: relative;
30581
30806
  display: flex;
30582
30807
  align-items: flex-start;
30583
30808
  gap: 0.625rem;
30584
30809
  width: 100%;
30585
- padding: 0.5rem 0.75rem;
30810
+ min-height: 2.5rem;
30811
+ padding: 0.5rem 0.75rem 0.5rem 0.875rem;
30586
30812
  font-size: 0.8125rem;
30587
30813
  font-weight: 500;
30588
30814
  color: var(--text-secondary);
@@ -30607,6 +30833,16 @@ html.dark .mint-settings-modal__option-btn--active {
30607
30833
  color: var(--color-primary);
30608
30834
  background-color: color-mix(in srgb, var(--color-primary) 10%, transparent);
30609
30835
  }
30836
+ .mint-settings-modal__rail-item--active::before {
30837
+ content: "";
30838
+ position: absolute;
30839
+ left: 0.375rem;
30840
+ top: 0.625rem;
30841
+ bottom: 0.625rem;
30842
+ width: 2px;
30843
+ border-radius: 9999px;
30844
+ background-color: var(--color-primary);
30845
+ }
30610
30846
  html.dark .mint-settings-modal__rail-item--active {
30611
30847
  background-color: color-mix(in srgb, var(--color-primary) 18%, transparent);
30612
30848
  }
@@ -30635,12 +30871,14 @@ html.dark .mint-settings-modal__rail-item--active {
30635
30871
  }
30636
30872
  .mint-settings-modal__rail-item-label {
30637
30873
  line-height: 1.3;
30874
+ overflow-wrap: anywhere;
30638
30875
  }
30639
30876
  .mint-settings-modal__rail-item-description {
30640
30877
  font-size: 0.6875rem;
30641
30878
  font-weight: 400;
30642
30879
  color: var(--text-muted);
30643
30880
  line-height: 1.35;
30881
+ overflow-wrap: anywhere;
30644
30882
  }
30645
30883
  .mint-settings-modal__rail-item--active .mint-settings-modal__rail-item-description {
30646
30884
  color: color-mix(in srgb, var(--color-primary) 65%, var(--text-secondary));
@@ -30648,10 +30886,18 @@ html.dark .mint-settings-modal__rail-item--active {
30648
30886
  .mint-settings-modal__pane {
30649
30887
  flex: 1;
30650
30888
  min-width: 0;
30889
+ min-height: 0;
30651
30890
  display: flex;
30652
30891
  flex-direction: column;
30892
+ overflow: hidden;
30893
+ }
30894
+ .mint-settings-modal__pane:focus-visible {
30895
+ outline: none;
30896
+ box-shadow: var(--focus-ring);
30897
+ border-radius: var(--radius-md);
30653
30898
  }
30654
30899
  .mint-settings-modal__pane-header {
30900
+ flex-shrink: 0;
30655
30901
  margin-bottom: 1rem;
30656
30902
  padding-bottom: 0.75rem;
30657
30903
  border-bottom: 1px solid var(--border-light);
@@ -30675,8 +30921,27 @@ html.dark .mint-settings-modal__rail-item--active {
30675
30921
  .mint-settings-modal__pane-body {
30676
30922
  flex: 1;
30677
30923
  min-height: 0;
30924
+ overflow-y: auto;
30925
+ scrollbar-width: thin;
30678
30926
  /* Trailing breathing room so the last field doesn't hug the modal border */
30679
- padding-bottom: 0.25rem;
30927
+ padding: 0 0.5rem 0.25rem 0;
30928
+ margin-right: -0.25rem;
30929
+ overscroll-behavior: contain;
30930
+ }
30931
+ .mint-settings-modal__pane-body::-webkit-scrollbar {
30932
+ width: 0.5rem;
30933
+ }
30934
+ .mint-settings-modal__pane-body::-webkit-scrollbar-track {
30935
+ background: transparent;
30936
+ }
30937
+ .mint-settings-modal__pane-body::-webkit-scrollbar-thumb {
30938
+ background-color: color-mix(in srgb, var(--text-muted) 30%, transparent);
30939
+ border: 2px solid transparent;
30940
+ border-radius: 9999px;
30941
+ background-clip: content-box;
30942
+ }
30943
+ .mint-settings-modal__pane-body::-webkit-scrollbar-thumb:hover {
30944
+ background-color: color-mix(in srgb, var(--text-muted) 45%, transparent);
30680
30945
  }
30681
30946
  /* Mobile — collapse the rail into a horizontal scroll-strip so the modal stays usable.
30682
30947
  * Touch targets stay ≥40px tall via 0.5rem vertical padding + 1rem text line-height. */
@@ -30684,7 +30949,10 @@ html.dark .mint-settings-modal__rail-item--active {
30684
30949
  .mint-settings-modal--vertical {
30685
30950
  flex-direction: column;
30686
30951
  gap: 0.875rem;
30952
+ height: auto;
30953
+ max-height: none;
30687
30954
  min-height: 0;
30955
+ overflow: visible;
30688
30956
  }
30689
30957
 
30690
30958
  .mint-settings-modal__rail {
@@ -30704,6 +30972,10 @@ html.dark .mint-settings-modal__rail-item--active {
30704
30972
  padding: 0.5rem 0.75rem;
30705
30973
  }
30706
30974
 
30975
+ .mint-settings-modal__rail-item--active::before {
30976
+ display: none;
30977
+ }
30978
+
30707
30979
  /* Two-line description hides on mobile so the rail strip stays compact */
30708
30980
  .mint-settings-modal__rail-item-description {
30709
30981
  display: none;
@@ -32905,6 +33177,7 @@ html.dark .mint-settings-modal__rail-item--active {
32905
33177
  display: flex;
32906
33178
  flex-direction: column;
32907
33179
  gap: 0.75rem;
33180
+ min-height: 0;
32908
33181
  }
32909
33182
  /* Shared filter row layout */
32910
33183
  .mint-experiment-selector__filters-row,
@@ -32933,24 +33206,39 @@ html.dark .mint-settings-modal__rail-item--active {
32933
33206
  display: inline-flex;
32934
33207
  align-items: center;
32935
33208
  gap: 0.375rem;
32936
- padding: 0.375rem 0.625rem;
33209
+ min-height: 2.25rem;
33210
+ padding: 0.5rem 0.75rem;
32937
33211
  border: 1px solid var(--border-color);
32938
- border-radius: var(--radius-sm);
33212
+ border-radius: var(--radius-md);
32939
33213
  background: var(--bg-primary);
32940
33214
  color: var(--text-secondary);
32941
33215
  font-size: 0.8125rem;
33216
+ font-weight: 500;
32942
33217
  cursor: pointer;
32943
33218
  white-space: nowrap;
32944
33219
  position: relative;
32945
- transition: border-color 0.15s ease, color 0.15s ease;
33220
+ transition:
33221
+ background-color 0.15s ease,
33222
+ border-color 0.15s ease,
33223
+ color 0.15s ease,
33224
+ box-shadow 0.15s ease;
32946
33225
  }
32947
33226
  .mint-experiment-selector__filters-toggle:hover {
32948
33227
  border-color: var(--color-primary);
33228
+ background-color: var(--bg-hover);
32949
33229
  color: var(--text-primary);
32950
33230
  }
33231
+ .mint-experiment-selector__filters-toggle:focus-visible {
33232
+ outline: none;
33233
+ box-shadow: var(--focus-ring);
33234
+ }
32951
33235
  .mint-experiment-selector__filters-toggle--active {
32952
33236
  color: var(--color-primary);
32953
33237
  border-color: var(--color-primary);
33238
+ background-color: color-mix(in srgb, var(--color-primary) 8%, transparent);
33239
+ }
33240
+ html.dark .mint-experiment-selector__filters-toggle--active {
33241
+ background-color: color-mix(in srgb, var(--color-primary) 16%, transparent);
32954
33242
  }
32955
33243
  /* Active filter badge dot */
32956
33244
  .mint-experiment-selector__filters-dot {
@@ -32962,13 +33250,17 @@ html.dark .mint-settings-modal__rail-item--active {
32962
33250
  }
32963
33251
  /* Advanced filters row */
32964
33252
  .mint-experiment-selector__filters-advanced {
32965
- padding-top: 0.25rem;
33253
+ padding: 0.625rem;
33254
+ border: 1px solid var(--border-light);
33255
+ border-radius: var(--radius-md);
33256
+ background-color: color-mix(in srgb, var(--bg-secondary) 72%, transparent);
32966
33257
  }
32967
33258
  /* Group toggle checkbox label */
32968
33259
  .mint-experiment-selector__group-toggle {
32969
33260
  display: inline-flex;
32970
33261
  align-items: center;
32971
33262
  gap: 0.375rem;
33263
+ min-height: 2.25rem;
32972
33264
  font-size: 0.8125rem;
32973
33265
  color: var(--text-secondary);
32974
33266
  cursor: pointer;
@@ -32977,18 +33269,22 @@ html.dark .mint-settings-modal__rail-item--active {
32977
33269
  margin-left: auto;
32978
33270
  }
32979
33271
  .mint-experiment-selector__group-checkbox {
32980
- width: 14px;
32981
- height: 14px;
33272
+ width: 1rem;
33273
+ height: 1rem;
32982
33274
  accent-color: var(--color-primary);
32983
33275
  cursor: pointer;
32984
33276
  }
33277
+ .mint-experiment-selector__group-checkbox:focus-visible {
33278
+ outline: none;
33279
+ box-shadow: var(--focus-ring);
33280
+ }
32985
33281
  /* Loading skeleton */
32986
33282
  .mint-experiment-selector__skeleton {
32987
33283
  display: flex;
32988
33284
  flex-direction: column;
32989
- gap: 1px;
32990
33285
  border: 1px solid var(--border-color);
32991
- border-radius: var(--radius);
33286
+ border-radius: var(--radius-md);
33287
+ overflow: hidden;
32992
33288
  }
32993
33289
  .mint-experiment-selector__skeleton-row {
32994
33290
  display: flex;
@@ -33006,29 +33302,46 @@ html.dark .mint-settings-modal__rail-item--active {
33006
33302
  /* Error */
33007
33303
  .mint-experiment-selector__error {
33008
33304
  padding: 0.75rem;
33009
- border-radius: var(--radius-sm);
33305
+ border: 1px solid color-mix(in srgb, var(--mint-error) 30%, transparent);
33306
+ border-radius: var(--radius-md);
33010
33307
  background-color: var(--mint-error-bg);
33011
33308
  color: var(--mint-error);
33012
33309
  font-size: 0.875rem;
33013
33310
  }
33014
33311
  /* Scrollable list */
33015
33312
  .mint-experiment-selector__list {
33016
- max-height: 400px;
33313
+ max-height: min(28rem, calc(100vh - 16rem));
33017
33314
  overflow-y: auto;
33018
33315
  display: flex;
33019
33316
  flex-direction: column;
33020
- gap: 1px;
33021
33317
  border: 1px solid var(--border-color);
33022
- border-radius: var(--radius);
33318
+ border-radius: var(--radius-md);
33319
+ background-color: var(--bg-primary);
33320
+ scrollbar-width: thin;
33321
+ overscroll-behavior: contain;
33322
+ }
33323
+ .mint-experiment-selector__list::-webkit-scrollbar {
33324
+ width: 0.5rem;
33325
+ }
33326
+ .mint-experiment-selector__list::-webkit-scrollbar-track {
33327
+ background: transparent;
33328
+ }
33329
+ .mint-experiment-selector__list::-webkit-scrollbar-thumb {
33330
+ background-color: color-mix(in srgb, var(--text-muted) 30%, transparent);
33331
+ border: 2px solid transparent;
33332
+ border-radius: 9999px;
33333
+ background-clip: content-box;
33023
33334
  }
33024
33335
  /* Project group header */
33025
33336
  .mint-experiment-selector__group-header {
33026
33337
  display: flex;
33027
33338
  align-items: center;
33028
33339
  gap: 0.5rem;
33029
- padding: 0.5rem 1rem;
33030
- background-color: var(--bg-secondary, var(--bg-primary));
33340
+ min-height: 2.5rem;
33341
+ padding: 0.5rem 0.875rem;
33342
+ background-color: color-mix(in srgb, var(--bg-secondary) 82%, transparent);
33031
33343
  border: none;
33344
+ border-bottom: 1px solid var(--border-light);
33032
33345
  cursor: pointer;
33033
33346
  width: 100%;
33034
33347
  text-align: left;
@@ -33042,6 +33355,10 @@ html.dark .mint-settings-modal__rail-item--active {
33042
33355
  .mint-experiment-selector__group-header:hover {
33043
33356
  background-color: var(--bg-hover);
33044
33357
  }
33358
+ .mint-experiment-selector__group-header:focus-visible {
33359
+ outline: none;
33360
+ box-shadow: inset 0 0 0 2px var(--color-primary);
33361
+ }
33045
33362
  .mint-experiment-selector__group-chevron {
33046
33363
  flex-shrink: 0;
33047
33364
  transition: transform 0.15s ease;
@@ -33071,22 +33388,25 @@ html.dark .mint-settings-modal__rail-item--active {
33071
33388
  }
33072
33389
  /* Row */
33073
33390
  .mint-experiment-selector__row {
33391
+ position: relative;
33074
33392
  display: flex;
33075
33393
  align-items: center;
33076
33394
  gap: 0.75rem;
33077
- padding: 0.75rem 1rem;
33395
+ min-height: 4.125rem;
33396
+ padding: 0.75rem 1rem 0.75rem 1.125rem;
33078
33397
  cursor: pointer;
33079
- border-left: 3px solid transparent;
33398
+ border-left: 0 solid transparent;
33399
+ border-bottom: 1px solid var(--border-light);
33080
33400
  background-color: var(--bg-primary);
33081
33401
  transition:
33082
33402
  background-color 0.15s ease,
33083
- border-color 0.15s ease;
33403
+ box-shadow 0.15s ease;
33084
33404
  }
33085
33405
  .mint-experiment-selector__row:hover {
33086
33406
  background-color: var(--bg-hover);
33087
33407
  }
33088
33408
  .mint-experiment-selector__row--active {
33089
- border-left-color: var(--color-primary);
33409
+ box-shadow: inset 3px 0 0 var(--color-primary);
33090
33410
  background-color: var(--color-primary-soft);
33091
33411
  }
33092
33412
  .mint-experiment-selector__row--active:hover {
@@ -33095,9 +33415,10 @@ html.dark .mint-settings-modal__rail-item--active {
33095
33415
  /* Keyboard focused row */
33096
33416
  .mint-experiment-selector__row--focused {
33097
33417
  background-color: var(--bg-hover);
33098
- outline: 2px solid var(--color-primary);
33099
- outline-offset: -2px;
33100
- border-radius: 2px;
33418
+ outline: none;
33419
+ box-shadow:
33420
+ inset 0 0 0 2px var(--color-primary),
33421
+ inset 3px 0 0 var(--color-primary);
33101
33422
  }
33102
33423
  .mint-experiment-selector__row--active.mint-experiment-selector__row--focused {
33103
33424
  background-color: var(--color-primary-soft);
@@ -33124,6 +33445,7 @@ html.dark .mint-settings-modal__rail-item--active {
33124
33445
  display: flex;
33125
33446
  align-items: center;
33126
33447
  gap: 0.5rem;
33448
+ flex-wrap: wrap;
33127
33449
  font-size: 0.75rem;
33128
33450
  color: var(--text-muted);
33129
33451
  margin-top: 0.125rem;
@@ -33149,6 +33471,11 @@ html.dark .mint-settings-modal__rail-item--active {
33149
33471
  color: var(--color-primary);
33150
33472
  text-decoration-color: var(--color-primary);
33151
33473
  }
33474
+ .mint-experiment-selector__clear-btn:focus-visible {
33475
+ outline: none;
33476
+ box-shadow: var(--focus-ring);
33477
+ border-radius: var(--radius-sm);
33478
+ }
33152
33479
  /* ExperimentPopover — aligned with refresh design (AppPluginSwitcher / AppTopBar page selector) */
33153
33480
  /* Container */
33154
33481
  .mint-experiment-popover {