diff options
| author | Mark Otto <[email protected]> | 2017-02-04 17:03:42 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2017-02-04 17:03:42 -0800 |
| commit | d79b5563730e8188ca7ee5dfc71503d82eb297b4 (patch) | |
| tree | 60f80aff4502b6b8f0abe09c347aa737d3e9f324 | |
| parent | 0da20476ecfc8c6519b3b46098e72c49ba12e55e (diff) | |
| download | bootstrap-d79b5563730e8188ca7ee5dfc71503d82eb297b4.tar.xz bootstrap-d79b5563730e8188ca7ee5dfc71503d82eb297b4.zip | |
Fixes #21814. Also accounts for custom file inputs.
| -rw-r--r-- | scss/mixins/_forms.scss | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scss/mixins/_forms.scss b/scss/mixins/_forms.scss index c8aea9669..40f1b3de4 100644 --- a/scss/mixins/_forms.scss +++ b/scss/mixins/_forms.scss @@ -14,7 +14,9 @@ } // Set the border and box shadow on specific inputs to match - .form-control { + .form-control, + .custom-select, + .custom-file-control { border-color: $color; &:focus { |
