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