unifyedx-storybook-new 0.1.13 → 0.1.14

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.
@@ -2672,11 +2672,12 @@
2672
2672
  .wizard-body {
2673
2673
  flex-grow: 1;
2674
2674
  overflow-y: auto;
2675
- /* Prevent horizontal scrolling */
2676
- overflow-x: hidden;
2677
- position: relative;
2678
- /* Adjust padding if needed */
2679
- padding: 0;
2675
+ background-color: white;
2676
+ /* ⛔️ The "position: relative;" rule that was here should be REMOVED. */
2677
+
2678
+ /* Custom scrollbar styles */
2679
+ scrollbar-width: thin;
2680
+ scrollbar-color: #9ca3af #f3f4f6;
2680
2681
  }
2681
2682
 
2682
2683
  .wizard-body::-webkit-scrollbar {
@@ -2684,13 +2685,13 @@
2684
2685
  }
2685
2686
 
2686
2687
  .wizard-body::-webkit-scrollbar-track {
2687
- background: var(--wizard-scrollbar-bg);
2688
+ background: #f3f4f6;
2688
2689
  }
2689
2690
 
2690
2691
  .wizard-body::-webkit-scrollbar-thumb {
2691
- background-color: var(--wizard-scrollbar);
2692
+ background-color: #9ca3af;
2692
2693
  border-radius: 10px;
2693
- border: 2px solid var(--wizard-scrollbar-bg);
2694
+ border: 2px solid #f3f4f6;
2694
2695
  }
2695
2696
 
2696
2697
  .wizard-step {
@@ -2716,10 +2717,6 @@
2716
2717
  left: 0;
2717
2718
  width: 100%;
2718
2719
  height: 100%;
2719
- /* Add these properties to prevent horizontal overflow */
2720
- overflow-x: hidden;
2721
- padding: 0 1.5rem;
2722
- box-sizing: border-box; /* Include padding in width calculation */
2723
2720
  }
2724
2721
 
2725
2722
  @media (max-width: 640px) {
@@ -5929,6 +5926,64 @@
5929
5926
  color: #dc2626;
5930
5927
  margin-top: 0.25rem;
5931
5928
  }
5929
+ .search-bar-wrapper {
5930
+ position: relative;
5931
+ }
5932
+
5933
+ .search-bar-icon-wrapper {
5934
+ position: absolute;
5935
+ top: 0;
5936
+ bottom: 0;
5937
+ left: 0;
5938
+ display: flex;
5939
+ align-items: center;
5940
+ padding-left: 1rem; /* 16px */
5941
+ pointer-events: none;
5942
+ }
5943
+
5944
+ .search-bar-icon {
5945
+ height: 1.25rem; /* 20px */
5946
+ width: 1.25rem; /* 20px */
5947
+ color: #6b7280; /* gray-500 */
5948
+ }
5949
+
5950
+ .search-bar-input {
5951
+ display: block;
5952
+ width: 100%;
5953
+ border: 1px solid #d1d5db; /* gray-300 */
5954
+ border-radius: 18px;
5955
+ padding-top: 8px;
5956
+ padding-bottom: 8px;
5957
+ padding-left: 3rem; /* 48px to make space for the icon */
5958
+ padding-right: 1rem; /* 16px */
5959
+ color: #111827; /* gray-900 */
5960
+ font-size: 0.875rem; /* sm:text-sm */
5961
+ line-height: 1.25rem;
5962
+ }
5963
+
5964
+ .search-bar-input::placeholder {
5965
+ color: #9ca3af; /* gray-400 */
5966
+ }
5967
+
5968
+ .search-bar-input:focus {
5969
+ outline: 1px solid #0ea5e9; /* Or your preferred focus color */
5970
+ border-color: #0ea5e9;
5971
+ box-shadow: none; /* Replicates focus:ring-0 */
5972
+ }
5973
+
5974
+ /* A standard accessibility class to hide labels visually
5975
+ but keep them available for screen readers. */
5976
+ .sr-only {
5977
+ position: absolute;
5978
+ width: 1px;
5979
+ height: 1px;
5980
+ padding: 0;
5981
+ margin: -1px;
5982
+ overflow: hidden;
5983
+ clip: rect(0, 0, 0, 0);
5984
+ white-space: nowrap;
5985
+ border-width: 0;
5986
+ }
5932
5987
  /* --- CSS Variables --- */
5933
5988
  :root {
5934
5989
  /* Dimensions */
@@ -6682,25 +6737,23 @@
6682
6737
  .wizard-body {
6683
6738
  flex-grow: 1;
6684
6739
  overflow-y: auto;
6685
- /* Prevent horizontal scrolling */
6686
- overflow-x: hidden;
6687
- position: relative;
6688
- /* Adjust padding if needed */
6689
- padding: 0;
6690
- }
6740
+ background-color: white;
6741
+ /* ⛔️ The "position: relative;" rule that was here should be REMOVED. */
6691
6742
 
6743
+ /* Custom scrollbar styles */
6744
+ scrollbar-width: thin;
6745
+ scrollbar-color: #9ca3af #f3f4f6;
6746
+ }
6692
6747
  .wizard-body::-webkit-scrollbar {
6693
6748
  width: 8px;
6694
6749
  }
6695
-
6696
6750
  .wizard-body::-webkit-scrollbar-track {
6697
- background: var(--wizard-scrollbar-bg);
6751
+ background: #f3f4f6;
6698
6752
  }
6699
-
6700
6753
  .wizard-body::-webkit-scrollbar-thumb {
6701
- background-color: var(--wizard-scrollbar);
6754
+ background-color: #9ca3af;
6702
6755
  border-radius: 10px;
6703
- border: 2px solid var(--wizard-scrollbar-bg);
6756
+ border: 2px solid #f3f4f6;
6704
6757
  }
6705
6758
 
6706
6759
  .wizard-step {
@@ -6725,10 +6778,6 @@
6725
6778
  left: 0;
6726
6779
  width: 100%;
6727
6780
  height: 100%;
6728
- /* Add these properties to prevent horizontal overflow */
6729
- overflow-x: hidden;
6730
- padding: 0 1.5rem;
6731
- box-sizing: border-box; /* Include padding in width calculation */
6732
6781
  }
6733
6782
 
6734
6783
  @media (max-width: 640px) {
@@ -6748,64 +6797,6 @@
6748
6797
  padding: 0 1rem;
6749
6798
  }
6750
6799
  }
6751
- .search-bar-wrapper {
6752
- position: relative;
6753
- }
6754
-
6755
- .search-bar-icon-wrapper {
6756
- position: absolute;
6757
- top: 0;
6758
- bottom: 0;
6759
- left: 0;
6760
- display: flex;
6761
- align-items: center;
6762
- padding-left: 1rem; /* 16px */
6763
- pointer-events: none;
6764
- }
6765
-
6766
- .search-bar-icon {
6767
- height: 1.25rem; /* 20px */
6768
- width: 1.25rem; /* 20px */
6769
- color: #6b7280; /* gray-500 */
6770
- }
6771
-
6772
- .search-bar-input {
6773
- display: block;
6774
- width: 100%;
6775
- border: 1px solid #d1d5db; /* gray-300 */
6776
- border-radius: 18px;
6777
- padding-top: 8px;
6778
- padding-bottom: 8px;
6779
- padding-left: 3rem; /* 48px to make space for the icon */
6780
- padding-right: 1rem; /* 16px */
6781
- color: #111827; /* gray-900 */
6782
- font-size: 0.875rem; /* sm:text-sm */
6783
- line-height: 1.25rem;
6784
- }
6785
-
6786
- .search-bar-input::placeholder {
6787
- color: #9ca3af; /* gray-400 */
6788
- }
6789
-
6790
- .search-bar-input:focus {
6791
- outline: 1px solid #0ea5e9; /* Or your preferred focus color */
6792
- border-color: #0ea5e9;
6793
- box-shadow: none; /* Replicates focus:ring-0 */
6794
- }
6795
-
6796
- /* A standard accessibility class to hide labels visually
6797
- but keep them available for screen readers. */
6798
- .sr-only {
6799
- position: absolute;
6800
- width: 1px;
6801
- height: 1px;
6802
- padding: 0;
6803
- margin: -1px;
6804
- overflow: hidden;
6805
- clip: rect(0, 0, 0, 0);
6806
- white-space: nowrap;
6807
- border-width: 0;
6808
- }
6809
6800
  .page-layout {
6810
6801
  position: relative;
6811
6802
  width: 100%;