diff options
| author | Mark Otto <[email protected]> | 2013-10-27 00:45:37 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-10-27 00:45:37 -0700 |
| commit | e9ca4fab1365559e7059f7b46b182a498872f136 (patch) | |
| tree | 14bc4e618c43798302c37106023aca7d8f721aff | |
| parent | 0365796375157d3072298cde4be8b95eb61e5f86 (diff) | |
| parent | 58cb85be3732888c42003cbe42142ee0e77a9639 (diff) | |
| download | bootstrap-e9ca4fab1365559e7059f7b46b182a498872f136.tar.xz bootstrap-e9ca4fab1365559e7059f7b46b182a498872f136.zip | |
Merge pull request #11248 from tagliala/chrome-osx-select-print
Chrome for OSX print issue with select tags
| -rw-r--r-- | less/print.less | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/less/print.less b/less/print.less index 2a5b154fe..07277a3ca 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: #fff !important; + } + // Bootstrap components .navbar { display: none; |
