From ab9715fd6aa4c93927a04d5b033dcfcb2e2fba79 Mon Sep 17 00:00:00 2001 From: hendimarcos Date: Thu, 31 Jan 2019 15:00:32 -0300 Subject: [PATCH] same text-color as background for nav-item:hover dropdown (#1939) * fix(scss): same text-color as background for nav-item:hover dropdown https://github.com/almasaeed2010/AdminLTE/issues/1893 * fix(scss): same text-color as background for nav-item:hover dropdown https://github.com/almasaeed2010/AdminLTE/issues/1893 --- build/scss/_navs.scss | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/build/scss/_navs.scss b/build/scss/_navs.scss index c00f03d92..e64263e37 100644 --- a/build/scss/_navs.scss +++ b/build/scss/_navs.scss @@ -6,8 +6,10 @@ .nav-link { color: $gray-600; - &:not(.active):hover { - color: theme-color("primary") + &:not(.active) { + &:not(.dropdown-toggle):hover { + color: theme-color("primary") + } } } }