- Issue created by @vlooi vlerke
- Status changed to Closed: won't fix
10 months ago 8:30am 10 January 2024 - π¨πSwitzerland saschaeggi Zurich
We're currently having no resources to support this, so I'm gonna to close this for now.
When I print a gin page the print preview is set to mobile view
This cause problems when I want to print views tables or grids.
I tried adding:
@media print {
@page {
size: 330mm 427mm;
margin: 14mm;
}
.container {
width: 1170px;
}
}
to my private://gin-custom.css
But no success. Please help
Open up /admin/config with your gin theme enabled in full screen (desktop)
Notice the 2 column layout
Click print in your browser
Notice the 1 column mobile layout in print preview.
https://developer.mozilla.org/en-US/docs/Web/CSS/@page/size
As a feature requests maybe add a print options in theme settings where you can set page layout, size and margin as described above
Or a simple
@media print {
@page {
size: 330mm 427mm;
margin: 14mm;
}
.container {
width: 1170px;
}
}
css that can be edited by developers safely
Closed: won't fix
Miscellaneous
We're currently having no resources to support this, so I'm gonna to close this for now.