Johannes Meyer bd57172f47 css: Introduce new class print-only..
..to only show content when printing
2022-03-01 17:04:38 +01:00

16 lines
258 B
Plaintext

/*! Icinga Web 2 | (c) 2015 Icinga GmbH | GPLv2+ */
@media print {
.controls,
.dontprint, // Compat only, use dont-print instead
.dont-print {
display: none !important;
}
}
@media not print {
.print-only {
display: none !important;
}
}