Bläddra i källkod

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
hendimarcos 6 år sedan
förälder
incheckning
ab9715fd6a
1 ändrade filer med 4 tillägg och 2 borttagningar
  1. 4 2
      build/scss/_navs.scss

+ 4 - 2
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")
+      }
     }
   }
 }