mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
Merge pull request #13670 from nadangergeo/master
Table-responsive: changed overflow-x to auto to hide scrollbar when it's not overflown, fixes #13669.
This commit is contained in:
commit
070862667a
1 changed files with 1 additions and 1 deletions
|
@ -173,7 +173,7 @@ table {
|
|||
width: 100%;
|
||||
margin-bottom: (@line-height-computed * 0.75);
|
||||
overflow-y: hidden;
|
||||
overflow-x: scroll;
|
||||
overflow-x: auto;
|
||||
-ms-overflow-style: -ms-autohiding-scrollbar;
|
||||
border: 1px solid @table-border-color;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
|
|
Loading…
Reference in a new issue