- 프로젝트명 조합기를 글자 단위 소유 추적으로 다시 만듦(`B02_ProjRegister_UI_Name.ts`) — 자동 글자 사이에 글을 끼워 넣어도 사업연도·사업지역·임도종류 연동이 끊기지 않음 (실측: 「울진군 금강송면」의 「금강송면」 앞 삽입 후에도 지역·종류·연도 변경이 반영) - 비고 칸을 맨 마지막으로 이동 - 제목·여백·버튼 줄을 공용 템플릿(`createGeneralLayout` · `ui-general-block__actions`)으로 전환, 화면 전용 제목 스타일 제거 - 헤더의 사용자명·로그아웃(로그인·회원가입) 버튼이 붙어 보이던 것 간격 부여 Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
44 lines
1.4 KiB
CSS
44 lines
1.4 KiB
CSS
/* =============================================================================
|
|
* B02_ProjRegister_UI_Style.css
|
|
* 프로젝트 등록 페이지 전용 스타일 (theme.css 변수만 사용)
|
|
* ========================================================================== */
|
|
|
|
/* 제목·여백·버튼 줄은 공용 템플릿(ui_template_general_layout)을 쓴다 — 여기서는
|
|
이 화면에만 필요한 것(2열 그리드·셀렉트 화살표·버튼 오른쪽 정렬)만 둔다. */
|
|
|
|
/* 2열 필드 그리드 (좁은 화면에서는 1열) */
|
|
.b02-proj__grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: var(--spacing-16);
|
|
}
|
|
|
|
/* select는 공통 .ui-input 상속 + 드롭다운 화살표 여백 확보 */
|
|
.b02-proj__select {
|
|
appearance: none;
|
|
cursor: pointer;
|
|
background-image:
|
|
linear-gradient(45deg, transparent 50%, var(--color-slate) 50%),
|
|
linear-gradient(135deg, var(--color-slate) 50%, transparent 50%);
|
|
background-position:
|
|
calc(100% - 18px) 50%,
|
|
calc(100% - 13px) 50%;
|
|
background-size:
|
|
5px 5px,
|
|
5px 5px;
|
|
background-repeat: no-repeat;
|
|
padding-right: var(--spacing-32);
|
|
}
|
|
|
|
@media (max-width: 640px) {
|
|
.b02-proj__grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
|
|
/* 취소·등록 버튼 줄 — 나머지는 공용 `.ui-general-block__actions` 가 맡는다. */
|
|
.b02-proj__actions {
|
|
justify-content: flex-end;
|
|
margin-top: var(--spacing-16);
|
|
}
|