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 {
|
2021-12-17 06:16:24 +01:00
|
|
|
// scss-docs-start alert-css-vars
|
|
|
|
--#{$variable-prefix}alert-bg: transparent;
|
2022-03-01 21:52:00 +01:00
|
|
|
--#{$variable-prefix}alert-padding-x: #{$alert-padding-x};
|
|
|
|
--#{$variable-prefix}alert-padding-y: #{$alert-padding-y};
|
2021-12-17 06:16:24 +01:00
|
|
|
--#{$variable-prefix}alert-margin-bottom: #{$alert-margin-bottom};
|
2021-12-20 13:22:29 +01:00
|
|
|
--#{$variable-prefix}alert-color: inherit;
|
2021-12-17 06:16:24 +01:00
|
|
|
--#{$variable-prefix}alert-border-color: transparent;
|
|
|
|
--#{$variable-prefix}alert-border: #{$alert-border-width} solid var(--#{$variable-prefix}alert-border-color);
|
|
|
|
--#{$variable-prefix}alert-border-radius: #{$alert-border-radius};
|
|
|
|
// scss-docs-end alert-css-vars
|
|
|
|
|
2017-08-25 03:11:36 +02:00
|
|
|
position: relative;
|
2022-03-01 21:52:00 +01:00
|
|
|
padding: var(--#{$variable-prefix}alert-padding-y) var(--#{$variable-prefix}alert-padding-x);
|
2021-12-17 06:16:24 +01:00
|
|
|
margin-bottom: var(--#{$variable-prefix}alert-margin-bottom);
|
2021-12-20 13:22:29 +01:00
|
|
|
color: var(--#{$variable-prefix}alert-color);
|
2021-12-17 06:16:24 +01:00
|
|
|
background-color: var(--#{$variable-prefix}alert-bg);
|
|
|
|
border: var(--#{$variable-prefix}alert-border);
|
|
|
|
border-radius: var(--#{$variable-prefix}alert-border-radius, 0); // stylelint-disable-line property-disallowed-list
|
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 {
|
2020-09-22 20:18:03 +02:00
|
|
|
padding-right: $alert-dismissible-padding-r;
|
2017-10-22 21:54:32 +02:00
|
|
|
|
2013-08-12 10:20:22 +02:00
|
|
|
// Adjust close link position
|
2020-09-02 00:16:50 +02:00
|
|
|
.btn-close {
|
2017-08-25 03:11:36 +02:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
2020-10-07 16:03:53 +02:00
|
|
|
z-index: $stretched-link-z-index + 1;
|
2020-09-02 00:16:50 +02:00
|
|
|
padding: $alert-padding-y * 1.25 $alert-padding-x;
|
2013-08-12 10:20:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-18 20:15:40 +02:00
|
|
|
|
2020-04-06 20:13:35 +02:00
|
|
|
// scss-docs-start alert-modifiers
|
2013-08-12 10:20:22 +02:00
|
|
|
// Generate contextual modifier classes for colorizing the alert.
|
2012-01-05 19:01:42 +01:00
|
|
|
|
2020-11-08 19:49:26 +01:00
|
|
|
@each $state, $value in $theme-colors {
|
2020-12-17 06:02:20 +01: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);
|
2021-12-17 06:16:24 +01:00
|
|
|
|
2020-12-17 06:02:20 +01:00
|
|
|
@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 06:02:20 +01:00
|
|
|
@include alert-variant($alert-background, $alert-border, $alert-color);
|
2017-06-26 03:22:51 +02:00
|
|
|
}
|
2013-08-19 04:50:53 +02:00
|
|
|
}
|
2020-04-06 20:13:35 +02:00
|
|
|
// scss-docs-end alert-modifiers
|