diff options
| author | Nadan Gergeo <[email protected]> | 2014-05-24 05:50:45 +0200 |
|---|---|---|
| committer | Nadan Gergeo <[email protected]> | 2014-05-24 05:50:45 +0200 |
| commit | 36616db81dbf463c932b77c9bae8c722f007f8a3 (patch) | |
| tree | 67b8bf0c8a8005d64085dc023f2841557da7977c | |
| parent | 8e568a8e3652e48e6af23c1aedce2b63dbd2fa9e (diff) | |
| download | bootstrap-36616db81dbf463c932b77c9bae8c722f007f8a3.tar.xz bootstrap-36616db81dbf463c932b77c9bae8c722f007f8a3.zip | |
Table-responsive: changed overflow-x to auto to hide scrollbar when it's not overflown, fixes #13669.
| -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 555d7924c..d46b141d9 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; |
