@eturnity/eturnity_reusable_components 1.0.95 → 1.0.98
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
|
@@ -127,7 +127,7 @@ import SearchInput from "@eturnity/eturnity_reusable_components/src/components/i
|
|
|
127
127
|
|
|
128
128
|
const rowAttrs = { disabled: Boolean }
|
|
129
129
|
const DropdownRow = styled("td", rowAttrs)`
|
|
130
|
-
cursor: ${(props) => (props.disabled ? "not-allowed" : "
|
|
130
|
+
cursor: ${(props) => (props.disabled ? "not-allowed" : "pointer")};
|
|
131
131
|
`
|
|
132
132
|
|
|
133
133
|
const ComponentItem = styled.div`
|
|
@@ -25,9 +25,10 @@ import Spinner from "../../spinner"
|
|
|
25
25
|
const PageContainer = styled.div``
|
|
26
26
|
|
|
27
27
|
const TableTitle = styled.div`
|
|
28
|
-
margin-bottom:
|
|
28
|
+
margin-bottom: 16px;
|
|
29
29
|
font-weight: bold;
|
|
30
|
-
font-size:
|
|
30
|
+
font-size: 14px;
|
|
31
|
+
text-transform: uppercase;
|
|
31
32
|
`
|
|
32
33
|
|
|
33
34
|
const TableScroll = styled.div`
|
|
@@ -180,7 +181,7 @@ const TableContainer = styled.table`
|
|
|
180
181
|
|
|
181
182
|
tr {
|
|
182
183
|
&.disabled {
|
|
183
|
-
cursor: not-allowed;
|
|
184
|
+
cursor: not-allowed !important;
|
|
184
185
|
}
|
|
185
186
|
|
|
186
187
|
.arrow-dropdown {
|
|
@@ -197,7 +198,7 @@ const TableContainer = styled.table`
|
|
|
197
198
|
.text {
|
|
198
199
|
padding: 10px 15px 10px 15px;
|
|
199
200
|
color: ${(props) => props.theme.colors.black};
|
|
200
|
-
cursor:
|
|
201
|
+
cursor: pointer;
|
|
201
202
|
}
|
|
202
203
|
|
|
203
204
|
.bold {
|