aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRutger Laurman <[email protected]>2017-03-03 20:19:02 +0100
committerMark Otto <[email protected]>2017-03-03 11:19:02 -0800
commit0a997795b4ac305da9e20dfb9e85d4f13b541f10 (patch)
treebfd2e0ca41166107eb9a50e16a98b29bcd3e371f
parente02597519aaad4643c87a3b9a77a2d0ff10b27ab (diff)
downloadbootstrap-0a997795b4ac305da9e20dfb9e85d4f13b541f10.tar.xz
bootstrap-0a997795b4ac305da9e20dfb9e85d4f13b541f10.zip
Fix border width calculation for custom-select (#22068)
In addition to #22011 and #21994
-rw-r--r--scss/_custom-forms.scss2
1 files changed, 1 insertions, 1 deletions
diff --git a/scss/_custom-forms.scss b/scss/_custom-forms.scss
index a73359c86..39f164822 100644
--- a/scss/_custom-forms.scss
+++ b/scss/_custom-forms.scss
@@ -135,7 +135,7 @@
.custom-select {
display: inline-block;
max-width: 100%;
- $select-border-width: ($border-width * 2);
+ $select-border-width: ($custom-select-border-width * 2);
height: calc(#{$input-height} + #{$select-border-width});
padding: $custom-select-padding-y ($custom-select-padding-x + $custom-select-indicator-padding) $custom-select-padding-y $custom-select-padding-x;
line-height: $custom-select-line-height;