diff options
| author | Mark Otto <[email protected]> | 2014-08-02 13:05:11 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-08-02 13:05:11 -0700 |
| commit | feed9aed5b471c20b02c4ca6620366cac9327db8 (patch) | |
| tree | d3f024a3b046bff772497ef72fc23589f37e1cc2 /dist/css/bootstrap.css | |
| parent | 557d3e527cbbff5994b5ec48e11ec318aac4a776 (diff) | |
| download | bootstrap-feed9aed5b471c20b02c4ca6620366cac9327db8.tar.xz bootstrap-feed9aed5b471c20b02c4ca6620366cac9327db8.zip | |
Fixes #13202: Always use overflow: auto; on .table-responsive to prevent content breaking out of containers
Diffstat (limited to 'dist/css/bootstrap.css')
| -rw-r--r-- | dist/css/bootstrap.css | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index b18c44b88..a7c1b8d0a 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -2244,11 +2244,13 @@ table th[class*="col-"] { .table-hover > tbody > tr.danger:hover > th { background-color: #ebcccc; } +.table-responsive { + overflow-x: auto; +} @media screen and (max-width: 767px) { .table-responsive { width: 100%; margin-bottom: 15px; - overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; -ms-overflow-style: -ms-autohiding-scrollbar; |
