diff options
| author | Mark Otto <[email protected]> | 2014-06-10 00:14:33 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-06-10 00:14:33 -0700 |
| commit | 070862667af546ca900fed07365dd41a05cba033 (patch) | |
| tree | a178c8e9f188cf125b25d4e3bc876290bfdfe077 /less | |
| parent | 0a3fe8c79bd8c0a2b78fbf6271d97a5e3fa6c6b1 (diff) | |
| parent | 36616db81dbf463c932b77c9bae8c722f007f8a3 (diff) | |
| download | bootstrap-070862667af546ca900fed07365dd41a05cba033.tar.xz bootstrap-070862667af546ca900fed07365dd41a05cba033.zip | |
Merge pull request #13670 from nadangergeo/master
Table-responsive: changed overflow-x to auto to hide scrollbar when it's not overflown, fixes #13669.
Diffstat (limited to 'less')
| -rw-r--r-- | less/tables.less | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/less/tables.less b/less/tables.less index ebb83a6ab..2e1ef337b 100644 --- a/less/tables.less +++ b/less/tables.less @@ -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; |
