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`.
| Comment | File | Size | Author |
|---|---|---|---|
| #3 | use-md-for-responsive-table-rule-3123430-3.patch | 524 bytes | pivica |
Comments
Comment #2
pivica commentedHere is a patch.
Comment #3
pivica commentedThe last patch is corrupted somehow, here is a correct one.
Comment #5
pivica commentedCommitted.