fix(malaysia): 랙 인쇄 시 앱 셸 100vh 클립 풀어 모든 파렛트 출력
앱 셸(body.erp-app-body/.erp-app/.erp-content height:100vh + overflow:hidden, .erp-page overflow:auto)이 한 화면만 보이게 잘라, 인쇄 시 둘째 칸부터 잘려 항상 1장만 인쇄되던 근본 원인. 인쇄 미디어에서 조상 요소의 height/overflow 제한을 해제해 선택한 모든 파렛트가 각 장으로 출력되게 수정. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@@ -69,6 +69,13 @@
|
||||
/* 비인쇄 요소는 display:none 으로 공간까지 제거 — visibility:hidden 은
|
||||
공간이 남아 overlay(static)가 아래로 밀려 1페이지가 비던 문제 방지. */
|
||||
.erp-sidebar, .erp-topbar { display:none !important; }
|
||||
/* 앱 셸이 height:100vh + overflow:hidden 으로 한 화면만 보이게 잘라서,
|
||||
인쇄 시 둘째 칸부터 잘려 1장만 나오던 문제. 인쇄에선 조상들의
|
||||
높이·오버플로 제한을 풀어 모든 칸(sheet)이 흐르게 한다. */
|
||||
html, body.erp-app-body, .erp-app, .erp-content, .erp-page, .mys {
|
||||
height:auto !important; min-height:0 !important; max-height:none !important;
|
||||
overflow:visible !important;
|
||||
}
|
||||
.erp-content { margin:0 !important; }
|
||||
.erp-page { padding:0 !important; }
|
||||
.mys > *:not(.rvp-overlay) { display:none !important; }
|
||||
|
||||
Reference in New Issue
Block a user