|
|
|
|
@ -22,6 +22,7 @@ export const DropdownButton = styled.button<Props>` |
|
|
|
|
position: relative; |
|
|
|
|
height: 100%; |
|
|
|
|
width: 100%; |
|
|
|
|
padding-right: 45px; |
|
|
|
|
outline: none; |
|
|
|
|
border: none; |
|
|
|
|
display: flex; |
|
|
|
|
@ -52,7 +53,7 @@ export const DropdownButton = styled.button<Props>` |
|
|
|
|
|
|
|
|
|
export const ButtonTitle = styled.span` |
|
|
|
|
display: inline-block; |
|
|
|
|
width: 80%; |
|
|
|
|
flex-grow: 1; |
|
|
|
|
white-space: nowrap; |
|
|
|
|
overflow: hidden; |
|
|
|
|
text-overflow: ellipsis; |
|
|
|
|
@ -86,3 +87,16 @@ export const Wrapper = styled.div` |
|
|
|
|
border-bottom-right-radius: 2px; |
|
|
|
|
} |
|
|
|
|
` |
|
|
|
|
|
|
|
|
|
export const ClearButton = styled.button` |
|
|
|
|
outline: none; |
|
|
|
|
border: none; |
|
|
|
|
cursor: pointer; |
|
|
|
|
width: 10px; |
|
|
|
|
height: 10px; |
|
|
|
|
margin-left: 10px; |
|
|
|
|
background-color: transparent; |
|
|
|
|
background-image: url(/images/clear.svg); |
|
|
|
|
background-position: center; |
|
|
|
|
background-repeat: no-repeat; |
|
|
|
|
` |
|
|
|
|
|