From 11d1a6f5c6b8efc9e0adaa9c489a7d88377a6ca9 Mon Sep 17 00:00:00 2001 From: Ian Weller Date: Mon, 3 Apr 2017 10:56:06 -0400 Subject: [PATCH] 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. --- css/app.css | 2 ++ scss/_topbar.scss | 3 +++ 2 files changed, 5 insertions(+) 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; + } } } } -- 2.17.1