From 4ce1b08c32013cca8094c71463f088c9b406c5e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zlatan=20Vasovi=C4=87?= Date: Mon, 14 Oct 2013 18:22:31 +0200 Subject: Unhardcode .table-responsive bottom margin --- less/tables.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'less') diff --git a/less/tables.less b/less/tables.less index f9f0041e4..6ca19ad58 100644 --- a/less/tables.less +++ b/less/tables.less @@ -174,7 +174,7 @@ table { @media (max-width: @screen-sm-min) { .table-responsive { width: 100%; - margin-bottom: 15px; + margin-bottom: (@line-height-computed * 0.75); overflow-y: hidden; overflow-x: scroll; -ms-overflow-style: -ms-autohiding-scrollbar; -- cgit v1.2.3 From 5c64ef393caf1331129e2360e1b7f3aaf1e5150e Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Mon, 14 Oct 2013 10:58:12 -0700 Subject: fix .table-responsive media query; refs #11067 --- less/tables.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'less') diff --git a/less/tables.less b/less/tables.less index f9f0041e4..1e4a4d14e 100644 --- a/less/tables.less +++ b/less/tables.less @@ -171,7 +171,7 @@ table { // by enabling horizontal scrolling. Only applies <768px. Everything above that // will display normally. -@media (max-width: @screen-sm-min) { +@media (max-width: @screen-xs-max) { .table-responsive { width: 100%; margin-bottom: 15px; -- cgit v1.2.3