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