에디터 기능 개선, 약관 관리에서 약관 원본 파일 첨부 기능 추가(DDL 영향)

This commit is contained in:
Rinjae
2026-01-07 15:31:17 +09:00
parent 935917e22a
commit dda45748ac
10 changed files with 1045 additions and 62 deletions
+51 -2
View File
@@ -200,8 +200,9 @@
max-width: 100% !important;
height: auto !important;
border-radius: 8px !important;
margin: 16px 0 !important;
display: block !important;
margin-top: 16px !important;
margin-bottom: 16px !important;
/* margin-left, margin-right는 인라인 스타일로 정렬 제어 */
}
/* ==========================================================================
@@ -332,3 +333,51 @@
padding: 8px !important;
}
}
/* ==========================================================================
Summernote 이미지 업로드 UI
========================================================================== */
/* 이미지 업로드 로딩 인디케이터 */
.image-upload-loading {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: rgba(0, 73, 180, 0.9);
color: #fff;
padding: 12px 24px;
border-radius: 8px;
font-size: 14px;
z-index: 1000;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
animation: pulse 1.5s infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.7; }
}
/* 이미지 다이얼로그 업로드 안내 */
.image-upload-guide {
display: flex;
align-items: center;
gap: 8px;
padding: 12px 16px;
background: #EFF6FF;
border: 1px solid #BFDBFE;
border-radius: 8px;
margin-bottom: 16px;
font-size: 13px;
color: #1E40AF;
}
.image-upload-guide .material-icons {
font-size: 18px;
color: #3B82F6;
}
.image-upload-guide strong {
font-weight: 600;
}