funuicss 3.5.2 → 3.5.3
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/css/fun.css +10 -3
- package/package.json +1 -1
package/css/fun.css
CHANGED
|
@@ -3519,8 +3519,14 @@ background-color: rgba(var(--borderRgb), 0.3);
|
|
|
3519
3519
|
|
|
3520
3520
|
}
|
|
3521
3521
|
|
|
3522
|
-
|
|
3523
|
-
|
|
3522
|
+
.custom-select {
|
|
3523
|
+
position: relative;
|
|
3524
|
+
width: 100%;
|
|
3525
|
+
border-radius: var(--InputButtonBorderRadius);
|
|
3526
|
+
/* FIX: Create a new stacking context and ensure proper layering */
|
|
3527
|
+
z-index: 999;
|
|
3528
|
+
isolation: isolate;
|
|
3529
|
+
}
|
|
3524
3530
|
|
|
3525
3531
|
.custom-select.fullWidth {max-width: none;}
|
|
3526
3532
|
|
|
@@ -3635,7 +3641,8 @@ visibility: hidden;
|
|
|
3635
3641
|
transform: translateY(-10px);
|
|
3636
3642
|
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
3637
3643
|
box-shadow: var(--card);
|
|
3638
|
-
z-index
|
|
3644
|
+
/* FIX: Increased z-index and ensure it's above the parent's stacking context */
|
|
3645
|
+
z-index: 1001 !important;
|
|
3639
3646
|
}
|
|
3640
3647
|
|
|
3641
3648
|
.select-dropdown.open {
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "3.5.
|
|
2
|
+
"version": "3.5.3",
|
|
3
3
|
"name": "funuicss",
|
|
4
4
|
"description": "React and Next.js component UI Library for creating Easy and good looking websites with fewer lines of code. Elevate your web development experience with our cutting-edge React/Next.js component UI Library. Craft stunning websites effortlessly, boasting both seamless functionality and aesthetic appeal—all achieved with minimal lines of code. Unleash the power of simplicity and style in your projects!",
|
|
5
5
|
"main": "index.js",
|