Avoid bug in Firefox where text appears "noisy" due to text-shadow applying to focused form fields.
border: 0;
}
- // Remove select outline from select box in FF
- &:-moz-focusring {
- color: transparent;
- text-shadow: 0 0 0 $input-color;
- }
-
// Customize the `:focus` state to imitate native WebKit styles.
@include form-control-focus($ignore-warning: true);
}
select.form-control {
+ // Remove select outline from select box in FF
+ &:-moz-focusring {
+ color: transparent;
+ text-shadow: 0 0 0 $input-color;
+ }
+
&:focus::-ms-value {
// Suppress the nested default white text on blue background highlight given to
// the selected option text when the (still closed) <select> receives focus