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 {
|
2021-12-17 00:16:24 -05:00
|
|
|
// scss-docs-start alert-css-vars
|
Add additional root variables, rename `$variable-prefix` to `$prefix` (#35981)
* Add additional root variables, rename $variable-prefix to $prefix
- Adds new root CSS variables for border-radius, border-width, border-color, and border-style
- Adds new root CSS variables for heading-color, link-colors, code color, and highlight color
- Replaces most instances of Sass variables (for border-radius, border-color, border-style, and border-width) for CSS variables inside _variables.scss
- Updates $mark-padding to be an even pixel number
- Renames $variable-prefix to $prefix throughout
* Bundlewatch
2022-03-13 13:13:09 -04:00
|
|
|
--#{$prefix}alert-bg: transparent;
|
|
|
|
--#{$prefix}alert-padding-x: #{$alert-padding-x};
|
|
|
|
--#{$prefix}alert-padding-y: #{$alert-padding-y};
|
|
|
|
--#{$prefix}alert-margin-bottom: #{$alert-margin-bottom};
|
|
|
|
--#{$prefix}alert-color: inherit;
|
|
|
|
--#{$prefix}alert-border-color: transparent;
|
|
|
|
--#{$prefix}alert-border: #{$alert-border-width} solid var(--#{$prefix}alert-border-color);
|
|
|
|
--#{$prefix}alert-border-radius: #{$alert-border-radius};
|
2021-12-17 00:16:24 -05:00
|
|
|
// scss-docs-end alert-css-vars
|
|
|
|
|
2017-08-24 21:11:36 -04:00
|
|
|
position: relative;
|
Add additional root variables, rename `$variable-prefix` to `$prefix` (#35981)
* Add additional root variables, rename $variable-prefix to $prefix
- Adds new root CSS variables for border-radius, border-width, border-color, and border-style
- Adds new root CSS variables for heading-color, link-colors, code color, and highlight color
- Replaces most instances of Sass variables (for border-radius, border-color, border-style, and border-width) for CSS variables inside _variables.scss
- Updates $mark-padding to be an even pixel number
- Renames $variable-prefix to $prefix throughout
* Bundlewatch
2022-03-13 13:13:09 -04:00
|
|
|
padding: var(--#{$prefix}alert-padding-y) var(--#{$prefix}alert-padding-x);
|
|
|
|
margin-bottom: var(--#{$prefix}alert-margin-bottom);
|
|
|
|
color: var(--#{$prefix}alert-color);
|
|
|
|
background-color: var(--#{$prefix}alert-bg);
|
|
|
|
border: var(--#{$prefix}alert-border);
|
|
|
|
border-radius: var(--#{$prefix}alert-border-radius, 0); // stylelint-disable-line property-disallowed-list
|
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 {
|
2020-09-22 14:18:03 -04:00
|
|
|
padding-right: $alert-dismissible-padding-r;
|
2017-10-22 15:54:32 -04:00
|
|
|
|
2013-08-12 04:20:22 -04:00
|
|
|
// Adjust close link position
|
2020-09-01 18:16:50 -04:00
|
|
|
.btn-close {
|
2017-08-24 21:11:36 -04:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
2020-10-07 10:03:53 -04:00
|
|
|
z-index: $stretched-link-z-index + 1;
|
2020-09-01 18:16:50 -04:00
|
|
|
padding: $alert-padding-y * 1.25 $alert-padding-x;
|
2013-08-12 04:20:22 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2020-11-08 13:49:26 -05:00
|
|
|
@each $state, $value in $theme-colors {
|
2020-12-17 00:02:20 -05: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 00:16:24 -05:00
|
|
|
|
2020-12-17 00:02:20 -05: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 13:49:26 -05:00
|
|
|
}
|
|
|
|
.alert-#{$state} {
|
2020-12-17 00:02:20 -05:00
|
|
|
@include alert-variant($alert-background, $alert-border, $alert-color);
|
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
|