source: Application/ocrent/wwwroot/lib/bootstrap/scss/mixins/_alert.scss@ f5f7c24

Last change on this file since f5f7c24 was f5f7c24, checked in by 192011 <mk.snicker@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 393 bytes
Line 
1// scss-docs-start alert-variant-mixin
2@mixin alert-variant($background, $border, $color) {
3 --#{$prefix}alert-color: #{$color};
4 --#{$prefix}alert-bg: #{$background};
5 --#{$prefix}alert-border-color: #{$border};
6
7 @if $enable-gradients {
8 background-image: var(--#{$prefix}gradient);
9 }
10
11 .alert-link {
12 color: shade-color($color, 20%);
13 }
14}
15// scss-docs-end alert-variant-mixin
Note: See TracBrowser for help on using the repository browser.