26 lines
536 B
SCSS
26 lines
536 B
SCSS
@media print {
|
|
.prettyprint {
|
|
display: none;
|
|
visibility: hidden;
|
|
}
|
|
|
|
.print-striped-rows tr:nth-child(even) {
|
|
background-color: #f9f9f9 !important;
|
|
}
|
|
|
|
.print-striped-rows tr:nth-child(even) td:first-child.truncate {
|
|
//HACK: The "day" column is truncated
|
|
background-color: white !important;
|
|
}
|
|
}
|
|
|
|
.fullscreen-map {
|
|
position: fixed !important;
|
|
top: 0 !important;
|
|
left: 0 !important;
|
|
width: 100vw !important;
|
|
height: 100vh !important;
|
|
border-radius: 0 !important;
|
|
box-shadow: none !important;
|
|
}
|