2015-04-18 11:15:40 -07:00
|
|
|
//
|
2012-06-28 21:46:45 -07:00
|
|
|
// Base styles
|
2015-04-18 11:15:40 -07:00
|
|
|
//
|
2012-01-05 10:01:42 -08:00
|
|
|
|
2012-01-14 16:18:15 -08:00
|
|
|
.alert {
|
2017-08-24 22:11:36 -03:00
|
|
|
position: relative;
|
2016-10-18 19:18:06 -07:00
|
|
|
padding: $alert-padding-y $alert-padding-x;
|
2016-11-28 08:21:09 +01:00
|
|
|
margin-bottom: $alert-margin-bottom;
|
2015-10-15 15:57:15 +01:00
|
|
|
border: $alert-border-width solid transparent;
|
2014-12-02 14:02:35 -08:00
|
|
|
@include border-radius($alert-border-radius);
|
2012-01-14 16:18:15 -08:00
|
|
|
}
|
2012-01-05 10:01:42 -08:00
|
|
|
|
2014-12-29 16: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-18 11:15:40 -07:00
|
|
|
|
2014-06-17 23:35:35 +02:00
|
|
|
// Dismissible alerts
|
2013-08-12 01:20:22 -07:00
|
|
|
//
|
|
|
|
// Expand the right padding and account for the close button's positioning.
|
|
|
|
|
2014-06-17 23:35:35 +02:00
|
|
|
.alert-dismissible {
|
2020-09-22 11:18:03 -07:00
|
|
|
padding-right: $alert-dismissible-padding-r;
|
2017-10-22 21:54:32 +02:00
|
|
|
|
2013-08-12 01:20:22 -07:00
|
|
|
// Adjust close link position
|
2020-09-01 15:16:50 -07:00
|
|
|
.btn-close {
|
2017-08-24 22:11:36 -03:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
2020-10-07 19:33:53 +05:30
|
|
|
z-index: $stretched-link-z-index + 1;
|
2020-09-01 15:16:50 -07:00
|
|
|
padding: $alert-padding-y * 1.25 $alert-padding-x;
|
2013-08-12 01:20:22 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-18 11:15:40 -07:00
|
|
|
|
2020-04-06 20:13:35 +02:00
|
|
|
// scss-docs-start alert-modifiers
|
2013-08-12 01:20:22 -07:00
|
|
|
// Generate contextual modifier classes for colorizing the alert.
|
2012-01-05 10:01:42 -08:00
|
|
|
|
2020-11-08 19:49:26 +01:00
|
|
|
@each $state, $value in $theme-colors {
|
2020-12-17 11:02:20 +06:00
|
|
|
$alert-background: shift-color($value, $alert-bg-scale);
|
|
|
|
$alert-border: shift-color($value, $alert-border-scale);
|
|
|
|
$alert-color: shift-color($value, $alert-color-scale);
|
|
|
|
@if (contrast-ratio($alert-background, $alert-color) < $min-contrast-ratio) {
|
|
|
|
$alert-color: mix($value, color-contrast($alert-background), abs($alert-color-scale));
|
2020-11-08 19:49:26 +01:00
|
|
|
}
|
|
|
|
.alert-#{$state} {
|
2020-12-17 11:02:20 +06:00
|
|
|
@include alert-variant($alert-background, $alert-border, $alert-color);
|
2017-06-25 18:22:51 -07:00
|
|
|
}
|
2013-08-18 19:50:53 -07:00
|
|
|
}
|
2020-04-06 20:13:35 +02:00
|
|
|
// scss-docs-end alert-modifiers
|