From b09417fd75b068f0eee37bef089f0d08d8ba9b58 Mon Sep 17 00:00:00 2001 From: Geremia Taglialatela Date: Sat, 26 Oct 2013 21:32:29 +0200 Subject: [PATCH 1/2] Fixes #11245 --- less/print.less | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/less/print.less b/less/print.less index 2a5b154fe0ea..6362129e594e 100644 --- a/less/print.less +++ b/less/print.less @@ -66,6 +66,12 @@ page-break-after: avoid; } + // Chrome (OSX) fix for https://github.com/twbs/bootstrap/issues/11245 + // Once fixed, we can just straight up remove this. + select { + background: white !important; + } + // Bootstrap components .navbar { display: none; From 58cb85be3732888c42003cbe42142ee0e77a9639 Mon Sep 17 00:00:00 2001 From: Geremia Taglialatela Date: Sat, 26 Oct 2013 21:52:38 +0200 Subject: [PATCH 2/2] #fff of course --- less/print.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/less/print.less b/less/print.less index 6362129e594e..07277a3ca66b 100644 --- a/less/print.less +++ b/less/print.less @@ -69,7 +69,7 @@ // Chrome (OSX) fix for https://github.com/twbs/bootstrap/issues/11245 // Once fixed, we can just straight up remove this. select { - background: white !important; + background: #fff !important; } // Bootstrap components