| 1234567891011121314151617181920212223242526 |
- //@each $color, $value in $theme-colors {
- // @include bg-variant('.bg-#{$color}', $value);
- //}
- each(@theme-colors, #(@value, @color) {
- #bg-variant(~".bg-@{color}", @value, true);
- });
- //@if $enable-gradients {
- // @each $color, $value in $theme-colors {
- // @include bg-gradient-variant(".bg-gradient-#{$color}", $value);
- // }
- //}
- & when (@enable-gradients) {
- each(@theme-colors, #(@value, @color) {
- #bg-gradient-variant(~".bg-gradient-@{color}", @value, true);
- });
- }
- .bg-white {
- background-color: @white !important;
- }
- .bg-transparent {
- background-color: transparent !important;
- }
|