fix: PDF 인쇄 시 드롭다운/팝오버 캡처 방지 + plan 메뉴에서 제작 파이프라인 제외

- @media print 규칙에 Radix popper / role=menu·dialog·tooltip 숨김 추가
  → '리포트/플랜 다운로드' 드롭다운이 열린 채 window.print() 호출돼도 캡처에서 제외
- PLAN_SECTIONS 에서 workflow-tracker(제작 파이프라인) 주석 처리
main
Mina Choi 2026-05-20 11:50:02 +09:00
parent 84710f185c
commit edf56cefd8
2 changed files with 6 additions and 1 deletions

View File

@ -5,7 +5,8 @@ export const PLAN_SECTIONS = [
{ id: 'content-calendar', label: '콘텐츠 캘린더' },
{ id: 'asset-collection', label: '에셋 수집' },
{ id: 'repurposing-proposal', label: '리퍼포징 제안' },
{ id: 'workflow-tracker', label: '제작 파이프라인' },
// { id: 'workflow-tracker', label: '제작 파이프라인' }, // plan에서 미포함
{ id: 'my-asset-upload', label: '나의 소재' },
// 성과 기반 전략 조정 — 본 차수 미포함, 후속 모듈 이관
// { id: 'strategy-adjustment', label: '전략 조정' },

View File

@ -78,6 +78,10 @@
[data-report-nav],
[data-plan-nav],
[data-cta-card],
[data-radix-popper-content-wrapper],
[role="menu"],
[role="dialog"],
[role="tooltip"],
nav {
display: none !important;
}