Files
sifatbaho-php/resources/scss/components/_list-group.scss
2026-04-05 05:31:24 +05:00

36 lines
614 B
SCSS
Executable File
Vendored

//
// _list-group.scss
//
@each $color,
$value in $theme-colors {
.list-group-fill-#{$color} {
.list-group-item {
&.active {
background-color: $value !important;
border-color: $value;
}
}
}
}
.list-group-fill-light {
color: $dark !important;
}
.list-group-item {
margin-bottom: 0px;
.list-text {
color: $text-muted;
}
&.active {
box-shadow: $element-shadow;
.list-title {
color: $white;
}
.list-text {
color: rgba($white, 0.50);
}
}
}