1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00

Use .list-group-item-action for list group item variant (#25338)

This commit is contained in:
ysds 2018-01-18 08:36:57 +09:00 committed by XhmikosR
parent 4c96f58e31
commit b1a754863e

View file

@ -4,21 +4,18 @@
.list-group-item-#{$state} { .list-group-item-#{$state} {
color: $color; color: $color;
background-color: $background; background-color: $background;
}
a.list-group-item-#{$state}, &.list-group-item-action {
button.list-group-item-#{$state} { @include hover-focus {
color: $color; color: $color;
background-color: darken($background, 5%);
}
@include hover-focus { &.active {
color: $color; color: #fff;
background-color: darken($background, 5%); background-color: $color;
} border-color: $color;
}
&.active {
color: #fff;
background-color: $color;
border-color: $color;
} }
} }
} }