Problem/Motivation

In `bs_bootstrap/sass/base/partials/_table.scss` we are doing

.table-responsive {
  @include media-breakpoint-up('$responsive-break') {
    // For big screens its better that responsive table has display table so
    // it expands to full width.
    display: table;
  }
}

Some client projects are overriding `$responsive-break` to a bigger value which can create unexpected results for the above rule.

Proposed resolution

Use `md` breakpoint instead of `$responsive-break`.

Comments

pivica created an issue. See original summary.

pivica’s picture

Status: Active » Needs review
Issue tags: +next-release
StatusFileSize
new526 bytes

Here is a patch.

pivica’s picture

StatusFileSize
new524 bytes

The last patch is corrupted somehow, here is a correct one.

  • pivica committed 4721d8b on 8.x-1.x
    Issue #3123430 by pivica: Use fixed md breakpoint for responsive display...
pivica’s picture

Status: Needs review » Fixed

Committed.

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.