diff options
| author | Mark Otto <[email protected]> | 2017-01-03 13:11:25 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2017-01-03 13:11:25 -0800 |
| commit | bd72b9593bbff9a001ba818dbf8782b5ed3f08d0 (patch) | |
| tree | dbeb35f708f6ac5ea0b9b4fe5da771b72039ad35 /scss | |
| parent | f1229e8c4716cfa191f1b6ec9bcbe5ca6e63a087 (diff) | |
| download | bootstrap-bd72b9593bbff9a001ba818dbf8782b5ed3f08d0.tar.xz bootstrap-bd72b9593bbff9a001ba818dbf8782b5ed3f08d0.zip | |
Drop .table-reflow
Tried redoing this in flexbox, but it falls apart really quickly. Any changes in height of the cells throws it all off since the rows become columns (and thus, content across columns cannot be equally sized). Rather than implement something with such glaring flaws, I'm nuking it outright.
Diffstat (limited to 'scss')
| -rw-r--r-- | scss/_tables.scss | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/scss/_tables.scss b/scss/_tables.scss index e6894cfed..47be2c508 100644 --- a/scss/_tables.scss +++ b/scss/_tables.scss @@ -151,46 +151,3 @@ border: 0; } } - - -.table-reflow { - thead { - float: left; - } - - tbody { - display: block; - white-space: nowrap; - } - - th, - td { - border-top: $table-border-width solid $table-border-color; - border-left: $table-border-width solid $table-border-color; - - &:last-child { - border-right: $table-border-width solid $table-border-color; - } - } - - thead, - tbody, - tfoot { - &:last-child { - tr:last-child th, - tr:last-child td { - border-bottom: $table-border-width solid $table-border-color; - } - } - } - - tr { - float: left; - - th, - td { - display: block !important; - border: $table-border-width solid $table-border-color; - } - } -} |
