From 568c1d19d32400c69e0e134502e45356e7983a31 Mon Sep 17 00:00:00 2001 From: Martijn Cuppens Date: Thu, 22 Oct 2020 20:29:23 +0200 Subject: [PATCH] Fix border radius for inputs groups with validation --- scss/forms/_input-group.scss | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/scss/forms/_input-group.scss b/scss/forms/_input-group.scss index 9ae896cc44..5611f85c5b 100644 --- a/scss/forms/_input-group.scss +++ b/scss/forms/_input-group.scss @@ -135,6 +135,13 @@ } } + &.has-validation { + > :nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu), + > .dropdown-toggle:nth-last-child(n + 4) { + @include border-right-radius(0); + } + } + $validation-messages: ""; @each $state in map-keys($form-validation-states) { $validation-messages: $validation-messages + ":not(." + unquote($state) + "-tooltip)" + ":not(." + unquote($state) + "-feedback)";