bitque/react-client/src/shared/components/Input/Styles.js
2020-03-31 14:28:30 +02:00

51 lines
1.1 KiB
JavaScript

import styled, { css } from 'styled-components';
import { color, font } from 'shared/utils/styles';
import Icon from 'shared/components/Icon';
export const StyledInput = styled.div`
position: relative;
display: inline-block;
height: 32px;
width: 100%;
`;
export const InputElement = styled.input`
height: 100%;
width: 100%;
padding: 0 7px;
border-radius: 3px;
border: 1px solid ${color.borderLightest};
color: ${color.textDarkest};
background: ${color.backgroundLightest};
transition: background 0.1s;
${font.regular}
font-size: 15px
${props => props.hasIcon && 'padding-left: 32px;'}
&:hover {
background: ${color.backgroundLight};
}
&:focus {
background: #fff;
border: 1px solid ${color.borderInputFocus};
box-shadow: 0 0 0 1px ${color.borderInputFocus};
}
${props =>
props.invalid &&
css`
&,
&:focus {
border: 1px solid ${color.danger};
box-shadow: none;
}
`}
`;
export const StyledIcon = styled(Icon)`
position: absolute;
top: 8px;
left: 8px;
pointer-events: none;
color: ${color.textMedium};
`;