From: Rutger Laurman Date: Fri, 3 Mar 2017 19:19:02 +0000 (+0100) Subject: Fix border width calculation for custom-select (#22068) X-Git-Tag: v4.0.0-beta~166^2~223^2~13^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0a997795b4ac305da9e20dfb9e85d4f13b541f10;p=thirdparty%2Fbootstrap.git Fix border width calculation for custom-select (#22068) In addition to #22011 and #21994 --- diff --git a/scss/_custom-forms.scss b/scss/_custom-forms.scss index a73359c86c..39f164822c 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;