@infomaximum/ui-kit 0.12.1 → 0.12.2
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.
|
@@ -33,12 +33,12 @@ export declare const getRadioButtonWrapperStyle: (theme: Theme, radioTokens: Rad
|
|
|
33
33
|
readonly content: "''";
|
|
34
34
|
readonly boxSizing: "content-box";
|
|
35
35
|
readonly position: "absolute";
|
|
36
|
-
readonly
|
|
37
|
-
readonly
|
|
38
|
-
readonly
|
|
39
|
-
readonly
|
|
40
|
-
readonly
|
|
41
|
-
readonly
|
|
36
|
+
readonly borderWidth: 1;
|
|
37
|
+
readonly borderLeftStyle: "solid";
|
|
38
|
+
readonly height: 28;
|
|
39
|
+
readonly borderColor: "#D9D9D9" | "#0CB3B3";
|
|
40
|
+
readonly top: -1;
|
|
41
|
+
readonly left: -1;
|
|
42
42
|
};
|
|
43
43
|
readonly ":hover": {
|
|
44
44
|
readonly color: "#2CBFBA" | undefined;
|
|
@@ -29,12 +29,12 @@ const getRadioButtonWrapperStyle = (theme, radioTokens, isRenderIcon, checked, d
|
|
|
29
29
|
content: "''",
|
|
30
30
|
boxSizing: "content-box",
|
|
31
31
|
position: "absolute",
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
32
|
+
borderWidth: 1,
|
|
33
|
+
borderLeftStyle: "solid",
|
|
34
|
+
height: theme.controlHeightM,
|
|
35
|
+
borderColor: checked && !disabled ? radioTokens.radioChecked : radioTokens.radioBorder,
|
|
36
|
+
top: -1,
|
|
37
|
+
left: -1
|
|
38
38
|
},
|
|
39
39
|
":hover": {
|
|
40
40
|
color: disabled || checked ? void 0 : "#2CBFBA"
|