AdminLTE/build/scss/_navs.scss
hendimarcos ab9715fd6a 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
2019-01-31 13:00:32 -05:00

16 lines
210 B
SCSS

/*
* Component: Nav
* --------------
*/
.nav-pills {
.nav-link {
color: $gray-600;
&:not(.active) {
&:not(.dropdown-toggle):hover {
color: theme-color("primary")
}
}
}
}