fixed print button tooltip messing up print

This commit is contained in:
vabene1111 2020-05-04 20:48:17 +02:00
parent 22e403e0ff
commit f0e1c901c6

View File

@ -13,6 +13,13 @@
<!-- prevent weired character stuff escaping the pdf box --> <!-- prevent weired character stuff escaping the pdf box -->
<style> <style>
/* fixes print layout being disturbed by print button tooltip */
@media print {
.tooltip {
display: none;
}
}
.textLayer > span { .textLayer > span {
color: transparent; color: transparent;
position: absolute; position: absolute;
@ -21,6 +28,7 @@
transform-origin: 0% 0%; transform-origin: 0% 0%;
} }
/* css classes needed to render markdown blockquotes */
blockquote { blockquote {
background: #f9f9f9; background: #f9f9f9;
border-left: 4px solid #ccc; border-left: 4px solid #ccc;