feat: Enhance loading indicator UI with custom spinners and improve download cancellation logic for custom downloaders.

This commit is contained in:
2025-12-29 20:42:59 +09:00
parent 6b9432ca4d
commit 8ecb8f33ce
7 changed files with 257 additions and 8 deletions

View File

@@ -1023,5 +1023,44 @@
background-color: #0dcaf0 !important;
border-color: #0dcaf0 !important;
}
/* 로딩 인디케이터 오버라이드 */
#loading {
background: rgba(15, 23, 42, 0.85) !important;
backdrop-filter: blur(8px) !important;
}
#loading img {
display: none !important;
}
#loading::after {
content: '';
width: 50px;
height: 50px;
border: 4px solid rgba(96, 165, 250, 0.2);
border-top-color: #60a5fa;
border-radius: 50%;
animation: loader-spin 0.8s linear infinite;
}
@keyframes loader-spin {
to { transform: rotate(360deg); }
}
/* 모달 로딩 인디케이터 오버라이드 */
#modal_loading img {
display: none !important;
}
#modal_loading::after {
content: '';
width: 40px;
height: 40px;
border: 3px solid rgba(96, 165, 250, 0.2);
border-top-color: #60a5fa;
border-radius: 50%;
animation: loader-spin 0.8s linear infinite;
}
</style>
{% endblock %}