feat: remove redundant upload results

This commit is contained in:
2025-08-26 12:56:21 +02:00
parent e0dedc1c23
commit 423d052ccf
2 changed files with 69 additions and 51 deletions

View File

@@ -1132,6 +1132,37 @@ p {
font-weight: 600;
}
.progress-header {
position: relative;
}
.progress-refresh-btn {
position: absolute;
top: 0;
right: 0;
background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
border: 1px solid rgba(255, 255, 255, 0.15);
color: rgba(255, 255, 255, 0.9);
padding: 0.5rem;
border-radius: 8px;
cursor: pointer;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
display: flex;
align-items: center;
justify-content: center;
}
.progress-refresh-btn:hover {
background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
border-color: rgba(255, 255, 255, 0.25);
transform: translateY(-1px);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.progress-refresh-btn:active {
transform: translateY(0);
}
.progress-info,
.results-summary {
display: flex;