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
pull/1997/head
hendimarcos 2019-01-31 15:00:32 -03:00 committed by Abdullah Almsaeed
parent 261c5c714e
commit ab9715fd6a
1 changed files with 4 additions and 2 deletions

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