feat: highlight rows on hover
This commit is contained in:
parent
e2c99cbc6a
commit
54d18f4968
1 changed files with 10 additions and 0 deletions
|
@ -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%;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue