Tweak the table hover background color

This makes the hover effect easier to distinguish from the even-odd
row background colors.
This commit is contained in:
Hugo Locurcio
2020-02-26 22:06:03 +01:00
parent afd26a5038
commit 1da342d6b9

View File

@@ -38,7 +38,7 @@ td {
}
tr:hover {
background-color: hsla(0, 0%, 50%, 25%);
background-color: hsla(210, 90%, 50%, 12.5%);
}
tr:nth-child(even) {
@@ -46,7 +46,7 @@ tr:nth-child(even) {
}
tr:nth-child(even):hover {
background-color: hsla(0, 0%, 50%, 35%);
background-color: hsla(210, 90%, 50%, 15%);
}
/* Align class names to the right for better readability and highlight them. */