From 9dc796155cdc23040bb018f145634ad8deea5326 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Thu, 6 Mar 2014 21:25:34 -0800 Subject: Fixes #12722: Fixes up responsive tables in print Safari renders this fine for one reason or another, but Chrome still renders the media query styles to make tables responsive. This change scopes them to screen devices only, so printing looks boss everywhere. --- dist/css/bootstrap.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dist/css/bootstrap.css') diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index d70cf4ede..6caf28a3b 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -2199,7 +2199,7 @@ table th[class*="col-"] { .table-hover > tbody > tr.danger:hover > th { background-color: #ebcccc; } -@media (max-width: 767px) { +@media screen and (max-width: 767px) { .table-responsive { width: 100%; margin-bottom: 15px; -- cgit v1.2.3