bootstrap-rtl
bootstrap-rtl copied to clipboard
Bootstrap Input Group Add On right border color
In bootstrap rtl no right border color is defined for input group addon. Here is the current code:
.input-group-addon:first-child {
border-left: 0;
border-right: 1px solid;
}
If you change it into something like this probably solve the problem for bootstrap current theme. But for other themes I don't think so...
.input-group-addon:first-child {
border-left: 0;
border-right: 1px solid #ccc;
}