Browse Source

fixed same text-color as background for nav-item:hover dropdown (Closes #1893)

REJack 5 years ago
parent
commit
64aaa1d3cf
1 changed files with 8 additions and 3 deletions
  1. 8 3
      build/scss/_navs.scss

+ 8 - 3
build/scss/_navs.scss

@@ -6,9 +6,14 @@
   .nav-link {
     color: $gray-600;
 
-    &:not(.active) {
-      &:not(.dropdown-toggle):hover {
-        color: theme-color("primary")
+    &:not(.active):hover {
+      color: theme-color("primary")
+    }
+  }
+  .nav-item {
+    &.dropdown.show {
+      .nav-link:hover {
+        color: $dropdown-link-active-color;
       }
     }
   }