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-rtl.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dist/css/bootstrap-rtl.css') 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; -- cgit v1.2.3 From 0c9308a3b29be6d56c582dce33092164be7997b4 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Thu, 6 Mar 2014 21:40:22 -0800 Subject: Rewrite the disabled list group items to simplify styles --- dist/css/bootstrap-rtl.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'dist/css/bootstrap-rtl.css') diff --git a/dist/css/bootstrap-rtl.css b/dist/css/bootstrap-rtl.css index 5412674d9..8743a9ed7 100644 --- a/dist/css/bootstrap-rtl.css +++ b/dist/css/bootstrap-rtl.css @@ -5853,7 +5853,6 @@ a.list-group-item:focus { .list-group-item.disabled:focus { color: #999; background-color: #eee; - border-color: #eee; } .list-group-item.disabled .list-group-item-heading, @@ -5865,7 +5864,7 @@ a.list-group-item:focus { .list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text { - color: #fff; + color: #999; } .list-group-item.active, -- cgit v1.2.3