From: Ian Weller Date: Mon, 3 Apr 2017 14:56:06 +0000 (-0400) Subject: I fixed the active class problem for the dropdown X-Git-Tag: v1.2.22^2~17 X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/?a=commitdiff_plain;h=11d1a6f5c6b8efc9e0adaa9c489a7d88377a6ca9;p=WP-Themes%2Fmountpleasantwow.git I fixed the active class problem for the dropdown I added a style to the active dropdown li to have a transparent background. It seems to be helping. --- diff --git a/css/app.css b/css/app.css index 063ca24..7672bd3 100644 --- a/css/app.css +++ b/css/app.css @@ -6629,6 +6629,8 @@ ul#sec-nav { .top-bar-section ul li:last-child:not(.has-form) .dropdown li a { min-height: 0; width: 100%; } + .top-bar-section ul li:last-child:not(.has-form) .dropdown li.active:not(.has-form) a:not(.button) { + background: transparent; } .top-bar-section ul li .dropdown { z-index: 1; position: relative; diff --git a/scss/_topbar.scss b/scss/_topbar.scss index 1be9929..c76ee01 100644 --- a/scss/_topbar.scss +++ b/scss/_topbar.scss @@ -101,6 +101,9 @@ min-height: 0; width: 100%; } + &.active:not(.has-form) a:not(.button) { + background: transparent; + } } } }