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:
parent
45168caa37
commit
5a76895105
|
@ -207,8 +207,6 @@
|
|||
}
|
||||
|
||||
tr[href]:hover {
|
||||
.transition(background 0.2s ease);
|
||||
|
||||
background-color: @tr-hover-color;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
|
|
@ -168,8 +168,6 @@ a:hover > .icon-cancel {
|
|||
}
|
||||
|
||||
tr[href]:hover {
|
||||
.transition(background 0.2s ease);
|
||||
|
||||
background-color: @tr-hover-color;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue