@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.
- package/dist/index.css +17 -0
- 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;
|