diff options
| author | Paweł Kuna <[email protected]> | 2019-09-27 17:58:53 +0200 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2019-09-27 18:58:53 +0300 |
| commit | 0a3aa08b89031a835e73b53b161ba6c6d1cab848 (patch) | |
| tree | b7501044f7452518c2a93b7cb1e13768ed002281 /scss | |
| parent | f2dff864aa09140dd7edc6b5e27ecf590f2f7fa5 (diff) | |
| download | bootstrap-0a3aa08b89031a835e73b53b161ba6c6d1cab848.tar.xz bootstrap-0a3aa08b89031a835e73b53b161ba6c6d1cab848.zip | |
Remove outline from select box in FF (#29445)
* Remove outline from select box in FF
* Use $form-select-color
Diffstat (limited to 'scss')
| -rw-r--r-- | scss/forms/_form-select.scss | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scss/forms/_form-select.scss b/scss/forms/_form-select.scss index a9cd8676d..720b7a1c6 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 { |
