From 0a997795b4ac305da9e20dfb9e85d4f13b541f10 Mon Sep 17 00:00:00 2001 From: Rutger Laurman <lekkerduidelijk@gmail.com> Date: Fri, 3 Mar 2017 20:19:02 +0100 Subject: [PATCH] Fix border width calculation for custom-select (#22068) In addition to #22011 and #21994 --- scss/_custom-forms.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- GitLab