✏️ Correct color when clicking on list

This commit is contained in:
SebClem 2021-02-05 20:26:08 +01:00
parent 17e712427d
commit 59fc4fd4a9
3 changed files with 5 additions and 3 deletions

View File

@ -4160,8 +4160,8 @@ textarea.form-control-lg {
background-color: #343a40; background-color: #343a40;
} }
.list-group-item-action:active { .list-group-item-action:active {
color: #212529; color: #b58e51;
background-color: #e9ecef; background-color: #222222;
} }
.list-group-item { .list-group-item {

File diff suppressed because one or more lines are too long

View File

@ -27,6 +27,8 @@ $list-group-action-color: $accent;
$list-group-bg: $secondary; $list-group-bg: $secondary;
$list-group-hover-bg: $secondary; $list-group-hover-bg: $secondary;
$list-group-action-hover-color: #adb5bd; $list-group-action-hover-color: #adb5bd;
$list-group-action-active-bg: $body-bg;
$list-group-action-active-color: $accent;
$alert-bg-scale: 0%; $alert-bg-scale: 0%;
$alert-border-scale: -10%; $alert-border-scale: -10%;