diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-05-13 03:38:44 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-05-13 03:38:44 +0000 |
| commit | 4a817044e9a9d8e26642060616afb29a55a8d7a1 (patch) | |
| tree | d9c6e09f0bb7071985e41f5f87e01e5bcf7ade13 /app/globals.css | |
| parent | d5af2677b423b8429f5d5fe87e111e85aa560745 (diff) | |
(대표님) 공통설정 변경
Diffstat (limited to 'app/globals.css')
| -rw-r--r-- | app/globals.css | 46 |
1 files changed, 44 insertions, 2 deletions
diff --git a/app/globals.css b/app/globals.css index 9cd22397..590a32a8 100644 --- a/app/globals.css +++ b/app/globals.css @@ -150,12 +150,20 @@ body { } .container-wrapper { - @apply min-[1800px]:max-w-[1536px] min-[1800px]:border-x border-border/30 dark:border-border mx-auto w-full; + @apply min-[1800px]:max-w-[1800px] min-[1800px]:border-x border-border/30 dark:border-border mx-auto w-full; + + /* 추가 breakpoint */ + @apply min-[2200px]:max-w-[2000px]; + @apply min-[2600px]:max-w-[2400px]; } + .container { - @apply px-4 xl:px-6 2xl:px-4 mx-auto max-w-[1536px]; + @apply px-4 xl:px-6 2xl:px-4 mx-auto max-w-[1800px]; + + } + } @@ -165,4 +173,38 @@ body { .pdftron-container { all: unset !important; +} + + +/* 읽기 전용 셀 기본 스타일 */ +.read-only-cell { + background-color: #f5f5f5; + color: #666; + cursor: not-allowed; + border-left: 2px solid #ddd; + user-select: none; +} + +/* 읽기 전용 셀 호버 효과 */ +.read-only-cell:hover { + background-color: #eaeaea; +} + +/* 테이블 헤더에서 읽기 전용 컬럼 표시 (선택 사항) */ +th[data-read-only="true"] { + background-color: #f0f0f0; + font-style: italic; +} + +/* 읽기 전용 필드를 색상으로 구분 - 폼에서도 사용 가능 */ +.form-field-read-only { + background-color: #f5f5f5 !important; + border-color: #ddd !important; + cursor: not-allowed !important; + opacity: 0.8; +} + +/* 선택적: 편집 화면으로 이동 시 읽기 전용 필드 강조 */ +.edit-mode .read-only-cell { + box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1); }
\ No newline at end of file |
