Some print fixes
This commit is contained in:
parent
56a88d5a01
commit
582730edb6
|
@ -1,4 +1,4 @@
|
|||
<details class="event-day">
|
||||
<details open class="event-day">
|
||||
<summary class="event-day-heading">
|
||||
{{ eventDay.heading }}
|
||||
</summary>
|
||||
|
|
|
@ -4,6 +4,12 @@
|
|||
justify-self: start;
|
||||
}
|
||||
|
||||
@media print {
|
||||
.downloads {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 768px) {
|
||||
.downloads {
|
||||
grid-column-start: 1;
|
||||
|
|
|
@ -27,6 +27,13 @@
|
|||
}
|
||||
}
|
||||
|
||||
@media print {
|
||||
.event {
|
||||
display: block !important;
|
||||
overflow: hidden;
|
||||
}
|
||||
}
|
||||
|
||||
.event-time {
|
||||
grid-column-start: 1;
|
||||
grid-column-end: 3;
|
||||
|
|
|
@ -14,6 +14,12 @@
|
|||
border-bottom-right-radius: 5px;
|
||||
}
|
||||
|
||||
@media print {
|
||||
.navigation {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 1024px) {
|
||||
.navigation {
|
||||
background-color: transparent;
|
||||
|
|
12
styles.css
12
styles.css
|
@ -35,6 +35,12 @@
|
|||
}
|
||||
}
|
||||
|
||||
@media print {
|
||||
.navigation {
|
||||
display: flex;
|
||||
}
|
||||
}
|
||||
|
||||
.skip-to-content {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
|
@ -253,3 +259,9 @@
|
|||
grid-row-end: 5;
|
||||
}
|
||||
}
|
||||
|
||||
@media print {
|
||||
.footer {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue