45 lines
1007 B
CSS
45 lines
1007 B
CSS
/* Dropzone avec style Bootstrap */
|
|
.dropzone {
|
|
min-height: 200px; /* Taille minimale */
|
|
border-radius: 0.375rem; /* Coin arrondi */
|
|
background: #f8f9fa; /* Couleur de fond (bg-light) */
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
/* Message de Dropzone */
|
|
.dropzone .dz-message {
|
|
font-size: 1rem;
|
|
font-weight: 500;
|
|
color: #6c757d; /* Texte gris (text-muted) */
|
|
}
|
|
|
|
/* Fichiers téléchargés */
|
|
.dropzone .dz-preview {
|
|
margin: 10px;
|
|
border: 1px solid #dee2e6; /* Bordure des fichiers */
|
|
border-radius: 0.375rem;
|
|
background: white;
|
|
padding: 10px;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.dropzone .dz-preview .dz-filename {
|
|
font-size: 0.9rem;
|
|
color: #495057; /* Texte plus foncé */
|
|
}
|
|
|
|
.dropzone .dz-preview .dz-size {
|
|
font-size: 0.8rem;
|
|
color: #adb5bd;
|
|
}
|
|
|
|
.dropzone .dz-preview .dz-remove {
|
|
font-size: 0.8rem;
|
|
color: #dc3545; /* Bouton rouge */
|
|
text-decoration: underline;
|
|
cursor: pointer;
|
|
}
|