Fix customized hover/focus styles for list group items
This commit is contained in:
parent
1eddb0ad36
commit
ea638305cc
|
@ -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);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue