diff options
| author | ysds <[email protected]> | 2018-07-25 09:56:03 +0900 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2018-07-24 17:56:03 -0700 |
| commit | bbee41431d51f6d7d7160d9dc4d112b54d13904b (patch) | |
| tree | 2d6c46d75c12b342b730a66f811dd3e6fe26e054 | |
| parent | ab53ccc2ccf18b324a3ebaccef20c1bb11ce089a (diff) | |
| download | bootstrap-bbee41431d51f6d7d7160d9dc4d112b54d13904b.tar.xz bootstrap-bbee41431d51f6d7d7160d9dc4d112b54d13904b.zip | |
Fix custom range height (#26898)
Fixes #26897
| -rw-r--r-- | scss/_custom-forms.scss | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scss/_custom-forms.scss b/scss/_custom-forms.scss index 5e1fa1992..d9b62fc37 100644 --- a/scss/_custom-forms.scss +++ b/scss/_custom-forms.scss @@ -314,7 +314,8 @@ .custom-range { width: 100%; - padding-left: 0; // Firefox specific + height: calc(#{$custom-range-thumb-height} + #{$custom-range-thumb-focus-box-shadow-width * 2}); + padding: 0; // Need to reset padding background-color: transparent; appearance: none; |
