@eturnity/eturnity_reusable_components 1.0.88 → 1.0.92
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/package.json
CHANGED
|
@@ -73,13 +73,13 @@ const Container = styled("label", containerAttrs)`
|
|
|
73
73
|
? "16px"
|
|
74
74
|
: "25px"};
|
|
75
75
|
background-color: ${(props) =>
|
|
76
|
-
props.
|
|
77
|
-
? props.theme.colors.lightGray
|
|
78
|
-
: !props.isChecked
|
|
79
|
-
? "#fff"
|
|
80
|
-
: props.backgroundColor
|
|
76
|
+
props.isChecked
|
|
81
77
|
? props.backgroundColor
|
|
82
|
-
|
|
78
|
+
? props.backgroundColor
|
|
79
|
+
: props.theme.colors.green
|
|
80
|
+
: props.isDisabled
|
|
81
|
+
? props.theme.colors.lightGray
|
|
82
|
+
: "#fff"};
|
|
83
83
|
border-radius: 4px;
|
|
84
84
|
border: 1px solid
|
|
85
85
|
${(props) =>
|
|
@@ -109,7 +109,7 @@ const TableContainer = styled.table`
|
|
|
109
109
|
}
|
|
110
110
|
|
|
111
111
|
td {
|
|
112
|
-
padding:
|
|
112
|
+
padding: 6px 15px 7px 10px;
|
|
113
113
|
border-bottom: 1px solid ${(props) => props.theme.colors.grey4};
|
|
114
114
|
|
|
115
115
|
&.empty {
|
|
@@ -197,6 +197,7 @@ const TableContainer = styled.table`
|
|
|
197
197
|
.text {
|
|
198
198
|
padding: 10px 15px 10px 15px;
|
|
199
199
|
color: ${(props) => props.theme.colors.black};
|
|
200
|
+
cursor: auto;
|
|
200
201
|
}
|
|
201
202
|
|
|
202
203
|
.bold {
|
|
@@ -312,6 +313,7 @@ const TableContainer = styled.table`
|
|
|
312
313
|
font-size: 13px;
|
|
313
314
|
padding: 5px 10px;
|
|
314
315
|
background: #fff;
|
|
316
|
+
min-width: max-content;
|
|
315
317
|
|
|
316
318
|
&:focus {
|
|
317
319
|
background: ${(props) => props.theme.colors.grey5};
|