/* ============================================================================= * B05 구조물 서클마크·벌룬 오버레이 스타일. * * 종단 그래프(.b05-profile__chart) 위에 얹는 레이어다. 그래프 자체의 조작(측점선 끌기, * 우클릭 메뉴)을 막지 않도록 레이어는 이벤트를 통과시키고, 마크·벌룬만 이벤트를 받는다. * ========================================================================== */ .b05-structure__layer { position: absolute; inset: 0; pointer-events: none; overflow: visible; z-index: 3; } /* 서클마크 — 배치형태와 무관하게 하나. 구간형은 기점에 찍힌다. */ .b05-structure__mark { position: absolute; transform: translateX(-50%); width: 18px; height: 18px; padding: 0; border-radius: 50%; border: 2px solid currentColor; background: var(--color-surface, #fff); font-size: 10px; font-weight: 700; line-height: 1; cursor: grab; pointer-events: auto; display: flex; align-items: center; justify-content: center; } .b05-structure__mark:hover { filter: brightness(0.92); } .b05-structure__mark.is-selected { border-width: 3px; box-shadow: 0 0 0 3px color-mix(in srgb, currentColor 25%, transparent); } .b05-structure__mark:active { cursor: grabbing; } /* 구간 띠 — 고른 동안에만 시~종점을 펼쳐 보여 준다. */ .b05-structure__band { position: absolute; height: 4px; border-radius: 2px; opacity: 0.55; pointer-events: none; } /* 값 벌룬 — 유토곡선 벌룬과 같은 결(테두리 도형 + 여러 줄 텍스트). */ .b05-structure__balloon { position: absolute; transform: translateX(-50%); display: flex; flex-direction: column; gap: 1px; padding: 4px 8px; border: 1.5px solid currentColor; border-radius: 6px; background: var(--color-surface, #fff); box-shadow: 0 2px 6px rgb(0 0 0 / 18%); font-size: 11px; line-height: 1.35; white-space: nowrap; pointer-events: none; z-index: 4; } .b05-structure__balloon strong { font-size: 11.5px; } .b05-structure__balloon-memo { opacity: 0.7; font-style: italic; }