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

This commit is contained in:
Javier Eguiluz 2017-07-09 19:50:49 +02:00 committed by Nicolas Grekas
parent 15df829a83
commit ca3ff88361

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;
}
}