mirror of
https://github.com/twentyhq/twenty.git
synced 2024-11-30 13:42:01 +03:00
Added shadow effect on table cell hover (#258)
Added shadow effect to replace border resizing components
This commit is contained in:
parent
024adb9221
commit
ab1f1a3f67
@ -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`
|
||||
|
Loading…
Reference in New Issue
Block a user