@mixin img-responsive($display: block) {
    display: $display;
    max-width: 100%; // Part 1: Set a maximum relative to the parent
    max-height: 100%;
    height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching
}

.img-responsive {
    @include img-responsive();
}