diff options
| author | Mark Otto <[email protected]> | 2014-03-06 21:25:34 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-03-06 21:25:34 -0800 |
| commit | 9dc796155cdc23040bb018f145634ad8deea5326 (patch) | |
| tree | 4084d62cb01621daf0c8f95ee13b628292eddbf0 /dist/css/bootstrap.css | |
| parent | 17e41098c89a6c74273dee81dbf6c260d19ff412 (diff) | |
| download | bootstrap-9dc796155cdc23040bb018f145634ad8deea5326.tar.xz bootstrap-9dc796155cdc23040bb018f145634ad8deea5326.zip | |
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.
Diffstat (limited to 'dist/css/bootstrap.css')
| -rw-r--r-- | dist/css/bootstrap.css | 2 |
1 files changed, 1 insertions, 1 deletions
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; |
