@fosteeco
Posted
Hey Great submission. The mouse over issue has to do with your CSS hover selector.
changing these css lines : .rating-number:hover, .rating-number:active { color: #fff; background-color: hsl(216, 12%, 54%); }
To this: .rating-number:hover:not(.rating-selected) { color: #fff; background-color: hsl(216, 12%, 54%); /* background-color: blue; */ }
Is a solution I came up with. I created a pull request on your repo as well if you'd like to try it out yourself. Keep up the good work!
Marked as helpful
@ShanePinderDev
Posted
@fosteeco Thanks so much for this! I merged your pull request on the repo. I spent hours trying to figure it out with no luck :)! I will have to read up on the :not pseudo class.