Johannes Meyer cdd7ea6bad print.less: Make sure that client print attempts work fine
(cherry picked from commit 723eaae08c70eef8afff2711e3880fa86191781a)
2022-12-13 09:33:14 +01:00

34 lines
539 B
Plaintext

/*! Icinga Web 2 | (c) 2015 Icinga Development Team | GPLv2+ */
// Print styles
@media print {
#sidebar,
#migrate-popup, // Icinga DB Web
.controls,
.footer, // ipl
.dontprint, // Compat only, use dont-print instead
.dont-print {
display: none !important;
}
#layout,
#main,
.controls {
position: static;
}
#main > .container {
overflow: visible !important;
> .content {
overflow: visible !important;
}
}
.container {
float: none !important;
width: 100% !important;
}
}