package.scss.mixins._alert.scss Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of boosted Show documentation
Show all versions of boosted Show documentation
Orange Boosted with Bootstrap is a Bootstrap based, Orange branded accessible and ergonomic components library.
The newest version!
@include deprecate("`alert-variant()`", "v5.3.0", "v6.0.0");
// scss-docs-start alert-variant-mixin
@mixin alert-variant($background, $border, $color, $background-image) { // Boosted mod
--#{$prefix}alert-color: #{$color};
--#{$prefix}alert-bg: #{$background};
--#{$prefix}alert-border: #{$border}; // Boosted mod
// Boosted mod: no --#{$prefix}alert-link-color
// Boosted mod
.alert-icon::before {
mask-image: $background-image;
}
// End mod
// Boosted mod: no $enable-gradients test
// Boosted mod: no .alert-link
}
// scss-docs-end alert-variant-mixin