Is there a way to prevent a button, div, or li from hovering if it already has an active status using CSS?
#list-of-tests .item-test:hover:not(.active) {
background-color: #4d5f75;
border: solid 1px #4d5f75;
}
#list-of-tests .item-test:active {
background-color: #93c3cd;
border: solid 1px #93c3cd;
}