이름 변경 실행 - 전체 이미지 / 선택된 이미지 두 상황별로 다르게 작동하도록 수정

This commit is contained in:
2026-05-15 16:54:08 +09:00
parent 764a4c9590
commit 252e5727f4
3 changed files with 57 additions and 5 deletions
+11
View File
@@ -517,6 +517,17 @@ footer span { font-size: 11px; color: var(--muted); }
}
.modal-fields input[type="number"] { width: 70px; text-align: center; }
.modal-fields input:focus { border-color: var(--accent); }
.modal-conflict-list {
list-style: none;
display: flex; flex-direction: column; gap: 4px;
max-height: 160px; overflow-y: auto;
background: var(--card); border: 1px solid var(--border);
border-radius: 8px; padding: 8px 12px;
}
.modal-conflict-list li {
font-family: 'JetBrains Mono', monospace;
font-size: 12px; color: var(--warning);
}
.modal-actions {
display: flex; justify-content: flex-end; gap: 10px;
}