Was testing the microsoft Edge browser and noticed that some menu links get a white background when hovered.
After isolating the issue, I found that it's related to visited links, and specifically this part of the css
If you'll look at the Console you'll see this warning
After isolating the issue, I found that it's related to visited links, and specifically this part of the css
HTML:
.sideNavLinks a:link:hover,
.sideNavLinks a:visited:hover
{
background-color: #176093;
color: #d7edfc;
text-decoration: none;
}
If you'll look at the Console you'll see this warning
HTML:
SEC7115: :visited and :link styles can only differ by color. Some styles were not applied to :visited.