Added shadow effect on table cell hover (#258)
Added shadow effect to replace border resizing components
This commit is contained in:
@ -10,6 +10,16 @@ export const EditableCellNormalModeOuterContainer = styled.div`
|
|||||||
|
|
||||||
padding-left: ${(props) => props.theme.spacing(2)};
|
padding-left: ${(props) => props.theme.spacing(2)};
|
||||||
padding-right: ${(props) => props.theme.spacing(1)};
|
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`
|
export const EditableCellNormalModeInnerContainer = styled.div`
|
||||||
|
|||||||
Reference in New Issue
Block a user