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 {
|
2014-12-02 14:02:35 -08:00
|
|
|
padding: $alert-padding;
|
2015-04-29 12:00:11 -07:00
|
|
|
margin-bottom: $spacer-y;
|
2013-08-18 19:50:53 -07:00
|
|
|
border: 1px solid transparent;
|
2014-12-02 14:02:35 -08:00
|
|
|
@include border-radius($alert-border-radius);
|
2013-03-14 23:01:23 -07:00
|
|
|
|
2013-08-02 09:32:58 -07:00
|
|
|
// Improve alignment and spacing of inner content
|
|
|
|
> p,
|
|
|
|
> ul {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
> p + p {
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
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 {
|
|
|
|
margin-top: 0;
|
|
|
|
// 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 {
|
2014-12-02 14:02:35 -08:00
|
|
|
padding-right: ($alert-padding + 20);
|
2013-08-12 01:20:22 -07:00
|
|
|
|
|
|
|
// Adjust close link position
|
|
|
|
.close {
|
|
|
|
position: relative;
|
|
|
|
top: -2px;
|
|
|
|
right: -21px;
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-18 11:15:40 -07:00
|
|
|
|
2012-01-14 16:18:15 -08:00
|
|
|
// Alternate styles
|
2013-08-12 01:20:22 -07:00
|
|
|
//
|
|
|
|
// Generate contextual modifier classes for colorizing the alert.
|
2012-01-05 10:01:42 -08:00
|
|
|
|
2012-01-15 11:30:24 -08:00
|
|
|
.alert-success {
|
2014-12-02 14:02:35 -08:00
|
|
|
@include alert-variant($alert-success-bg, $alert-success-border, $alert-success-text);
|
2012-01-14 16:18:15 -08:00
|
|
|
}
|
2012-01-15 11:30:24 -08:00
|
|
|
.alert-info {
|
2014-12-02 14:02:35 -08:00
|
|
|
@include alert-variant($alert-info-bg, $alert-info-border, $alert-info-text);
|
2012-01-14 16:18:15 -08:00
|
|
|
}
|
2013-08-18 19:50:53 -07:00
|
|
|
.alert-warning {
|
2014-12-02 14:02:35 -08:00
|
|
|
@include alert-variant($alert-warning-bg, $alert-warning-border, $alert-warning-text);
|
2013-08-18 19:50:53 -07:00
|
|
|
}
|
|
|
|
.alert-danger {
|
2014-12-02 14:02:35 -08:00
|
|
|
@include alert-variant($alert-danger-bg, $alert-danger-border,$alert-danger-text);
|
2013-08-18 19:50:53 -07:00
|
|
|
}
|