- B07_wf4_DesignDetail(8파일+openwebcad) -> B08_DesignDetail로 git mv (이력 보존) - B08_wf5_Quantity -> B07_Quantity (구 수량 백업 zip 보관 폴더) - 파생 문자열 일괄 전환: /b07-cad -> /b08-cad 정적 서빙, CAD 레이어 b07-* -> b08-*, postMessage aislo:b07:* -> aislo:b08:*, 패키지명 aislo-b08-cad, CSS .b08-*, 라우트 키/슬러그(B08_DESIGN_DETAIL/b08-design-detail, B07_QUANTITY/b07-quantity) - 상세설계 워크플로우 stage 4 -> 5 (확정/무효화 전이 3곳), 확정 완료 시 B09로 이동 - WORKFLOW_STEP_ROUTES 순서 재배열: index4=수량(B07), index5=상세설계(B08) - [임시] B08 이동 테스트 버튼 제거, openwebcad dist 재빌드 - 주석 의미 정렬: 수량 인계 주석 B08->B07, 도면 참조 B07->B08 Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
230 lines
5.2 KiB
CSS
230 lines
5.2 KiB
CSS
/* =============================================================================
|
|
* B08_DesignDetail_UI_Style.css
|
|
* 상세 설계(독립형 2D CAD) 화면 스타일 — theme.css 변수만 사용
|
|
* ========================================================================== */
|
|
|
|
/* 워크플로우 레이아웃 높이 (B06 패턴 준수) */
|
|
.b08-design-layout {
|
|
height: calc(100vh - var(--spacing-64));
|
|
height: calc(100dvh - var(--spacing-64));
|
|
min-height: 0;
|
|
}
|
|
|
|
.b08-design-layout .ui-workflow-layout__body,
|
|
.b08-design-layout .ui-workflow-layout__main {
|
|
height: 100%;
|
|
min-height: 0;
|
|
}
|
|
|
|
/* B06 확정 산출물 도면 목록 */
|
|
.b08-drawing-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--spacing-12);
|
|
height: 100%;
|
|
min-height: 0;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.b08-drawing-list__heading {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding-bottom: var(--spacing-12);
|
|
border-bottom: 1px solid var(--color-border);
|
|
}
|
|
|
|
.b08-drawing-list__heading span,
|
|
.b08-drawing-list__empty {
|
|
color: var(--color-text-muted);
|
|
font-size: var(--text-body-sm);
|
|
}
|
|
|
|
.b08-drawing-group {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--spacing-4);
|
|
/* 테두리 색·두께는 공통 ui-sidebar-section이 준다 — 여기선 형태(라운드·안쪽 여백)만. */
|
|
border-radius: var(--radius-lg);
|
|
padding: var(--spacing-8);
|
|
}
|
|
|
|
/* 횡단도는 2열 배치 */
|
|
.b08-drawing-group[data-kind="cross"] {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: var(--spacing-4);
|
|
}
|
|
|
|
.b08-drawing-group h3 {
|
|
margin: var(--spacing-8) 0 var(--spacing-4);
|
|
color: var(--color-text-muted);
|
|
font-size: var(--text-caption);
|
|
font-weight: 600;
|
|
}
|
|
|
|
/* 그리드 제목은 두 열을 가로지른다 */
|
|
.b08-drawing-group[data-kind="cross"] h3 {
|
|
grid-column: 1 / -1;
|
|
}
|
|
|
|
.b08-drawing-button {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 100%;
|
|
min-height: 34px;
|
|
padding: var(--spacing-4) var(--spacing-8);
|
|
/* 경계가 뚜렷하도록 배경색과 유사하지만 조금 짙은 톤 + 은은한 테두리 */
|
|
border: 1px solid color-mix(in srgb, var(--color-border) 55%, transparent);
|
|
/* 확정 여부를 나타내는 좌측 색 띠 (미확정: 투명) */
|
|
border-left: 3px solid transparent;
|
|
border-radius: var(--radius-buttons);
|
|
background: color-mix(in srgb, var(--color-surface) 84%, #000);
|
|
color: var(--color-text);
|
|
cursor: pointer;
|
|
text-align: center;
|
|
}
|
|
|
|
.b08-drawing-button__name {
|
|
overflow: hidden;
|
|
font-size: var(--text-body-sm);
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.b08-drawing-button:hover,
|
|
.b08-drawing-button[data-active="true"] {
|
|
border-color: var(--color-border);
|
|
background: var(--color-mist-violet);
|
|
}
|
|
|
|
.b08-drawing-button[data-active="true"] {
|
|
color: var(--color-primary);
|
|
}
|
|
|
|
/* 확정: 좌측 띠 + 측점 글자색을 함께 성공색으로 반영 */
|
|
.b08-drawing-button[data-confirmed="true"] {
|
|
border-color: color-mix(in srgb, var(--color-success) 35%, var(--color-border));
|
|
border-left-color: var(--color-success);
|
|
}
|
|
|
|
.b08-drawing-button[data-confirmed="true"] .b08-drawing-button__name {
|
|
color: var(--color-success);
|
|
}
|
|
|
|
.b08-drawing-actions {
|
|
position: sticky;
|
|
bottom: 0;
|
|
margin-top: auto;
|
|
padding-top: var(--spacing-12);
|
|
background: var(--color-surface-raised);
|
|
}
|
|
|
|
.b08-drawing-actions > button {
|
|
width: 100%;
|
|
}
|
|
|
|
/* CAD 뷰어 호스트 (상세 페이지 영역) */
|
|
.b08-cad-host {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 100%;
|
|
min-height: 420px;
|
|
overflow: hidden;
|
|
border-radius: var(--radius-cards);
|
|
background-color: var(--color-surface);
|
|
}
|
|
|
|
/* B08 독립형 CAD 앱 임베드 */
|
|
.b08-cad-frame {
|
|
position: absolute;
|
|
inset: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
border: 0;
|
|
}
|
|
|
|
.b08-cad-license {
|
|
position: absolute;
|
|
z-index: 2;
|
|
right: 10px;
|
|
bottom: 7px;
|
|
color: color-mix(in srgb, var(--color-text-muted) 55%, transparent);
|
|
font-size: 9px;
|
|
line-height: 1;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.b08-cad-license:hover {
|
|
color: var(--color-text-muted);
|
|
text-decoration: underline;
|
|
}
|
|
|
|
/* 선택 횡단도의 지반정보/계획정보 (잠정치) */
|
|
.b08-info-host:empty {
|
|
display: none;
|
|
}
|
|
|
|
.b08-info {
|
|
margin-top: var(--spacing-16);
|
|
padding-top: var(--spacing-16);
|
|
border-top: 1px solid var(--color-border);
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--spacing-8);
|
|
}
|
|
|
|
.b08-info__heading {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: var(--spacing-8);
|
|
}
|
|
|
|
.b08-info__badge {
|
|
padding: 1px 6px;
|
|
font-size: 10px;
|
|
color: var(--color-primary);
|
|
background: var(--color-mist-violet);
|
|
border-radius: var(--radius-buttons);
|
|
}
|
|
|
|
.b08-info__badge--confirmed {
|
|
color: var(--color-surface);
|
|
background: var(--color-success);
|
|
}
|
|
|
|
.b08-info__block {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2px;
|
|
}
|
|
|
|
.b08-info__block h4 {
|
|
margin: var(--spacing-8) 0 2px;
|
|
font-size: 0.78rem;
|
|
color: var(--color-text-muted);
|
|
}
|
|
|
|
.b08-info__row {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: var(--spacing-8);
|
|
font-size: 0.76rem;
|
|
}
|
|
|
|
.b08-info__key {
|
|
color: var(--color-text-muted);
|
|
}
|
|
|
|
.b08-info__val {
|
|
color: var(--color-text);
|
|
font-variant-numeric: tabular-nums;
|
|
}
|
|
|
|
.b08-info__empty {
|
|
font-size: 0.76rem;
|
|
color: var(--color-text-muted);
|
|
}
|