Fix customized hover/focus styles for list group items

This commit is contained in:
Andreas Nedbal 2020-05-03 20:39:45 +02:00
parent 1eddb0ad36
commit ea638305cc
1 changed files with 8 additions and 1 deletions

View File

@ -1,8 +1,15 @@
.list-group-item {
background-color: transparent;
&.active {
&.active,
&.active:hover {
background-color: var(--primary);
border-color: var(--primary);
}
}
.list-group-item-action {
&:hover, &:focus {
background-color: var(--raised-accent);
}
}