fix(malaysia): 창고 POG 인쇄 6열 강제 + 면당 한 장 보장
.rv-row 에 grid-template-columns:repeat(6,1fr) !important 로 6열 강제(인쇄 시 3열로 덮이던 문제 차단). height:210mm 고정 제거 → height:auto + 칸 min-height:50mm 로 프린터 기본여백 더해져도 면이 한 장 넘던 문제 해소. rv-side flex 해제해 자연 높이로 흐름. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@@ -173,17 +173,25 @@
|
|||||||
(화면 미리보기는 위쪽 cqh 그대로 사용) */
|
(화면 미리보기는 위쪽 cqh 그대로 사용) */
|
||||||
body.printing-pog .pog-sheet {
|
body.printing-pog .pog-sheet {
|
||||||
container-type:normal !important;
|
container-type:normal !important;
|
||||||
width:100% !important; height:210mm !important; aspect-ratio:auto !important;
|
width:100% !important; height:auto !important; aspect-ratio:auto !important;
|
||||||
padding:6mm 5mm !important;
|
padding:4mm 4mm !important;
|
||||||
box-shadow:none !important; border-radius:0 !important;
|
box-shadow:none !important; border-radius:0 !important;
|
||||||
page-break-inside:avoid; break-before:page; page-break-before:always;
|
break-before:page; page-break-before:always; page-break-inside:avoid;
|
||||||
}
|
}
|
||||||
body.printing-pog .pog-sheet:first-child { break-before:auto; page-break-before:auto; }
|
body.printing-pog .pog-sheet:first-child { break-before:auto; page-break-before:auto; }
|
||||||
|
/* 면 자연 높이로 흐르게(flex 해제) → 프린터 여백 변동에도 한 면=한 장 */
|
||||||
|
body.printing-pog .pog-sheet .rv-side { display:block !important; flex:none !important; }
|
||||||
|
/* 6열 강제(인쇄에서 3열로 덮이는 문제 차단) */
|
||||||
|
body.printing-pog .pog-sheet .rv-row {
|
||||||
|
display:grid !important; grid-template-columns:repeat(6, 1fr) !important;
|
||||||
|
gap:2mm !important; margin:0 0 2mm !important;
|
||||||
|
}
|
||||||
body.printing-pog .pog-sheet .pog-sheet-head { margin-bottom:4mm !important; }
|
body.printing-pog .pog-sheet .pog-sheet-head { margin-bottom:4mm !important; }
|
||||||
body.printing-pog .pog-sheet .pog-sheet-head .pog-t { font-size:8mm !important; }
|
body.printing-pog .pog-sheet .pog-sheet-head .pog-t { font-size:8mm !important; }
|
||||||
body.printing-pog .pog-sheet .pog-sheet-head .pog-meta { font-size:4.5mm !important; }
|
body.printing-pog .pog-sheet .pog-sheet-head .pog-meta { font-size:4.5mm !important; }
|
||||||
body.printing-pog .pog-sheet .rv-row { gap:2mm !important; margin:0 0 2mm !important; }
|
body.printing-pog .pog-sheet .rv-cell {
|
||||||
body.printing-pog .pog-sheet .rv-cell { padding:1.5mm 2mm !important; }
|
min-height:50mm !important; height:auto !important; padding:1.5mm 2mm !important;
|
||||||
|
}
|
||||||
body.printing-pog .pog-sheet .rv-cell-head {
|
body.printing-pog .pog-sheet .rv-cell-head {
|
||||||
font-size:3.6mm !important; margin-bottom:1mm !important; padding-bottom:0.8mm !important;
|
font-size:3.6mm !important; margin-bottom:1mm !important; padding-bottom:0.8mm !important;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user