bug #23460 Don't display the Symfony debug toolbar when printing the page (javiereguiluz)

This PR was squashed before being merged into the 2.8 branch (closes #23460).

Discussion
----------

Don't display the Symfony debug toolbar when printing the page

| Q             | A
| ------------- | ---
| Branch?       | 2.8
| Bug fix?      | yes
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | #23303
| License       | MIT
| Doc PR        | -

Commits
-------

ca3ff88 Don't display the Symfony debug toolbar when printing the page
This commit is contained in:
Nicolas Grekas 2017-07-11 08:54:59 +02:00
commit 26ad2ad400

View File

@ -527,3 +527,10 @@
padding: 5px 0;
margin-right: 10px;
}
/***** Media query print: Do not print the Toolbar. *****/
@media print {
.sf-toolbar {
display: none;
}
}