Commit 07086266 authored by Mark Otto's avatar Mark Otto

Merge pull request #13670 from nadangergeo/master

Table-responsive: changed overflow-x to auto to hide scrollbar when it's not overflown, fixes #13669.
parents 0a3fe8c7 36616db8
...@@ -173,7 +173,7 @@ table { ...@@ -173,7 +173,7 @@ table {
width: 100%; width: 100%;
margin-bottom: (@line-height-computed * 0.75); margin-bottom: (@line-height-computed * 0.75);
overflow-y: hidden; overflow-y: hidden;
overflow-x: scroll; overflow-x: auto;
-ms-overflow-style: -ms-autohiding-scrollbar; -ms-overflow-style: -ms-autohiding-scrollbar;
border: 1px solid @table-border-color; border: 1px solid @table-border-color;
-webkit-overflow-scrolling: touch; -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