|
|
|
@ -17,7 +17,7 @@ const StyledInput = styled.input<{
|
|
|
|
|
width: ${props => props.filledSize + props.outlineOffset}px;
|
|
|
|
|
height: ${props => props.filledSize + props.outlineOffset}px;
|
|
|
|
|
|
|
|
|
|
:checked + label:before {
|
|
|
|
|
&:checked + label:before {
|
|
|
|
|
background: ${props =>
|
|
|
|
|
props.disabled
|
|
|
|
|
? 'var(--disabled-color)'
|
|
|
|
@ -37,7 +37,7 @@ const StyledLabel = styled.label<{
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
color: ${props => (props.disabled ? 'var(--disabled-color)' : 'var(--text-primary-color)')};
|
|
|
|
|
|
|
|
|
|
:before {
|
|
|
|
|
&:before {
|
|
|
|
|
content: '';
|
|
|
|
|
display: inline-block;
|
|
|
|
|
border-radius: 100%;
|
|
|
|
@ -138,12 +138,13 @@ const StyledInputOutlineSelected = styled(StyledInput)`
|
|
|
|
|
label:before {
|
|
|
|
|
outline: none;
|
|
|
|
|
}
|
|
|
|
|
:checked + label:before {
|
|
|
|
|
|
|
|
|
|
&:checked + label:before {
|
|
|
|
|
outline: 1px solid currentColor;
|
|
|
|
|
}
|
|
|
|
|
`;
|
|
|
|
|
const StyledLabelOutlineSelected = styled(StyledLabel)<{ selectedColor: string }>`
|
|
|
|
|
:before {
|
|
|
|
|
&:before {
|
|
|
|
|
background: ${props =>
|
|
|
|
|
props.disabled
|
|
|
|
|
? 'var(--disabled-color)'
|
|
|
|
|