sifatbaho

This commit is contained in:
2026-04-05 05:31:24 +05:00
commit df3d57f503
2609 changed files with 369825 additions and 0 deletions

36
resources/scss/components/_list-group.scss vendored Executable file
View File

@@ -0,0 +1,36 @@
//
// _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);
}
}
}