Add hover effect on queue item. (#1053)

This commit is contained in:
Monochromish 2022-05-20 09:06:46 +10:00 committed by GitHub
parent c50c271838
commit fad3edb764
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 0 deletions

View file

@ -254,6 +254,9 @@
height: 32px;
flex: 0 0 auto;
}
.cd-queue-item:hover {
background: var(--selected);
}
.cd-queue-item.selected {
background: var(--selected);
}

View file

@ -306,6 +306,10 @@
flex: 0 0 auto;
}
&:hover {
background: var(--selected);
}
&.selected {
background: var(--selected);
}