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
This commit is contained in:
hendimarcos
2019-01-31 15:00:32 -03:00
committed by Abdullah Almsaeed
parent 261c5c714e
commit ab9715fd6a

View File

@@ -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")
}
}
}
}