46 lines
1.2 KiB
TypeScript
46 lines
1.2 KiB
TypeScript
import { ReactElement } from 'react';
|
|
import styled from '@emotion/styled';
|
|
|
|
export const EditableCellNormalModeOuterContainer = styled.div`
|
|
align-items: center;
|
|
display: flex;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
padding-left: ${(props) => props.theme.spacing(2)};
|
|
|
|
padding-right: ${(props) => props.theme.spacing(1)};
|
|
width: 100%;
|
|
|
|
&:hover {
|
|
-moz-box-shadow: inset 0 0 0 1px ${(props) => props.theme.text20};
|
|
|
|
-webkit-box-shadow: inset 0 0 0 1px ${(props) => props.theme.text20};
|
|
background: ${(props) => props.theme.secondaryBackgroundTransparent};
|
|
border-radius: ${(props) => props.theme.borderRadius};
|
|
|
|
box-shadow: inset 0 0 0 1px ${(props) => props.theme.text20};
|
|
}
|
|
`;
|
|
|
|
export const EditableCellNormalModeInnerContainer = styled.div`
|
|
align-items: center;
|
|
display: flex;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
width: 100%;
|
|
`;
|
|
|
|
type OwnProps = {
|
|
children: ReactElement;
|
|
};
|
|
|
|
export function EditableCellDisplayMode({ children }: OwnProps) {
|
|
return (
|
|
<EditableCellNormalModeOuterContainer>
|
|
<EditableCellNormalModeInnerContainer>
|
|
{children}
|
|
</EditableCellNormalModeInnerContainer>
|
|
</EditableCellNormalModeOuterContainer>
|
|
);
|
|
}
|