Checkpoint: Colorisation des boutons d'actions de la fenêtre "Inscrits à la séquence" avec des couleurs pastel et animations au survol
This commit is contained in:
@@ -380,14 +380,16 @@ export default function AdminSequenceInscrits() {
|
||||
setShowPreviewModal(true);
|
||||
}}
|
||||
disabled={nbConfirmes === 0}
|
||||
className="bg-blue-50 hover:bg-blue-100 border-blue-200 text-blue-700 transition-all duration-200 hover:scale-105"
|
||||
>
|
||||
<Eye className="h-4 w-4 mr-2 text-blue-600" />
|
||||
<Eye className="h-4 w-4 mr-2" />
|
||||
Aperçu teaser
|
||||
</Button>
|
||||
<Button
|
||||
variant="outline"
|
||||
onClick={() => handleSendEmails("teaser")}
|
||||
disabled={sendEmailsMutation.isPending || nbConfirmes === 0}
|
||||
className="bg-purple-50 hover:bg-purple-100 border-purple-200 text-purple-700 transition-all duration-200 hover:scale-105"
|
||||
>
|
||||
<Mail className="h-4 w-4 mr-2" />
|
||||
Envoyer email teaser
|
||||
@@ -397,6 +399,7 @@ export default function AdminSequenceInscrits() {
|
||||
variant="outline"
|
||||
onClick={handleExportExcel}
|
||||
disabled={exportExcelMutation.isPending}
|
||||
className="bg-green-50 hover:bg-green-100 border-green-200 text-green-700 transition-all duration-200 hover:scale-105"
|
||||
>
|
||||
<Download className="h-4 w-4 mr-2" />
|
||||
Export Excel
|
||||
@@ -405,6 +408,7 @@ export default function AdminSequenceInscrits() {
|
||||
variant="outline"
|
||||
onClick={handleExportPDF}
|
||||
disabled={exportPDFMutation.isPending}
|
||||
className="bg-orange-50 hover:bg-orange-100 border-orange-200 text-orange-700 transition-all duration-200 hover:scale-105"
|
||||
>
|
||||
<Download className="h-4 w-4 mr-2" />
|
||||
Export PDF
|
||||
@@ -413,6 +417,7 @@ export default function AdminSequenceInscrits() {
|
||||
variant="outline"
|
||||
onClick={handleExportFeuille}
|
||||
disabled={exportFeuilleMutation.isPending}
|
||||
className="bg-pink-50 hover:bg-pink-100 border-pink-200 text-pink-700 transition-all duration-200 hover:scale-105"
|
||||
>
|
||||
<Download className="h-4 w-4 mr-2" />
|
||||
Feuille de présence
|
||||
|
||||
Reference in New Issue
Block a user