]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Remove outline from select box in FF (#29445)
authorPaweł Kuna <1282324+codecalm@users.noreply.github.com>
Fri, 27 Sep 2019 15:58:53 +0000 (17:58 +0200)
committerXhmikosR <xhmikosr@gmail.com>
Fri, 27 Sep 2019 15:58:53 +0000 (18:58 +0300)
* Remove outline from select box in FF

* Use $form-select-color

scss/forms/_form-select.scss

index a9cd8676dec8397c5c97cb87d2e1de601598afb8..720b7a1c618da4457fb95fab39268ec4f3915958 100644 (file)
   &::-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 {