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
|
|
|
//
|
2012-01-05 13:01:42 -05:00
|
|
|
|
2012-01-14 19:18:15 -05:00
|
|
|
.alert {
|
2017-08-24 21:11:36 -04:00
|
|
|
position: relative;
|
2016-10-18 22:18:06 -04:00
|
|
|
padding: $alert-padding-y $alert-padding-x;
|
2016-11-28 02:21:09 -05:00
|
|
|
margin-bottom: $alert-margin-bottom;
|
2015-10-15 10:57:15 -04:00
|
|
|
border: $alert-border-width solid transparent;
|
2014-12-02 17:02:35 -05:00
|
|
|
@include border-radius($alert-border-radius);
|
2012-01-14 19:18:15 -05:00
|
|
|
}
|
2012-01-05 13:01:42 -05:00
|
|
|
|
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
|
2013-08-12 04:20:22 -04:00
|
|
|
//
|
|
|
|
// Expand the right padding and account for the close button's positioning.
|
|
|
|
|
2014-06-17 17:35:35 -04:00
|
|
|
.alert-dismissible {
|
2018-12-14 11:54:44 -05:00
|
|
|
padding-right: $close-font-size + $alert-padding-x * 2;
|
2017-10-22 15:54:32 -04:00
|
|
|
|
2013-08-12 04:20:22 -04:00
|
|
|
// Adjust close link position
|
|
|
|
.close {
|
2017-08-24 21:11:36 -04:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
2016-11-28 02:59:21 -05:00
|
|
|
padding: $alert-padding-y $alert-padding-x;
|
2013-08-12 04:20:22 -04:00
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-18 14:15:40 -04:00
|
|
|
|
2020-04-06 14:13:35 -04:00
|
|
|
// scss-docs-start alert-modifiers
|
2013-08-12 04:20:22 -04:00
|
|
|
// Generate contextual modifier classes for colorizing the alert.
|
2012-01-05 13:01:42 -05:00
|
|
|
|
2017-06-25 21:22:51 -04:00
|
|
|
@each $color, $value in $theme-colors {
|
|
|
|
.alert-#{$color} {
|
2019-07-25 03:41:13 -04:00
|
|
|
@include alert-variant(color-level($value, $alert-bg-level), color-level($value, $alert-border-level), color-level($value, $alert-color-level));
|
2017-06-25 21:22:51 -04:00
|
|
|
}
|
2013-08-18 22:50:53 -04:00
|
|
|
}
|
2020-04-06 14:13:35 -04:00
|
|
|
// scss-docs-end alert-modifiers
|