mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-09-03 08:08:09 +02:00
34 lines
539 B
Plaintext
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;
|
|
}
|
|
}
|