diff options
| author | Mark Otto <[email protected]> | 2013-08-23 23:19:05 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-08-23 23:19:05 -0700 |
| commit | d82030f482023732210814c05d34c2b15b47f3ff (patch) | |
| tree | 09d251247b79d9e30c2ebf6bc37458d5f6f22d7c | |
| parent | 0a2ec5545b499d87aca5b132ba7ac6bc5ede0949 (diff) | |
| parent | 343fd1bb1eead86e940e2526db1ef3efe5ec4f78 (diff) | |
| download | bootstrap-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.less | 3 |
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; |
