2012-06-29 12:46:45 +08:00
|
|
|
//
|
|
|
|
// Alerts
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
// Base styles
|
|
|
|
// -------------------------
|
2012-01-06 02:01:42 +08:00
|
|
|
|
2012-01-15 08:18:15 +08:00
|
|
|
.alert {
|
2013-08-06 06:06:57 +08:00
|
|
|
padding: @alert-padding (@alert-padding + 20) @alert-padding @alert-padding;
|
2013-05-10 08:20:46 +08:00
|
|
|
margin-bottom: @line-height-computed;
|
2013-04-21 06:47:07 +08:00
|
|
|
color: @alert-text;
|
|
|
|
background-color: @alert-bg;
|
|
|
|
border: 1px solid @alert-border;
|
|
|
|
border-radius: @alert-border-radius;
|
2013-03-15 14:01:23 +08:00
|
|
|
|
|
|
|
// Headings for larger alerts
|
|
|
|
h4 {
|
|
|
|
margin-top: 0;
|
|
|
|
// Specified for the h4 to prevent conflicts of changing @headingsColor
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
// Match the hr to the border of the alert
|
|
|
|
hr {
|
2013-04-21 06:47:07 +08:00
|
|
|
border-top-color: darken(@alert-border, 5%);
|
2013-03-15 14:01:23 +08:00
|
|
|
}
|
2013-05-17 11:53:59 +08:00
|
|
|
// Provide class for links that match alerts
|
|
|
|
.alert-link {
|
2013-07-28 20:32:08 +08:00
|
|
|
font-weight: @alert-link-font-weight;
|
2013-04-21 06:47:07 +08:00
|
|
|
color: darken(@alert-text, 10%);
|
2013-03-17 06:31:03 +08:00
|
|
|
}
|
2012-01-06 02:01:42 +08:00
|
|
|
|
2013-04-10 01:43:37 +08:00
|
|
|
// Adjust close link position
|
|
|
|
.close {
|
|
|
|
position: relative;
|
|
|
|
top: -2px;
|
|
|
|
right: -21px;
|
|
|
|
color: inherit;
|
|
|
|
}
|
2013-08-03 00:32:58 +08:00
|
|
|
|
|
|
|
// Improve alignment and spacing of inner content
|
|
|
|
> p,
|
|
|
|
> ul {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
> p + p {
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
2012-01-15 08:18:15 +08:00
|
|
|
}
|
2012-01-06 02:01:42 +08:00
|
|
|
|
2012-01-15 08:18:15 +08:00
|
|
|
// Alternate styles
|
2012-06-29 12:46:45 +08:00
|
|
|
// -------------------------
|
2012-01-06 02:01:42 +08:00
|
|
|
|
2012-01-16 03:30:24 +08:00
|
|
|
.alert-success {
|
2013-08-03 03:31:13 +08:00
|
|
|
.alert-variant(@alert-success-bg; @alert-success-border; @alert-success-text);
|
2012-01-15 08:18:15 +08:00
|
|
|
}
|
2013-04-21 06:36:11 +08:00
|
|
|
.alert-danger {
|
2013-08-03 03:31:13 +08:00
|
|
|
.alert-variant(@alert-danger-bg; @alert-danger-border; @alert-danger-text);
|
2012-01-15 08:18:15 +08:00
|
|
|
}
|
2012-01-16 03:30:24 +08:00
|
|
|
.alert-info {
|
2013-08-03 03:31:13 +08:00
|
|
|
.alert-variant(@alert-info-bg; @alert-info-border; @alert-info-text);
|
2012-01-15 08:18:15 +08:00
|
|
|
}
|