feat: 게임 배포 관리 UI를 파일 직접 업로드 방식으로 전환
All checks were successful
Client CI/CD / deploy (push) Successful in 12s

- zip 파일 업로드 → XHR progress bar로 진행률 표시
- 업로드 후 버전·파일명·크기·해시 자동 표시
- 현재 배포 중인 빌드 정보 상단에 표시

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-24 23:25:14 +09:00
parent e496de7e56
commit eb579ded5c
2 changed files with 163 additions and 48 deletions

View File

@@ -187,6 +187,78 @@
background: rgba(229, 115, 115, 0.08);
}
/* File input */
.admin-input-file {
padding: 8px 0;
color: rgba(255, 255, 255, 0.7);
font-size: 0.875rem;
cursor: pointer;
}
.admin-input-file:disabled {
opacity: 0.4;
cursor: not-allowed;
}
/* Field hint */
.admin-field-hint {
font-size: 0.75rem;
color: rgba(255, 255, 255, 0.3);
}
/* Upload progress */
.admin-upload-progress {
display: flex;
align-items: center;
gap: 10px;
}
.admin-upload-bar {
flex: 1;
height: 6px;
background: #BACDB0;
border-radius: 3px;
transition: width 0.2s;
}
.admin-upload-pct {
font-size: 0.8rem;
color: rgba(255, 255, 255, 0.5);
min-width: 36px;
text-align: right;
}
/* Current build info */
.admin-current-build {
display: flex;
flex-direction: column;
gap: 8px;
padding: 14px 16px;
background: rgba(186, 205, 176, 0.05);
border: 1px solid rgba(186, 205, 176, 0.12);
border-radius: 8px;
}
.admin-meta-row {
display: flex;
flex-wrap: wrap;
gap: 6px;
}
.admin-meta-item {
font-size: 0.78rem;
color: rgba(186, 205, 176, 0.8);
background: rgba(186, 205, 176, 0.08);
padding: 3px 10px;
border-radius: 4px;
border: 1px solid rgba(186, 205, 176, 0.15);
}
.admin-meta-hash {
font-family: monospace;
cursor: help;
}
/* Role badge */
.admin-role-badge {
font-size: 0.7rem;