12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- .alert {
- position: relative;
- padding: $alert-padding-y $alert-padding-x;
- margin-bottom: $alert-margin-bottom;
- border: $alert-border-width solid transparent;
- @include border-radius($alert-border-radius);
- }
- .alert-heading {
-
- color: inherit;
- }
- .alert-link {
- font-weight: $alert-link-font-weight;
- }
- .alert-dismissible {
- padding-right: $close-font-size + $alert-padding-x * 2;
-
- .close {
- position: absolute;
- top: 0;
- right: 0;
- z-index: 2;
- padding: $alert-padding-y $alert-padding-x;
- color: inherit;
- }
- }
- @each $color, $value in $theme-colors {
- .alert-#{$color} {
- @include alert-variant(theme-color-level($color, $alert-bg-level), theme-color-level($color, $alert-border-level), theme-color-level($color, $alert-color-level));
- }
- }
|