@itwin/itwinui-css 0.48.0 → 0.48.1
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/all.css +2 -0
- package/css/inputs.css +2 -0
- package/package.json +1 -1
- package/scss/inputs/radio.scss +5 -0
package/css/all.css
CHANGED
|
@@ -3461,6 +3461,8 @@ html.iui-theme-dark{
|
|
|
3461
3461
|
cursor:wait; }
|
|
3462
3462
|
.iui-radio:checked{
|
|
3463
3463
|
--_iui-checkbox-mask-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" ><circle cx="8" cy="8" r="4" /></svg>'); }
|
|
3464
|
+
.iui-radio:not(:checked), .iui-radio:indeterminate{
|
|
3465
|
+
--_iui-checkbox-mask-image:var(--_iui-checkbox-unchecked-svg); }
|
|
3464
3466
|
|
|
3465
3467
|
.iui-radio-tile-container{
|
|
3466
3468
|
display:inline-flex;
|
package/css/inputs.css
CHANGED
|
@@ -970,6 +970,8 @@
|
|
|
970
970
|
cursor:wait; }
|
|
971
971
|
.iui-radio:checked{
|
|
972
972
|
--_iui-checkbox-mask-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" ><circle cx="8" cy="8" r="4" /></svg>'); }
|
|
973
|
+
.iui-radio:not(:checked), .iui-radio:indeterminate{
|
|
974
|
+
--_iui-checkbox-mask-image:var(--_iui-checkbox-unchecked-svg); }
|
|
973
975
|
|
|
974
976
|
.iui-radio-tile-container{
|
|
975
977
|
display:inline-flex;
|
package/package.json
CHANGED
package/scss/inputs/radio.scss
CHANGED
|
@@ -14,4 +14,9 @@
|
|
|
14
14
|
&:checked {
|
|
15
15
|
--_iui-checkbox-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" ><circle cx="8" cy="8" r="4" /></svg>');
|
|
16
16
|
}
|
|
17
|
+
|
|
18
|
+
&:not(:checked),
|
|
19
|
+
&:indeterminate {
|
|
20
|
+
--_iui-checkbox-mask-image: var(--_iui-checkbox-unchecked-svg);
|
|
21
|
+
}
|
|
17
22
|
}
|