Remove outline from select box in FF (#29445)

* Remove outline from select box in FF

* Use $form-select-color
This commit is contained in:
Paweł Kuna 2019-09-27 17:58:53 +02:00 committed by XhmikosR
parent f2dff864aa
commit 0a3aa08b89
1 changed files with 6 additions and 0 deletions

View File

@ -57,6 +57,12 @@
&::-ms-expand {
display: none;
}
// Remove outline from select box in FF
&:-moz-focusring {
color: transparent;
text-shadow: 0 0 0 $form-select-color;
}
}
.form-select-sm {