이미지 삭제 기능을 추가하고 NCue 로고를 제거한다.

썸네일에서 서버의 실제 이미지 파일을 안전하게 삭제하고 갤러리 상태를 동기화한다.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-07-13 09:07:10 +09:00
parent d831f4d736
commit 5ac19523c1
5 changed files with 177 additions and 26 deletions

View File

@@ -275,6 +275,32 @@ ul.thumbs li {
padding: 0;
margin: 5px 10px 5px 0;
list-style: none;
position: relative;
}
.thumb-delete {
position: absolute;
top: 0;
right: 0;
z-index: 10;
width: 18px;
height: 18px;
padding: 0;
border: none;
border-radius: 0;
background: rgba(128, 0, 200, 0.9);
color: #fff;
font-size: 14px;
font-weight: bold;
line-height: 16px;
text-align: center;
cursor: pointer;
opacity: 0.85;
}
.thumb-delete:hover,
.thumb-delete:focus {
opacity: 1;
background: rgba(100, 0, 160, 1);
outline: none;
}
a.thumb {
padding: 2px;