ajout dune page batch evaluation

This commit is contained in:
cedrick2711
2026-08-17 18:16:22 -04:00
parent 2b943c5c22
commit a0e31d1a2f
5 changed files with 217 additions and 46 deletions
+27
View File
@@ -1955,3 +1955,30 @@ a:hover { color: var(--primary-dark); }
[data-theme="dark"] .error-container p {
color: var(--text-secondary);
}
/* Batch Evaluation - 2 cards wide layout */
.batch-eval-form {
max-width: none;
}
.batch-eval-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
margin-bottom: 20px;
}
.batch-eval-grid .card {
margin-bottom: 0;
}
/* Allow criteria rows to wrap for a 3x3 grid inside each card */
.batch-eval-grid .form-row {
flex-wrap: wrap;
}
@media (max-width: 1100px) {
.batch-eval-grid {
grid-template-columns: 1fr;
}
}