Css: Do not allow `:hover` to affect the `.active` list elements

This commit is contained in:
Sukhwinder Dhillon 2024-07-31 15:23:43 +02:00 committed by Johannes Meyer
parent 781b97fc41
commit 41a92e9d87
2 changed files with 9 additions and 9 deletions

View File

@ -248,15 +248,15 @@
-moz-transform: none; /* Firefox collapses border spacing due to the above */
}
tr[href].active {
background-color: @tr-active-color;
}
tr[href]:hover {
background-color: @tr-hover-color;
cursor: pointer;
}
tr[href].active {
background-color: @tr-active-color;
}
tr[href].state-outdated:not(:hover):not(.active) td:not(.state-col) {
opacity: 0.7;
}

View File

@ -217,15 +217,15 @@ a:hover > .icon-cancel {
}
}
tr[href].active {
background-color: @tr-active-color;
border-left-color: @icinga-blue;
}
tr[href]:hover {
background-color: @tr-hover-color;
cursor: pointer;
}
tr[href].active {
background-color: @tr-active-color;
border-left-color: @icinga-blue;
}
}
.name-value-table {