Commit d82030f4 authored by Mark Otto's avatar Mark Otto

Merge pull request #10057 from sambowler/patch-1

Fix responsive table scrolling on Windows Phone 8.
parents 0a2ec554 343fd1bb
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment