diff --git a/Bootstrap_new/css/theme-modern.css b/Bootstrap_new/css/theme-modern.css index 51102f24..9895814e 100644 --- a/Bootstrap_new/css/theme-modern.css +++ b/Bootstrap_new/css/theme-modern.css @@ -25,11 +25,13 @@ body { } /* Modernisation du Scrollmenu de body_main */ +/* Style des pilules de navigation (Niveau 3) */ .scrollmenu { - overflow: auto; white-space: nowrap; - padding: 10px 0; - scrollbar-width: none; /* Firefox */ + overflow-x: auto; + -webkit-overflow-scrolling: touch; + gap: 10px; + border: 1px solid rgba(0,0,0,0.05); } .scrollmenu::-webkit-scrollbar { display: none; } /* Chrome */ .scrollmenu a { @@ -50,6 +52,27 @@ body { color: white; } +.nav-pill-link { + padding: 8px 20px; + border-radius: 50px; + text-decoration: none; + color: var(--primary); + font-size: 0.85rem; + font-weight: 600; + transition: all 0.3s ease; +} + +.nav-pill-link.active { + background: var(--accent); + color: white !important; + box-shadow: 0 4px 12px var(--accent-glow); +} + +.nav-pill-link:hover:not(.active) { + background: #f0f4f8; + color: var(--accent); +} + /* Barre de contexte latérale */ .sidenav { height: 100%; diff --git a/Vue/includes/head-meta.php b/Vue/includes/head-meta.php index 3321ad89..00c3beaa 100644 --- a/Vue/includes/head-meta.php +++ b/Vue/includes/head-meta.php @@ -13,4 +13,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/Vue/includes/main-navigation.php b/Vue/includes/main-navigation.php new file mode 100644 index 00000000..c30b7b60 --- /dev/null +++ b/Vue/includes/main-navigation.php @@ -0,0 +1,23 @@ + 0): + $current_url = $_SERVER['REQUEST_URI']; +?> + + + + + + \ No newline at end of file diff --git a/Vue/includes/sidebar.php b/Vue/includes/sidebar.php new file mode 100644 index 00000000..ad30926e --- /dev/null +++ b/Vue/includes/sidebar.php @@ -0,0 +1,46 @@ + \ No newline at end of file