Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 

32 righe
598 B

  1. @import '../../_global/styles/mixins';
  2. @import '../../_global/styles/vars';
  3. select, select.form-control {
  4. @include form-field;
  5. -webkit-appearance: none;
  6. -moz-appearance: none;
  7. appearance: none;
  8. background-image: url('../../assets/img/dropdown-arrow.svg');
  9. background-repeat: no-repeat;
  10. background-position: right center;
  11. background-size: 36px;
  12. padding-right: 42px;
  13. @media(max-width: 1199px) {
  14. background-size: 30px;
  15. padding-right: 34px;
  16. }
  17. }
  18. select::-ms-expand {
  19. display: none;
  20. }
  21. select[multiple] {
  22. background-image: none;
  23. }
  24. select option {
  25. font: inherit;
  26. }