diff options
| author | Sam Bowler <[email protected]> | 2013-08-23 07:53:09 +0100 |
|---|---|---|
| committer | Sam Bowler <[email protected]> | 2013-08-23 07:53:09 +0100 |
| commit | 343fd1bb1eead86e940e2526db1ef3efe5ec4f78 (patch) | |
| tree | 766fc14d6e7928615cac9662468d941c2b6345c0 | |
| parent | 24f57bdf41b81fd898db0fc2b946ffd1e7b843ee (diff) | |
| download | bootstrap-343fd1bb1eead86e940e2526db1ef3efe5ec4f78.tar.xz bootstrap-343fd1bb1eead86e940e2526db1ef3efe5ec4f78.zip | |
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 7543b165a..0a71ce1ef 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; // Tighten up spacing and give a background color |
