20260205 업데이트(컨텐츠 페이지 연결)

This commit is contained in:
2026-02-05 10:06:09 +09:00
parent 5d52f6d37a
commit 6dcc2eb796
208 changed files with 8143 additions and 1524 deletions

View File

@@ -530,3 +530,39 @@ button {
cursor: pointer;
}
/* 모든 W2UI 그리드 헤더 텍스트와 정렬 아이콘을 중앙으로 */
.w2ui-col-header,
.w2ui-col-header > div {
display: flex !important;
justify-content: center !important; /* 가로 중앙 */
align-items: center !important; /* 세로 중앙 */
text-align: center !important;
}
/* 정렬 화살표 위치 조정 */
.w2ui-col-header .w2ui-sort-up,
.w2ui-col-header .w2ui-sort-down {
margin-left: 5px !important;
}
/* 1. 팝업 메인 제목 가운데 정렬 */
.w2ui-popup-title {
text-align: center !important;
padding-left: 0 !important;
}
/* 3. 합계(Summary) 행 문구 정렬 */
.w2ui-grid-summary td {
text-align: center !important;
}
/* 숫자 데이터 합계는 우측 정렬 유지 (선택 사항) */
/* nth-child를 사용하여 면적/금액 컬럼만 오른쪽으로 보낼 수 있습니다. */
.w2ui-grid-summary td:nth-child(n+9) {
text-align: right !important;
padding-right: 10px !important;
}