203 lines
4.8 KiB
SCSS
203 lines
4.8 KiB
SCSS
// List groups
|
|
// *******************************************************************************
|
|
|
|
// List Group Mixin
|
|
@each $color, $value in $theme-colors {
|
|
@if $color != primary and $color != light {
|
|
@include template-list-group-item-variant('.list-group-item-#{$color}', $value);
|
|
@include template-list-group-timeline-variant('.list-group-timeline-#{$color}', $value);
|
|
}
|
|
}
|
|
.list-group {
|
|
.list-group-item {
|
|
line-height: 1.375rem;
|
|
padding-bottom: calc($list-group-item-padding-y - 1px);
|
|
}
|
|
&:not([class*='list-group-flush']) .list-group-item:first-of-type {
|
|
padding-top: calc($list-group-item-padding-y - 1px);
|
|
}
|
|
&[class*='list-group-flush'] .list-group-item:last-of-type {
|
|
padding-bottom: $list-group-item-padding-y;
|
|
}
|
|
&[class*='list-group-horizontal-md'] .list-group-item {
|
|
@include media-breakpoint-up(md) {
|
|
padding-top: calc($list-group-item-padding-y - 1px);
|
|
}
|
|
}
|
|
}
|
|
|
|
.list-group {
|
|
// Timeline CSS
|
|
&.list-group-timeline {
|
|
position: relative;
|
|
&:before {
|
|
background-color: $border-color;
|
|
position: absolute;
|
|
content: '';
|
|
width: 1px;
|
|
height: 100%;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0.2rem;
|
|
}
|
|
.list-group-item {
|
|
border: none;
|
|
padding-left: 1.25rem;
|
|
&:before {
|
|
position: absolute;
|
|
display: block;
|
|
content: '';
|
|
width: 7px;
|
|
height: 7px;
|
|
left: 0;
|
|
top: 50%;
|
|
margin-top: -3.5px;
|
|
border-radius: 100%;
|
|
}
|
|
}
|
|
}
|
|
|
|
.list-group-item.active {
|
|
h1,
|
|
.h1,
|
|
h2,
|
|
.h2,
|
|
h3,
|
|
.h3,
|
|
h4,
|
|
.h4,
|
|
h5,
|
|
.h5,
|
|
h6,
|
|
.h6 {
|
|
color: $primary;
|
|
}
|
|
}
|
|
}
|
|
|
|
// RTL
|
|
// *******************************************************************************
|
|
|
|
@include rtl-only {
|
|
.list-group {
|
|
padding-right: 0;
|
|
|
|
// Timeline RTL List group
|
|
&.list-group-timeline {
|
|
&:before {
|
|
left: auto;
|
|
right: 0.2rem;
|
|
}
|
|
.list-group-item {
|
|
padding-right: 1.25rem;
|
|
&:before {
|
|
left: auto;
|
|
right: 1px;
|
|
}
|
|
}
|
|
}
|
|
// List group horizontal RTL style
|
|
|
|
&.list-group-horizontal {
|
|
.list-group-item {
|
|
&:first-child {
|
|
border-radius: 0.25rem;
|
|
border-top-left-radius: 0;
|
|
border-bottom-left-radius: 0;
|
|
}
|
|
&:last-child {
|
|
border-radius: 0.25rem;
|
|
border-top-right-radius: 0;
|
|
border-bottom-right-radius: 0;
|
|
border-left-width: 1px;
|
|
}
|
|
}
|
|
}
|
|
@include media-breakpoint-up(sm) {
|
|
&.list-group-horizontal-sm {
|
|
.list-group-item {
|
|
&:first-child {
|
|
border-radius: 0.25rem;
|
|
border-top-left-radius: 0;
|
|
border-bottom-left-radius: 0;
|
|
}
|
|
&:last-child {
|
|
border-radius: 0.25rem;
|
|
border-top-right-radius: 0;
|
|
border-bottom-right-radius: 0;
|
|
border-left-width: 1px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@include media-breakpoint-up(md) {
|
|
&.list-group-horizontal-md {
|
|
.list-group-item {
|
|
&:first-child {
|
|
border-radius: 0.25rem;
|
|
border-top-left-radius: 0;
|
|
border-bottom-left-radius: 0;
|
|
}
|
|
&:last-child {
|
|
border-radius: 0.25rem;
|
|
border-top-right-radius: 0;
|
|
border-bottom-right-radius: 0;
|
|
border-left-width: 1px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@include media-breakpoint-up(lg) {
|
|
&.list-group-horizontal-lg {
|
|
.list-group-item {
|
|
&:first-child {
|
|
border-radius: 0.25rem;
|
|
border-top-left-radius: 0;
|
|
border-bottom-left-radius: 0;
|
|
}
|
|
&:last-child {
|
|
border-radius: 0.25rem;
|
|
border-top-right-radius: 0;
|
|
border-bottom-right-radius: 0;
|
|
border-left-width: 1px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@include media-breakpoint-up(xl) {
|
|
&.list-group-horizontal-xl {
|
|
.list-group-item {
|
|
&:first-child {
|
|
border-radius: 0.25rem;
|
|
border-top-left-radius: 0;
|
|
border-bottom-left-radius: 0;
|
|
}
|
|
&:last-child {
|
|
border-radius: 0.25rem;
|
|
border-top-right-radius: 0;
|
|
border-bottom-right-radius: 0;
|
|
border-left-width: 1px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@include media-breakpoint-up(xxl) {
|
|
&.list-group-horizontal-xxl {
|
|
.list-group-item {
|
|
&:first-child {
|
|
border-radius: 0.25rem;
|
|
border-top-left-radius: 0;
|
|
border-bottom-left-radius: 0;
|
|
}
|
|
&:last-child {
|
|
border-radius: 0.25rem;
|
|
border-top-right-radius: 0;
|
|
border-bottom-right-radius: 0;
|
|
border-left-width: 1px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|