e968df526d
- 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>
85 lines
1.4 KiB
CSS
85 lines
1.4 KiB
CSS
.background {
|
|
width: 100%;
|
|
height: 100vh;
|
|
background: #f5f4f0;
|
|
overflow: hidden;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.dashboard {
|
|
padding: 10px 20px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 16px;
|
|
background: #fff;
|
|
border-bottom: 1px solid #ede8e0;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.dashboard-title {
|
|
font-size: 0.8rem;
|
|
font-weight: 700;
|
|
color: #aaa;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
margin: 0;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.dashboard-cards {
|
|
display: flex;
|
|
gap: 8px;
|
|
}
|
|
|
|
.dashboard-card {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 6px 14px;
|
|
background: #fdf6ed;
|
|
border: 1.5px solid #ede8e0;
|
|
border-radius: 20px;
|
|
text-decoration: none;
|
|
color: inherit;
|
|
transition: border-color 0.15s ease, background 0.15s ease;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.dashboard-card:hover {
|
|
border-color: #d4a574;
|
|
background: #faf0e4;
|
|
}
|
|
|
|
.card-icon {
|
|
width: 20px;
|
|
height: 20px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: #d4a574;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.card-content h2 {
|
|
font-size: 0.82rem;
|
|
font-weight: 600;
|
|
color: #2c2c2c;
|
|
margin: 0;
|
|
}
|
|
|
|
.card-content p {
|
|
display: none;
|
|
}
|
|
|
|
.card-arrow {
|
|
display: none;
|
|
}
|
|
|
|
.outlet-wrapper {
|
|
flex: 1;
|
|
overflow: hidden;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|