This commit is contained in:
KONE SOREL 2026-04-13 18:38:44 +00:00
parent 6f98be6c42
commit 104addb888
2 changed files with 34 additions and 37 deletions

View File

@ -2036,7 +2036,40 @@ select[required] + .btn.dropdown-toggle:focus,
border-color: #dc3545 !important;
box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.15) !important;
}
/* Design System Neutral Pro - Navigation */
.nav-card-modern {
border-radius: 12px;
background-color: #ffffff;
}
.nav-card-modern:hover {
background-color: #f8f9fa;
transform: translateY(-3px);
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05) !important;
}
.nav-card-modern:hover .icon-box {
background-color: #212e53 !important; /* Couleur primaire */
color: #ffffff !important;
}
.nav-card-modern:hover .arrow-icon {
opacity: 1 !important;
transform: translateX(3px);
}
.transition-all {
transition: all 0.3s ease-in-out;
}
.icon-box {
transition: all 0.3s ease;
}
.arrow-icon {
transition: all 0.3s ease;
}
/* Style spécifique au menu ESI */
.menu-card-esi {
transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

View File

@ -48,40 +48,4 @@
</div>
<?php endforeach; ?>
</div>
</div>
<style>
/* Design System Neutral Pro - Navigation */
.nav-card-modern {
border-radius: 12px;
background-color: #ffffff;
}
.nav-card-modern:hover {
background-color: #f8f9fa;
transform: translateY(-3px);
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05) !important;
}
.nav-card-modern:hover .icon-box {
background-color: #212e53 !important; /* Couleur primaire */
color: #ffffff !important;
}
.nav-card-modern:hover .arrow-icon {
opacity: 1 !important;
transform: translateX(3px);
}
.transition-all {
transition: all 0.3s ease-in-out;
}
.icon-box {
transition: all 0.3s ease;
}
.arrow-icon {
transition: all 0.3s ease;
}
</style>
</div>