aboutsummaryrefslogtreecommitdiff
path: root/docs/dist/css/bootstrap.css
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2014-08-02 13:05:11 -0700
committerMark Otto <[email protected]>2014-08-02 13:05:11 -0700
commitfeed9aed5b471c20b02c4ca6620366cac9327db8 (patch)
treed3f024a3b046bff772497ef72fc23589f37e1cc2 /docs/dist/css/bootstrap.css
parent557d3e527cbbff5994b5ec48e11ec318aac4a776 (diff)
downloadbootstrap-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 'docs/dist/css/bootstrap.css')
-rw-r--r--docs/dist/css/bootstrap.css4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/dist/css/bootstrap.css b/docs/dist/css/bootstrap.css
index b18c44b88..a7c1b8d0a 100644
--- a/docs/dist/css/bootstrap.css
+++ b/docs/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;