twbs--bootstrap/scss/_alert.scss

52 lines
1.2 KiB
SCSS
Raw Normal View History

2015-04-18 14:15:40 -04:00
//
2012-06-29 00:46:45 -04:00
// Base styles
2015-04-18 14:15:40 -04:00
//
.alert {
position: relative;
padding: $alert-padding-y $alert-padding-x;
margin-bottom: $alert-margin-bottom;
border: $alert-border-width solid transparent;
2014-12-02 17:02:35 -05:00
@include border-radius($alert-border-radius);
}
2014-12-29 19:03:22 -05:00
// Headings for larger alerts
.alert-heading {
// Specified to prevent conflicts of changing $headings-color
color: inherit;
}
// Provide class for links that match alerts
.alert-link {
font-weight: $alert-link-font-weight;
}
2015-04-18 14:15:40 -04:00
2014-06-17 17:35:35 -04:00
// Dismissible alerts
//
// Expand the right padding and account for the close button's positioning.
2014-06-17 17:35:35 -04:00
.alert-dismissible {
padding-right: $alert-dismissible-padding-r;
// Adjust close link position
.btn-close {
position: absolute;
top: 0;
right: 0;
z-index: $stretched-link-z-index + 1;
padding: $alert-padding-y * 1.25 $alert-padding-x;
}
}
2015-04-18 14:15:40 -04:00
// scss-docs-start alert-modifiers
// Generate contextual modifier classes for colorizing the alert.
@each $color, $value in $theme-colors {
.alert-#{$color} {
2020-10-13 03:58:06 -04:00
@include alert-variant(scale-color($value, $alert-bg-scale), scale-color($value, $alert-border-scale), scale-color($value, $alert-color-scale));
}
}
// scss-docs-end alert-modifiers