// IE8 has a bug where a table-cell element sandwiched between two table-row elements
// takes 100% of the parent element height. Using table-row for the sandwiched
// element takes care of this.
@if $include-ie {
    .#{$prefix}ie8 .#{$prefix}form-fieldcontainer > .#{$prefix}form-item-body.#{$prefix}field-container-body-vertical {
        display: table-row;
    }
}