CSS: Add styles for tr.active and tr:hover

refs #5543
This commit is contained in:
Eric Lippmann 2015-09-23 13:14:48 +02:00
parent ceacf9af71
commit d87c3b1804

View File

@ -51,3 +51,11 @@ p {
// Remove default margin // Remove default margin
margin: 0; margin: 0;
} }
tr.active {
background-color: @gray-lighter;
}
tr:hover {
background-color: @gray-lightest;
}