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

pull/2110/head
REJack 2019-05-24 09:55:43 +02:00
parent 13dd7ea384
commit 64aaa1d3cf
No known key found for this signature in database
GPG Key ID: 9F3976CC630CC888
1 changed files with 8 additions and 3 deletions

View File

@ -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;
}
}
}