mirror of https://github.com/twbs/bootstrap.git
Fix border radii on validation messages
This commit is contained in:
parent
3e2c3298da
commit
313f762d03
|
@ -135,7 +135,12 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
> :not(:first-child):not(.dropdown-menu) {
|
$validation-messages: "";
|
||||||
|
@each $state in map-keys($form-validation-states) {
|
||||||
|
$validation-messages: $validation-messages + ":not(." + unquote($state) + "-tooltip)" + ":not(." + unquote($state) + "-feedback)";
|
||||||
|
}
|
||||||
|
|
||||||
|
> :not(:first-child):not(.dropdown-menu)#{$validation-messages} {
|
||||||
margin-left: -$input-border-width;
|
margin-left: -$input-border-width;
|
||||||
@include border-left-radius(0);
|
@include border-left-radius(0);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue