update upload scripts

This commit is contained in:
2026-01-05 14:49:54 +01:00
parent efb61eb283
commit 67e51a5348
4 changed files with 185 additions and 14 deletions

View File

@@ -17,7 +17,7 @@
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
background: linear-gradient(135deg, #4f46e5 0%, #3730a3 100%);
min-height: 100vh;
}
@@ -39,7 +39,7 @@ body {
background: white;
padding: 40px;
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0,0,0,0.2);
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
width: 100%;
max-width: 400px;
}
@@ -142,7 +142,7 @@ body {
.navbar {
background: white;
padding: 15px 30px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
display: flex;
justify-content: space-between;
align-items: center;
@@ -193,7 +193,7 @@ body {
background: white;
border-radius: 12px;
padding: 20px;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
overflow-y: auto;
}
@@ -313,7 +313,7 @@ body {
border-radius: 12px;
padding: 30px;
margin-top: 20px;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.admin-header {
@@ -376,7 +376,7 @@ body {
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.5);
background: rgba(0, 0, 0, 0.5);
z-index: 1000;
}
@@ -422,7 +422,7 @@ body {
max-width: 800px;
margin-left: auto;
margin-right: auto;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.step-indicator {
@@ -519,7 +519,7 @@ body {
border-color: var(--primary);
}
.radio-item input[type="radio"]:checked + label {
.radio-item input[type="radio"]:checked+label {
color: var(--primary);
font-weight: 600;
}
@@ -540,6 +540,7 @@ body {
.empty-state h3 {
margin-bottom: 10px;
}
/* Context Menu */
.context-menu {
display: none;
@@ -547,7 +548,7 @@ body {
background: white;
border: 1px solid var(--border);
border-radius: 8px;
box-shadow: 0 4px 20px rgba(0,0,0,0.15);
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
z-index: 1000;
min-width: 150px;
}
@@ -615,8 +616,13 @@ body {
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.btn:disabled {
@@ -624,6 +630,7 @@ body {
cursor: not-allowed;
opacity: 0.6;
}
/* Scenario Tree Styles */
.scenario-controls {
margin: 20px 0;
@@ -713,7 +720,9 @@ body {
margin-top: 5px;
}
.layer-checkbox, .stack-checkbox, .scenario-checkbox {
.layer-checkbox,
.stack-checkbox,
.scenario-checkbox {
width: 16px;
height: 16px;
cursor: pointer;
@@ -772,7 +781,7 @@ input[type="checkbox"]:indeterminate::before {
#queue-log {
border: 1px solid #333;
box-shadow: inset 0 2px 10px rgba(0,0,0,0.5);
box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5);
}
#scenarioSearch:focus {
@@ -783,4 +792,4 @@ input[type="checkbox"]:indeterminate::before {
.status-waiting {
background: #fef3c7;
color: #92400e;
}
}