From 36616db81dbf463c932b77c9bae8c722f007f8a3 Mon Sep 17 00:00:00 2001 From: Nadan Gergeo Date: Sat, 24 May 2014 05:50:45 +0200 Subject: [PATCH] Table-responsive: changed overflow-x to auto to hide scrollbar when it's not overflown, fixes #13669. --- less/tables.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/less/tables.less b/less/tables.less index 555d7924c6..d46b141d90 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;