팝업창 수정 - 팝업창 제목, 선택 이미지 저장 경고 문구 추가

This commit is contained in:
2026-05-17 21:25:37 +09:00
parent caf3d4fabc
commit a3d2909bf6
3 changed files with 94 additions and 3 deletions
+26
View File
@@ -535,9 +535,32 @@ footer span { font-size: 11px; color: var(--muted); }
display: flex; flex-direction: column; gap: 20px;
box-shadow: 0 24px 60px rgba(0,0,0,.6);
}
.modal-box-with-title {
padding-top: 0;
}
.modal-titlebar {
margin: 0 -32px;
padding: 14px 32px;
border-bottom: 1px solid var(--border);
border-radius: 14px 14px 0 0;
background: var(--card);
color: var(--text);
font-size: 15px;
font-weight: 700;
}
.modal-msg {
font-size: 14px; color: var(--text); line-height: 1.7;
}
.modal-warning {
font-size: 13px;
font-weight: 700;
line-height: 1.5;
color: var(--warning);
background: rgba(247,194,106,.12);
border: 1px solid rgba(247,194,106,.35);
border-radius: 8px;
padding: 9px 12px;
}
.modal-fields {
display: flex; flex-direction: column; gap: 10px;
}
@@ -564,6 +587,9 @@ footer span { font-size: 11px; color: var(--muted); }
font-family: 'JetBrains Mono', monospace;
font-size: 12px; color: var(--warning);
}
.modal-preview-list li {
color: var(--text);
}
.modal-actions {
display: flex; justify-content: flex-end; gap: 10px;
}