mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2026-08-31 06:57:16 +00:00
33 lines
597 B
SCSS
33 lines
597 B
SCSS
@media print {
|
|
#sidebarMenu, .btn-toolbar {
|
|
display: none !important
|
|
}
|
|
|
|
.sticky-top {
|
|
display: none;
|
|
}
|
|
|
|
main, main.ml-sm-auto, main.mx-sm-auto {
|
|
margin-left: 0 !important;
|
|
margin-right: 0 !important;
|
|
}
|
|
|
|
main {
|
|
max-width: 100%;
|
|
flex-basis: 100%;
|
|
width: 100% !important;
|
|
padding-left: 0 !important;
|
|
display: block;
|
|
}
|
|
|
|
.d-none.d-lg-table-cell { // always display ASN on print
|
|
display: table-cell !important;
|
|
}
|
|
|
|
app-document-list table {
|
|
thead th:first-child, tbody td:first-child { // hide checkboxes
|
|
display: none;
|
|
}
|
|
}
|
|
}
|