aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-08-23 23:19:05 -0700
committerMark Otto <[email protected]>2013-08-23 23:19:05 -0700
commitd82030f482023732210814c05d34c2b15b47f3ff (patch)
tree09d251247b79d9e30c2ebf6bc37458d5f6f22d7c
parent0a2ec5545b499d87aca5b132ba7ac6bc5ede0949 (diff)
parent343fd1bb1eead86e940e2526db1ef3efe5ec4f78 (diff)
downloadbootstrap-d82030f482023732210814c05d34c2b15b47f3ff.tar.xz
bootstrap-d82030f482023732210814c05d34c2b15b47f3ff.zip
Merge pull request #10057 from sambowler/patch-1
Fix responsive table scrolling on Windows Phone 8.
-rw-r--r--less/tables.less3
1 files changed, 2 insertions, 1 deletions
diff --git a/less/tables.less b/less/tables.less
index c3c389110..bd86db2e4 100644
--- a/less/tables.less
+++ b/less/tables.less
@@ -176,7 +176,7 @@ table {
// Responsive tables
//
-// Wrap your tables in `.table-scrollable` and we'll make them mobile friendly
+// Wrap your tables in `.table-responsive` and we'll make them mobile friendly
// by enabling horizontal scrolling. Only applies <768px. Everything above that
// will display normally.
@@ -186,6 +186,7 @@ table {
margin-bottom: 15px;
overflow-y: hidden;
overflow-x: scroll;
+ -ms-overflow-style: -ms-autohiding-scrollbar;
border: 1px solid @table-border-color;
-webkit-overflow-scrolling: touch;