shineout
Version:
Shein 前端组件库
32 lines (26 loc) • 547 B
text/less
// List Groups
.list-group-item-variant(@state; @background; @color) {
.list-group-item-@{state} {
background-color: @background;
color: @color;
a&,
button& {
color: @color;
.list-group-item-heading {
color: inherit;
}
&:hover,
&:focus {
background-color: darken(@background, 5%);
color: @color;
}
&.active,
&.active:hover,
&.active:focus {
border-color: @color;
background-color: @color;
color: #fff;
}
}
}
}