Some print fixes

This commit is contained in:
Benjamin Bädorf 2021-10-05 16:50:10 +02:00
parent 56a88d5a01
commit 582730edb6
No known key found for this signature in database
GPG key ID: 4406E80E13CD656C
5 changed files with 32 additions and 1 deletions

View file

@ -1,4 +1,4 @@
<details class="event-day"> <details open class="event-day">
<summary class="event-day-heading"> <summary class="event-day-heading">
{{ eventDay.heading }} {{ eventDay.heading }}
</summary> </summary>

View file

@ -4,6 +4,12 @@
justify-self: start; justify-self: start;
} }
@media print {
.downloads {
display: none;
}
}
@media screen and (min-width: 768px) { @media screen and (min-width: 768px) {
.downloads { .downloads {
grid-column-start: 1; grid-column-start: 1;

View file

@ -27,6 +27,13 @@
} }
} }
@media print {
.event {
display: block !important;
overflow: hidden;
}
}
.event-time { .event-time {
grid-column-start: 1; grid-column-start: 1;
grid-column-end: 3; grid-column-end: 3;

View file

@ -14,6 +14,12 @@
border-bottom-right-radius: 5px; border-bottom-right-radius: 5px;
} }
@media print {
.navigation {
display: none;
}
}
@media screen and (min-width: 1024px) { @media screen and (min-width: 1024px) {
.navigation { .navigation {
background-color: transparent; background-color: transparent;

View file

@ -35,6 +35,12 @@
} }
} }
@media print {
.navigation {
display: flex;
}
}
.skip-to-content { .skip-to-content {
position: fixed; position: fixed;
top: 0; top: 0;
@ -253,3 +259,9 @@
grid-row-end: 5; grid-row-end: 5;
} }
} }
@media print {
.footer {
display: none;
}
}