img-roundedreplaced byrounded-circlehiddenreplaced byinvisible(adddisplay: none;on.invisiblein the CSS if you need)hidden-xsis replaced byhidden-xs-downhidden-sm hidden-md hidden-lgis equivalent tohidden-sm-up
col-xs-6is nowcol-6col-md-offset-2becomesoffset-md-2
There is no more label class, if you need labels code it yourself, e.g. in SCSS
.label {
background: $background-grey;
color: white;
border-radius: 3px;
padding: 2px 5px;
&-success {
background: $green;
}
&-primary {
background: $blue;
}
&-danger {
background: $red;
}
&-warning {
background: $orange;
}
}- For some reasons, modals don't work when you also use tooltips :) as stated in this issue twbs/bootstrap#21607
- Temporary fix is to remove the
fadeclass on the modal...