CSS: Disable :hover transition on tr (WIP)

If any tr is hovered and auto-refresh kicks in, the tr will be hovered again which leads to "flickering".

We should find good a way to use transitions w/o flickering.

refs #11073
This commit is contained in:
Eric Lippmann 2016-02-25 13:04:26 +01:00
parent 45168caa37
commit 5a76895105
2 changed files with 0 additions and 4 deletions

View File

@ -207,8 +207,6 @@
}
tr[href]:hover {
.transition(background 0.2s ease);
background-color: @tr-hover-color;
cursor: pointer;
}

View File

@ -168,8 +168,6 @@ a:hover > .icon-cancel {
}
tr[href]:hover {
.transition(background 0.2s ease);
background-color: @tr-hover-color;
cursor: pointer;
}