feat: highlight rows on hover

This commit is contained in:
insects 2025-03-12 12:43:43 +01:00
parent e2c99cbc6a
commit 54d18f4968

View file

@ -62,6 +62,12 @@ main {
padding-left: 10px;
background-color: #3D9970;
color: white;
transition: .1s linear background-color;
}
#nm-list section:hover,
#nm-list section.missing_reqs:hover {
background-color: rgba(61, 153, 112, 0.9);
}
#nm-list section.missing_reqs {
@ -80,6 +86,10 @@ main {
color: #63f0fd;
}
#nm-list section.popped:hover {
background-color: rgba(181, 68, 58, 0.9);
}
#nm-list section div.button {
height: 100%;
}