2019-08-08 20:01:03 +00:00
|
|
|
@import '../../../minerva.less/minerva.variables.less';
|
|
|
|
@import '../../../minerva.less/minerva.mixins.less';
|
2018-02-05 19:17:54 +00:00
|
|
|
|
2017-08-28 20:51:20 +00:00
|
|
|
@media print {
|
|
|
|
.noprint,
|
|
|
|
.banner-container,
|
2021-07-16 20:10:00 +00:00
|
|
|
.minerva-header,
|
2022-11-23 12:06:18 +00:00
|
|
|
.minerva-footer,
|
2020-02-17 21:59:48 +00:00
|
|
|
.minerva__tab-container,
|
|
|
|
.page-actions-menu,
|
2017-08-28 20:51:20 +00:00
|
|
|
.post-content {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2022-11-23 12:06:18 +00:00
|
|
|
.printfooter {
|
|
|
|
padding-top: 1em;
|
|
|
|
}
|
|
|
|
|
2017-08-28 20:51:20 +00:00
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6 {
|
|
|
|
page-break-after: avoid;
|
|
|
|
}
|
|
|
|
|
|
|
|
table,
|
|
|
|
figure,
|
2020-08-14 07:03:46 +00:00
|
|
|
img {
|
2017-08-28 20:51:20 +00:00
|
|
|
page-break-inside: avoid;
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
max-width: 100%;
|
2019-07-09 17:50:46 +00:00
|
|
|
|
|
|
|
// Disable lazy loading transition animation for print media (T220668) so they display.
|
|
|
|
&.image-lazy-loaded {
|
2022-05-16 16:55:54 +00:00
|
|
|
animation: none !important;
|
2019-07-09 17:50:46 +00:00
|
|
|
}
|
2017-08-28 20:51:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-05 19:17:54 +00:00
|
|
|
@media print and ( max-device-width: @width-breakpoint-tablet ) {
|
2017-07-12 15:12:40 +00:00
|
|
|
// Chrome: override the default margins and reveal the footer
|
|
|
|
// Experimental technology (see https://developer.mozilla.org/en-US/docs/Web/CSS/@page/size)
|
|
|
|
@page {
|
|
|
|
margin: 50px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
html {
|
|
|
|
padding: 0 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@import 'header.less';
|
|
|
|
@import 'article.less';
|
|
|
|
@import 'references.less';
|
|
|
|
@import 'footer.less';
|
|
|
|
}
|