Merge "Make sure lazy loaded images display in printed PDFs"

This commit is contained in:
jenkins-bot 2019-07-16 23:39:27 +00:00 committed by Gerrit Code Review
commit e6b4f4f2b2
1 changed files with 6 additions and 0 deletions

View File

@ -1,4 +1,5 @@
@import '../../../minerva.less/minerva.variables';
@import '../../../minerva.less/minerva.mixins';
@media print {
.noprint,
@ -27,6 +28,11 @@
img {
max-width: 100%;
// Disable lazy loading transition animation for print media (T220668) so they display.
&.image-lazy-loaded {
.animation( none ) !important;
}
}
}