You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When applying the has-error with input-group the border-right-color will not apply
It seems that we must put below css in order to have error color show in the right border too
.has-error .input-group-addon:first-child{
color:#ec0000 !important;
border-color:#ec0000;
background-color:#f2dede
}
The bootstrap-rtl has below selector which prevents correct color on right border:
.input-group-addon:first-child{
border-right:1px solid #ccc;
border-left:0
}
The text was updated successfully, but these errors were encountered:
When applying the has-error with input-group the border-right-color will not apply
It seems that we must put below css in order to have error color show in the right border too
.has-error .input-group-addon:first-child{
color:#ec0000 !important;
border-color:#ec0000;
background-color:#f2dede
}
The bootstrap-rtl has below selector which prevents correct color on right border:
.input-group-addon:first-child{
border-right:1px solid #ccc;
border-left:0
}
The text was updated successfully, but these errors were encountered: