Added shadow effect on table cell hover (#258)

Added shadow effect to replace border resizing components
This commit is contained in:
Lucas Bordeau 2023-06-09 11:06:01 +02:00 committed by GitHub
parent 024adb9221
commit ab1f1a3f67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,6 +10,16 @@ export const EditableCellNormalModeOuterContainer = styled.div`
padding-left: ${(props) => props.theme.spacing(2)};
padding-right: ${(props) => props.theme.spacing(1)};
&:hover {
background: ${(props) => props.theme.secondaryBackgroundTransparent};
-webkit-box-shadow: inset 0 0 0 1px ${(props) => props.theme.text20};
-moz-box-shadow: inset 0 0 0 1px ${(props) => props.theme.text20};
box-shadow: inset 0 0 0 1px ${(props) => props.theme.text20};
border-radius: ${(props) => props.theme.borderRadius};
}
`;
export const EditableCellNormalModeInnerContainer = styled.div`