// // Custom checkbox // .custom-checkbox { .custom-control-input ~ .custom-control-label { cursor: pointer; font-size: $font-size-sm; height: $custom-control-indicator-size; } .custom-control-input { &:checked { ~ .custom-control-label { &::before { border-color: $custom-control-indicator-checked-border-color; } &::after { background-image: $custom-checkbox-indicator-icon-checked; } } } &:disabled { ~ .custom-control-label { &::before { border-color: $custom-control-indicator-disabled-bg; } } &:checked { &::before { border-color: $custom-control-indicator-checked-disabled-bg; } } } } } // Color variations @each $color, $value in $theme-colors { .custom-checkbox-#{$color} { @include custom-checkbox-variant($value); } }