You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

33 lines
851 B

  1. @use '../../_global/styles/mixins' as *;
  2. @use '../../_global/styles/vars' as *;
  3. @use '../../_global/styles/svg-vars' as *;
  4. select, select.form-control {
  5. @include form-field;
  6. -webkit-appearance: none;
  7. -moz-appearance: none;
  8. appearance: none;
  9. //background-image: url("data:image/svg+xml,%3Csvg width='43' height='30' viewBox='0 0 43 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.5001 22L6.27283 10.75L22.7273 10.75L14.5001 22Z' fill='#{encode-color($swatch-primary-500)}'/%3E%3C/svg%3E");
  10. background-repeat: no-repeat;
  11. background-position: right center;
  12. background-size: 36px;
  13. padding-right: 42px;
  14. @media(max-width: 1199px) {
  15. background-size: 30px;
  16. padding-right: 34px;
  17. }
  18. }
  19. select::-ms-expand {
  20. display: none;
  21. }
  22. select[multiple] {
  23. background-image: none;
  24. }
  25. select option {
  26. font: inherit;
  27. }