twbs--bootstrap/scss/_alert.scss

49 lines
1.0 KiB
SCSS
Raw Normal View History

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
//
.alert {
padding: $alert-padding-y $alert-padding-x;
margin-bottom: $alert-margin-bottom;
border: $alert-border-width solid transparent;
2014-12-02 17:02:35 -05:00
@include border-radius($alert-border-radius);
}
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
//
// Expand the right padding and account for the close button's positioning.
2014-06-17 17:35:35 -04:00
.alert-dismissible {
// Adjust close link position
.close {
position: relative;
top: -$alert-padding-y;
right: -$alert-padding-x;
padding: $alert-padding-y $alert-padding-x;
color: inherit;
}
}
2015-04-18 14:15:40 -04:00
// Alternate styles
//
// Generate contextual modifier classes for colorizing the alert.
@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));
}
}