Hide UI and force landscape when printing
This commit is contained in:
parent
1615c3d902
commit
823e9b4c99
@ -186,5 +186,9 @@ export default defineComponent({
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
@media print {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
</style>
|
@ -25,6 +25,10 @@
|
||||
a, button {
|
||||
@extend %button;
|
||||
}
|
||||
|
||||
@media print {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
|
||||
.leaflet-bar {
|
||||
@ -51,6 +55,10 @@
|
||||
border-bottom-color: $global-border-color;
|
||||
}
|
||||
}
|
||||
|
||||
@media print {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
|
||||
.leaflet-touch {
|
||||
|
@ -36,5 +36,9 @@
|
||||
flex-direction: column;
|
||||
}
|
||||
}
|
||||
|
||||
@media print {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -333,6 +333,10 @@ button {
|
||||
transition: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media print {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
|
||||
/*******************
|
||||
@ -541,4 +545,10 @@ div.statusmessage {
|
||||
|
||||
.leaflet-players-pane {
|
||||
z-index: 600;
|
||||
}
|
||||
|
||||
@media print {
|
||||
@page {
|
||||
size: 297mm 210mm;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user