2012-06-29 00:46:45 -04:00
|
|
|
//
|
|
|
|
// Alerts
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
// Base styles
|
|
|
|
// -------------------------
|
2012-01-05 13:01:42 -05:00
|
|
|
|
2012-01-14 19:18:15 -05:00
|
|
|
.alert {
|
2013-08-12 04:20:22 -04:00
|
|
|
padding: @alert-padding;
|
2013-05-09 20:20:46 -04:00
|
|
|
margin-bottom: @line-height-computed;
|
2013-08-18 22:50:53 -04:00
|
|
|
border: 1px solid transparent;
|
2013-04-20 18:47:07 -04:00
|
|
|
border-radius: @alert-border-radius;
|
2013-03-15 02:01:23 -04:00
|
|
|
|
|
|
|
// Headings for larger alerts
|
|
|
|
h4 {
|
|
|
|
margin-top: 0;
|
2013-09-21 08:19:11 -04:00
|
|
|
// Specified for the h4 to prevent conflicts of changing @headings-color
|
2013-03-15 02:01:23 -04:00
|
|
|
color: inherit;
|
|
|
|
}
|
2015-01-19 15:26:01 -05:00
|
|
|
|
2013-05-16 23:53:59 -04:00
|
|
|
// Provide class for links that match alerts
|
|
|
|
.alert-link {
|
2013-07-28 08:32:08 -04:00
|
|
|
font-weight: @alert-link-font-weight;
|
2013-03-16 18:31:03 -04:00
|
|
|
}
|
2012-01-05 13:01:42 -05:00
|
|
|
|
2013-08-02 12:32:58 -04:00
|
|
|
// Improve alignment and spacing of inner content
|
|
|
|
> p,
|
|
|
|
> ul {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2015-01-19 15:26:01 -05:00
|
|
|
|
2013-08-02 12:32:58 -04:00
|
|
|
> p + p {
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
2012-01-14 19:18:15 -05:00
|
|
|
}
|
2012-01-05 13:01:42 -05: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-dismissable, // The misspelled .alert-dismissable was deprecated in 3.2.0.
|
|
|
|
.alert-dismissible {
|
2014-04-26 02:30:50 -04:00
|
|
|
padding-right: (@alert-padding + 20);
|
2013-08-12 04:20:22 -04:00
|
|
|
|
|
|
|
// Adjust close link position
|
|
|
|
.close {
|
|
|
|
position: relative;
|
|
|
|
top: -2px;
|
|
|
|
right: -21px;
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-14 19:18:15 -05:00
|
|
|
// Alternate styles
|
2013-08-12 04:20:22 -04:00
|
|
|
//
|
|
|
|
// Generate contextual modifier classes for colorizing the alert.
|
2012-01-05 13:01:42 -05:00
|
|
|
|
2012-01-15 14:30:24 -05:00
|
|
|
.alert-success {
|
2013-08-02 15:31:13 -04:00
|
|
|
.alert-variant(@alert-success-bg; @alert-success-border; @alert-success-text);
|
2012-01-14 19:18:15 -05:00
|
|
|
}
|
2015-01-16 04:06:35 -05:00
|
|
|
|
2012-01-15 14:30:24 -05:00
|
|
|
.alert-info {
|
2013-08-02 15:31:13 -04:00
|
|
|
.alert-variant(@alert-info-bg; @alert-info-border; @alert-info-text);
|
2012-01-14 19:18:15 -05:00
|
|
|
}
|
2015-01-16 04:06:35 -05:00
|
|
|
|
2013-08-18 22:50:53 -04:00
|
|
|
.alert-warning {
|
|
|
|
.alert-variant(@alert-warning-bg; @alert-warning-border; @alert-warning-text);
|
|
|
|
}
|
2015-01-16 04:06:35 -05:00
|
|
|
|
2013-08-18 22:50:53 -04:00
|
|
|
.alert-danger {
|
|
|
|
.alert-variant(@alert-danger-bg; @alert-danger-border; @alert-danger-text);
|
|
|
|
}
|