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.
 
 
 
 

10 lines
439 B

  1. @function encode-color($color) {
  2. @return '%23' + str-slice('#{$color}', 2);
  3. }
  4. $svg-color: #003366; // = --swatches-primary-500 im standard theme
  5. select,
  6. select.form-control {
  7. 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($svg-color)}'/%3E%3C/svg%3E");
  8. }