Michael Schramm 9f466b5c27 fix #8 and #7
2020-06-02 11:26:20 +02:00

52 lines
1.3 KiB
TypeScript

import {Select} from 'antd'
import {SelectProps} from 'antd/lib/select'
import React from 'react'
import styled from 'styled-components'
import {FormDesignFragment} from '../../graphql/fragment/form.fragment'
import {transparentize} from './color.change'
interface Props extends SelectProps<string> {
design: FormDesignFragment
}
const Field = styled(Select)`
.ant-select-selector {
color: ${props => props.design.colors.answerColor};
border-color: ${props => props.design.colors.answerColor} !important;
background: none !important;
border-right: none !important;
border-top: none !important;
border-left: none !important;
border-radius: 0 !important;
box-shadow: none !important;
}
:focus {
outline: ${props => props.design.colors.answerColor} auto 5px
}
:hover,
:active {
border-color: ${props => props.design.colors.answerColor};
}
input {
background: none !important;
color: ${props => props.design.colors.answerColor};
::placeholder {
color: ${props => transparentize(props.design.colors.answerColor, 60)}
}
}
.anticon {
color: ${props => props.design.colors.answerColor};
}
`
export const StyledSelect: React.FC<Props> = ({children, ...props}) => {
return (
<Field {...props}>{children}</Field>
)
}