1
0
mirror of https://github.com/maximebf/php-debugbar.git synced 2025-01-16 21:08:34 +01:00

Hiding PHPDebugBar on @media print

PHPDebugBar showing in @media print makes no sense as it's purpose is debug.
This makes easier to test printing pages on debug server.
This commit is contained in:
Fernando Sávio 2015-06-03 17:59:36 -03:00
parent 0d1fcdd087
commit d0c623b064

View File

@ -1,3 +1,10 @@
/* Hide debugbar when printing a page */
@media print {
div.phpdebugbar {
display: none;
}
}
div.phpdebugbar {
position: fixed;
bottom: 0;