@bigtablet/design-system 1.14.2 → 1.14.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.
Files changed (2) hide show
  1. package/dist/index.css +17 -0
  2. package/package.json +1 -1
package/dist/index.css CHANGED
@@ -377,6 +377,23 @@
377
377
  opacity: 0.6;
378
378
  cursor: not-allowed;
379
379
  }
380
+ .checkbox_input:disabled:not(:checked):not(:indeterminate) + .checkbox_box::before,
381
+ .checkbox_input:disabled:not(:checked):not(:indeterminate) + .checkbox_box::after {
382
+ content: "";
383
+ position: absolute;
384
+ left: 50%;
385
+ top: 50%;
386
+ width: 0.7rem;
387
+ height: 2px;
388
+ background: #9ca3af;
389
+ border-radius: 9999px;
390
+ }
391
+ .checkbox_input:disabled:not(:checked):not(:indeterminate) + .checkbox_box::before {
392
+ transform: translate(-50%, -50%) rotate(45deg);
393
+ }
394
+ .checkbox_input:disabled:not(:checked):not(:indeterminate) + .checkbox_box::after {
395
+ transform: translate(-50%, -50%) rotate(-45deg);
396
+ }
380
397
  .checkbox_input:checked + .checkbox_box,
381
398
  .checkbox_input:indeterminate + .checkbox_box {
382
399
  background: #000000;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigtablet/design-system",
3
- "version": "1.14.2",
3
+ "version": "1.14.3",
4
4
  "description": "Bigtablet Design System UI Components",
5
5
  "type": "module",
6
6
  "types": "dist/index.d.ts",