2015-02-01 21:25:09 +00:00
|
|
|
// List Groups
|
|
|
|
|
|
|
|
.list-group-item-variant(@state; @background; @color) {
|
|
|
|
.list-group-item-@{state} {
|
|
|
|
color: @color;
|
|
|
|
background-color: @background;
|
|
|
|
|
2015-09-23 06:43:22 +00:00
|
|
|
a&,
|
|
|
|
button& {
|
2015-02-01 21:25:09 +00:00
|
|
|
color: @color;
|
|
|
|
|
|
|
|
.list-group-item-heading {
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
color: @color;
|
|
|
|
background-color: darken(@background, 5%);
|
|
|
|
}
|
|
|
|
&.active,
|
|
|
|
&.active:hover,
|
|
|
|
&.active:focus {
|
|
|
|
color: #fff;
|
|
|
|
background-color: @color;
|
|
|
|
border-color: @color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|