From feed9aed5b471c20b02c4ca6620366cac9327db8 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sat, 2 Aug 2014 13:05:11 -0700 Subject: Fixes #13202: Always use overflow: auto; on .table-responsive to prevent content breaking out of containers --- less/tables.less | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'less/tables.less') diff --git a/less/tables.less b/less/tables.less index 25db1fe40..ef745ea8e 100644 --- a/less/tables.less +++ b/less/tables.less @@ -169,11 +169,12 @@ table { // will display normally. .table-responsive { + overflow-x: auto; + @media screen and (max-width: @screen-xs-max) { width: 100%; margin-bottom: (@line-height-computed * 0.75); overflow-y: hidden; - overflow-x: auto; -ms-overflow-style: -ms-autohiding-scrollbar; border: 1px solid @table-border-color; -webkit-overflow-scrolling: touch; -- cgit v1.2.3