From: Paweł Kuna <1282324+codecalm@users.noreply.github.com> Date: Fri, 27 Sep 2019 15:58:53 +0000 (+0200) Subject: Remove outline from select box in FF (#29445) X-Git-Tag: v5.0.0-alpha1~754 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0a3aa08b89031a835e73b53b161ba6c6d1cab848;p=thirdparty%2Fbootstrap.git Remove outline from select box in FF (#29445) * Remove outline from select box in FF * Use $form-select-color --- diff --git a/scss/forms/_form-select.scss b/scss/forms/_form-select.scss index a9cd8676de..720b7a1c61 100644 --- a/scss/forms/_form-select.scss +++ b/scss/forms/_form-select.scss @@ -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 {