Commit 36616db8 authored by Nadan Gergeo's avatar Nadan Gergeo

Table-responsive: changed overflow-x to auto to hide scrollbar when it's not...

Table-responsive: changed overflow-x to auto to hide scrollbar when it's not overflown, fixes #13669.
parent 8e568a8e
...@@ -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