carbon-react 106.1.6 → 106.1.7
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.
|
@@ -75,7 +75,7 @@ const StyledFlatTable = styled.table`
|
|
|
75
75
|
${StyledFlatTableRow}:hover {
|
|
76
76
|
${StyledFlatTableCell},
|
|
77
77
|
${StyledFlatTableRowHeader},
|
|
78
|
-
${StyledFlatTableCheckbox} {
|
|
78
|
+
${StyledFlatTableCheckbox}:not(th) {
|
|
79
79
|
background-color: var(--colorsUtilityMajor025);
|
|
80
80
|
}
|
|
81
81
|
}
|
|
@@ -198,6 +198,7 @@ const StyledFlatTableFooter = styled.div`
|
|
|
198
198
|
}) => hasStickyFooter && css`
|
|
199
199
|
position: sticky;
|
|
200
200
|
bottom: 0px;
|
|
201
|
+
z-index: ${baseTheme.zIndex.overlay + 1};
|
|
201
202
|
`}
|
|
202
203
|
`;
|
|
203
204
|
export { StyledFlatTableWrapper, StyledFlatTable, StyledFlatTableFooter, StyledTableContainer };
|
|
@@ -99,7 +99,7 @@ const StyledFlatTable = _styledComponents.default.table`
|
|
|
99
99
|
${_flatTableRow.default}:hover {
|
|
100
100
|
${_flatTableCell.StyledFlatTableCell},
|
|
101
101
|
${_flatTableRowHeader.StyledFlatTableRowHeader},
|
|
102
|
-
${_flatTableCheckbox.default} {
|
|
102
|
+
${_flatTableCheckbox.default}:not(th) {
|
|
103
103
|
background-color: var(--colorsUtilityMajor025);
|
|
104
104
|
}
|
|
105
105
|
}
|
|
@@ -224,6 +224,7 @@ const StyledFlatTableFooter = _styledComponents.default.div`
|
|
|
224
224
|
}) => hasStickyFooter && (0, _styledComponents.css)`
|
|
225
225
|
position: sticky;
|
|
226
226
|
bottom: 0px;
|
|
227
|
+
z-index: ${_themes.baseTheme.zIndex.overlay + 1};
|
|
227
228
|
`}
|
|
228
229
|
`;
|
|
229
230
|
exports.StyledFlatTableFooter = StyledFlatTableFooter;
|