modale csv

This commit is contained in:
2026-05-04 12:52:48 +02:00
parent 2087cfb945
commit 8c4c402f5b
7 changed files with 391 additions and 235 deletions
+28 -1
View File
@@ -472,6 +472,33 @@ input[type="number"] {
flex-direction: column;
gap: 10px;
}
/* Modale étendue pour les grands tableaux (ex: Import CSV) */
.pf-modal-content.modal-large {
max-width: 900px;
transition: max-width 0.3s ease;
}
/* Conteneur de tableau scrollable pour la modale */
.import-table-wrapper {
max-height: 45vh;
overflow-y: auto;
overflow-x: auto;
-webkit-overflow-scrolling: touch; /* Fluidité sur iOS */
background: white;
border: 1px solid #e2e8f0;
border-radius: 8px;
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}
/* Zone de dépôt (Upload CSV) */
.import-dropzone {
border: 2px dashed #cbd5e1;
padding: 40px 20px;
text-align: center;
border-radius: 12px;
background: #f8fafc;
}
@keyframes modalPop {
from {
transform: scale(0.95) translateY(10px);
@@ -683,7 +710,7 @@ input[type="number"] {
font-size: 0.9rem;
}
.prev-alloc-table td {
padding: 3px 14px;
padding: 3px 10px;
border-bottom: 1px solid #f1f5f9;
border-right: 1px solid #f1f5f9;
white-space: nowrap;