|
@@ -32,13 +32,6 @@ export const Select = styled.ul<Props>`
|
|
|
color: ${({ theme, disabled }) =>
|
|
|
disabled ? theme.select.color.disabled : theme.select.color.normal};
|
|
|
min-width: ${({ minWidth }) => minWidth || 'auto'};
|
|
|
- background-image: ${({ disabled }) =>
|
|
|
- `url('data:image/svg+xml,%3Csvg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M1 1L5 5L9 1" stroke="${
|
|
|
- disabled ? '%23ABB5BA' : '%23454F54'
|
|
|
- }"/%3E%3C/svg%3E%0A') !important`};
|
|
|
- background-repeat: no-repeat !important;
|
|
|
- background-position-x: calc(100% - 8px) !important;
|
|
|
- background-position-y: 55% !important;
|
|
|
cursor: ${({ disabled }) => (disabled ? 'not-allowed' : 'pointer')};
|
|
|
&:hover:enabled {
|
|
|
color: ${(props) => props.theme.select.color.hover};
|