enhanced print view

This commit is contained in:
2022-09-17 20:02:58 +02:00
parent 3c010efb59
commit 63d010d04a
28 changed files with 2169 additions and 1979 deletions

View File

@@ -1,3 +1,17 @@
@charset "UTF-8";
@import "base/generic";
.showInPrintView {
display: none;
}
@media print {
.hideInPrintView {
display:none;
}
.showInPrintView {
display: initial;
}
}