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-rtl.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-rtl.css')
| -rw-r--r-- | dist/css/bootstrap-rtl.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dist/css/bootstrap-rtl.css b/dist/css/bootstrap-rtl.css index 0d1b57b25..44f4270b8 100644 --- a/dist/css/bootstrap-rtl.css +++ b/dist/css/bootstrap-rtl.css @@ -2879,7 +2879,7 @@ table th[class*="col-"] { background-color: #ebcccc; } -@media (max-width: 767px) { +@media screen and (max-width: 767px) { .table-responsive { width: 100%; margin-bottom: 15px; |
