@datafluxgrid/fluxgrid-css 1.0.17 → 1.0.18

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/css/forms.css +11 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datafluxgrid/fluxgrid-css",
3
- "version": "1.0.17",
3
+ "version": "1.0.18",
4
4
  "description": "A utility-first CSS framework with zero build step — dark mode, animations, forms, and a full design token system built in.",
5
5
  "main": "src/index.css",
6
6
  "files": [
package/src/css/forms.css CHANGED
@@ -691,3 +691,14 @@ input.c-select-toggle {
691
691
  margin-top: -7px;
692
692
  margin-left: -7px;
693
693
  }
694
+ .c-select-backdrop {
695
+ display: none;
696
+ position: fixed;
697
+ inset: 0;
698
+ z-index: 49;
699
+ cursor: default;
700
+ }
701
+
702
+ .c-select-toggle:checked ~ .c-select-backdrop {
703
+ display: block;
704
+ }