Commit 9bdc841a authored by Cameron Little's avatar Cameron Little

Added -webkit-overflow-scrolling: touch to responsive tables

parent 24f57bdf
...@@ -1583,6 +1583,7 @@ table th[class*="col-"] { ...@@ -1583,6 +1583,7 @@ table th[class*="col-"] {
overflow-x: scroll; overflow-x: scroll;
overflow-y: hidden; overflow-y: hidden;
border: 1px solid #dddddd; border: 1px solid #dddddd;
-webkit-overflow-scrolling: touch;
} }
.table-responsive > .table { .table-responsive > .table {
margin-bottom: 0; margin-bottom: 0;
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -187,6 +187,7 @@ table { ...@@ -187,6 +187,7 @@ table {
overflow-y: hidden; overflow-y: hidden;
overflow-x: scroll; overflow-x: scroll;
border: 1px solid @table-border-color; border: 1px solid @table-border-color;
-webkit-overflow-scrolling: touch;
// Tighten up spacing and give a background color // Tighten up spacing and give a background color
> .table { > .table {
......
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