1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-15 10:05:40 +02:00

Fix responsive table scrolling on Windows Phone 8.

This commit is contained in:
Sam Bowler
2013-08-23 07:53:09 +01:00
parent 24f57bdf41
commit 343fd1bb1e

View File

@@ -176,7 +176,7 @@ table {
// Responsive tables // 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 // by enabling horizontal scrolling. Only applies <768px. Everything above that
// will display normally. // will display normally.
@@ -186,6 +186,7 @@ table {
margin-bottom: 15px; margin-bottom: 15px;
overflow-y: hidden; overflow-y: hidden;
overflow-x: scroll; overflow-x: scroll;
-ms-overflow-style: -ms-autohiding-scrollbar;
border: 1px solid @table-border-color; border: 1px solid @table-border-color;
// Tighten up spacing and give a background color // Tighten up spacing and give a background color