aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNadan Gergeo <[email protected]>2014-05-24 05:50:45 +0200
committerNadan Gergeo <[email protected]>2014-05-24 05:50:45 +0200
commit36616db81dbf463c932b77c9bae8c722f007f8a3 (patch)
tree67b8bf0c8a8005d64085dc023f2841557da7977c
parent8e568a8e3652e48e6af23c1aedce2b63dbd2fa9e (diff)
downloadbootstrap-36616db81dbf463c932b77c9bae8c722f007f8a3.tar.xz
bootstrap-36616db81dbf463c932b77c9bae8c722f007f8a3.zip
Table-responsive: changed overflow-x to auto to hide scrollbar when it's not overflown, fixes #13669.
-rw-r--r--less/tables.less2
1 files changed, 1 insertions, 1 deletions
diff --git a/less/tables.less b/less/tables.less
index 555d7924c..d46b141d9 100644
--- a/less/tables.less
+++ b/less/tables.less
@@ -173,7 +173,7 @@ table {
width: 100%;
margin-bottom: (@line-height-computed * 0.75);
overflow-y: hidden;
- overflow-x: scroll;
+ overflow-x: auto;
-ms-overflow-style: -ms-autohiding-scrollbar;
border: 1px solid @table-border-color;
-webkit-overflow-scrolling: touch;