feat(planning): gestion des camions, filtres et layout

- Dashboard réduit en barre de navigation compacte
- Mini calendrier démarrant le lundi (NZ_DATE_CONFIG)
- Bouton "Nouveau spectacle" déplacé dans la barre du haut
- Assignation / désassignation de camions sur les spectacles
- Création et modification de camions depuis le planning
- Plaque d'immatriculation + sélecteur de statut dans le formulaire camion
- Scroll du panneau droit corrigé (:host flex)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-02 18:51:04 +02:00
parent 91e220fb47
commit e968df526d
6 changed files with 346 additions and 73 deletions
@@ -3,51 +3,57 @@
height: 100vh;
background: #f5f4f0;
overflow: hidden;
display: flex;
flex-direction: column;
}
.dashboard {
padding: 40px;
max-width: 900px;
padding: 10px 20px;
display: flex;
align-items: center;
gap: 16px;
background: #fff;
border-bottom: 1px solid #ede8e0;
flex-shrink: 0;
}
.dashboard-title {
font-size: 1.6rem;
font-weight: 600;
color: #2c2c2c;
margin-bottom: 32px;
font-size: 0.8rem;
font-weight: 700;
color: #aaa;
text-transform: uppercase;
letter-spacing: 1px;
margin: 0;
white-space: nowrap;
}
.dashboard-cards {
display: flex;
flex-wrap: wrap;
gap: 16px;
gap: 8px;
}
.dashboard-card {
display: flex;
align-items: center;
gap: 16px;
padding: 20px 24px;
background: #fff;
border: 1px solid #ede8e0;
border-radius: 10px;
gap: 8px;
padding: 6px 14px;
background: #fdf6ed;
border: 1.5px solid #ede8e0;
border-radius: 20px;
text-decoration: none;
color: inherit;
min-width: 280px;
transition: box-shadow 0.15s ease, border-color 0.15s ease;
transition: border-color 0.15s ease, background 0.15s ease;
cursor: pointer;
}
.dashboard-card:hover {
border-color: #d4a574;
box-shadow: 0 4px 16px rgba(212, 165, 116, 0.15);
background: #faf0e4;
}
.card-icon {
width: 48px;
height: 48px;
background: #fdf6ed;
border-radius: 10px;
width: 20px;
height: 20px;
display: flex;
align-items: center;
justify-content: center;
@@ -55,29 +61,24 @@
flex-shrink: 0;
}
.card-content {
flex: 1;
}
.card-content h2 {
font-size: 1rem;
font-size: 0.82rem;
font-weight: 600;
color: #2c2c2c;
margin: 0 0 4px;
}
.card-content p {
font-size: 0.82rem;
color: #888;
margin: 0;
}
.card-arrow {
color: #ccc;
flex-shrink: 0;
transition: color 0.15s ease;
.card-content p {
display: none;
}
.dashboard-card:hover .card-arrow {
color: #d4a574;
.card-arrow {
display: none;
}
.outlet-wrapper {
flex: 1;
overflow: hidden;
display: flex;
flex-direction: column;
}