From 8313e25f2e8d25502c2c6cec7ee317a6ab38a231 Mon Sep 17 00:00:00 2001 From: Ludovic CANDELLIER Date: Sun, 12 Feb 2023 00:11:25 +0100 Subject: [PATCH] fix megamenu on hover for yellow background --- build/css/site.css | 12 ++++++++---- .../Shop/layout/partials/megamenu_leafs.blade.php | 4 ++-- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/build/css/site.css b/build/css/site.css index e1f0729b..bd3c5a29 100644 --- a/build/css/site.css +++ b/build/css/site.css @@ -198,10 +198,6 @@ a.green-dark:hover { color: #335012!important; } -.shadow2 { - box-shadow: 0px 10px 21px #344f17; -} - div.megamenu ul.megamenu a, div#megamenu ul.megamenu span.separator { color: #517C39; @@ -217,10 +213,18 @@ div.megamenu ul.megamenu li.megamenu.level1 cursor: pointer; } +.dropdown.megamenu a:hover, .dropdown.megamenu a:active, .dropdown.megamenu div.w-100:hover { + background-color: #F2B90F; +} + .slick-prev:before, .slick-next:before { color: #335012!important; } +.shadow2 { + box-shadow: 0px 10px 21px #344f17; +} + .filters-width { width: 192px; } diff --git a/resources/views/Shop/layout/partials/megamenu_leafs.blade.php b/resources/views/Shop/layout/partials/megamenu_leafs.blade.php index 0713cdf8..139162d9 100644 --- a/resources/views/Shop/layout/partials/megamenu_leafs.blade.php +++ b/resources/views/Shop/layout/partials/megamenu_leafs.blade.php @@ -5,6 +5,6 @@
@foreach ($menu_children['children'] ?? [] as $leaf) - {{ $leaf['name'] }} -
+
{{ $leaf['name'] }}
+ @endforeach