CSS: Fix hover effect bug occuring in safari (#3760)

fixes #3582
This commit is contained in:
Florian Strohmaier 2019-04-24 12:12:00 +02:00 committed by Johannes Meyer
parent bd2cd0dda5
commit fa26e24a60
1 changed files with 4 additions and 0 deletions

View File

@ -235,6 +235,10 @@
border-spacing: 0 1px;
width: 100%;
tr[href] {
-webkit-transform: translate3d(0,0,0); /* Fixes Safari hover bug in history table rows */
}
tr[href].active {
background-color: @tr-active-color;
}