Hi,
so, in the bootstrap.css, there is a @media print in row 117:
@media print {
* {
text-shadow: none !important;
color: #000 !important;
background: none
box-shadow: none !important;
}
a,
a:visited {
text-decoration: underline;
}
a[href]:after {
content: " (" attr(href) ")";
}
abbr[title]:after {
content: " (" attr(title) ")";
}
.ir a:after,
a[href^="javascript:"]:after,
a[href^="#"]:after {
content: "";
}
pre,
blockquote {
border: 1px solid #999;
page-break-inside: avoid;
}
thead {
display: table-header-group;
}
tr,
img {
page-break-inside: avoid;
}
img {
max-width: 100% !important;
}
and in row 4901:
@media print {
.visible-print {
display: inherit !important;
}
.hidden-print {
display: none !important;
}
and in the theme.css, there is also a @media print in row 8620:
@media print {
*,
*:before,
*:after {
background: none !important;
color: black !important;
box-shadow: none !important;
text-shadow: none !important;
}
a,
a:visited {
text-decoration: underline;
}
pre,
blockquote {
border: 1px solid #999;
page-break-inside: avoid;
}
thead {
display: table-header-group;
}
tr,
img {
page-break-inside: avoid;
}
img {
max-width: 100% !important;
}
I hope you can help me?
Greetings