| 1 |
.select { |
| 2 |
background: #fff; |
| 3 |
height: 32px; |
| 4 |
display: inline-flex; |
| 5 |
align-items: center; |
| 6 |
justify-content: center; |
| 7 |
min-width: 150px; |
| 8 |
border-radius: 5px; |
| 9 |
border: 1px solid #ddd; |
| 10 |
border-bottom: 3px solid #ddd; |
| 11 |
cursor: pointer; |
| 12 |
|
| 13 |
/* stylelint-disable */ |
| 14 |
select { |
| 15 |
width: 100%; |
| 16 |
border: none; |
| 17 |
font-weight: 500; |
| 18 |
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='13' height='8' viewBox='0 0 13 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.66016 7.19531C5.90625 7.44141 6.31641 7.44141 6.5625 7.19531L11.8945 1.89062C12.1406 1.61719 12.1406 1.20703 11.8945 0.960938L11.2656 0.332031C11.0195 0.0859375 10.6094 0.0859375 10.3359 0.332031L6.125 4.54297L1.88672 0.332031C1.61328 0.0859375 1.20312 0.0859375 0.957031 0.332031L0.328125 0.960938C0.0820312 1.20703 0.0820312 1.61719 0.328125 1.89062L5.66016 7.19531Z' fill='%23A2A3A2'/%3E%3C/svg%3E"), |
| 19 |
linear-gradient(to bottom, #fff 0%, #fff 100%); |
| 20 |
background-repeat: no-repeat, repeat; |
| 21 |
background-position: right 8px top 50%, 0 0; |
| 22 |
background-size: 0.65em auto, 100%; |
| 23 |
height: 100%; |
| 24 |
&:focus { |
| 25 |
box-shadow: none; |
| 26 |
} |
| 27 |
} |
| 28 |
/* stylelint-enable */ |
| 29 |
} |
| 30 |
|