2012-06-28 21:46:45 -07:00
|
|
|
//
|
|
|
|
// Alerts
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
// Base styles
|
|
|
|
// -------------------------
|
2012-01-05 10:01:42 -08:00
|
|
|
|
2012-01-14 16:18:15 -08:00
|
|
|
.alert {
|
|
|
|
padding: 8px 35px 8px 14px;
|
2012-11-30 14:45:25 -08:00
|
|
|
margin-bottom: @line-height-base;
|
2012-01-05 10:01:42 -08:00
|
|
|
text-shadow: 0 1px 0 rgba(255,255,255,.5);
|
2012-11-30 15:38:31 -08:00
|
|
|
background-color: @state-warning-background;
|
|
|
|
border: 1px solid @state-warning-border;
|
2012-11-30 14:45:25 -08:00
|
|
|
border-radius: @border-radius-base;
|
2012-11-28 01:48:34 -08:00
|
|
|
}
|
|
|
|
.alert,
|
|
|
|
.alert h4 {
|
|
|
|
// Specified for the h4 to prevent conflicts of changing @headingsColor
|
2012-11-30 15:38:31 -08:00
|
|
|
color: @state-warning-text;
|
2012-01-14 16:18:15 -08:00
|
|
|
}
|
2012-08-13 10:05:19 -07:00
|
|
|
.alert h4 {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2012-01-05 10:01:42 -08:00
|
|
|
|
2012-01-14 16:18:15 -08:00
|
|
|
// Adjust close link position
|
2012-01-15 16:27:36 -08:00
|
|
|
.alert .close {
|
|
|
|
position: relative;
|
2012-01-28 18:46:41 -08:00
|
|
|
top: -2px;
|
2012-01-15 16:27:36 -08:00
|
|
|
right: -21px;
|
2012-11-30 14:45:25 -08:00
|
|
|
line-height: @line-height-base;
|
2012-01-14 16:18:15 -08:00
|
|
|
}
|
2012-01-05 10:01:42 -08:00
|
|
|
|
2012-06-28 21:46:45 -07:00
|
|
|
|
2012-01-14 16:18:15 -08:00
|
|
|
// Alternate styles
|
2012-06-28 21:46:45 -07:00
|
|
|
// -------------------------
|
2012-01-05 10:01:42 -08:00
|
|
|
|
2012-01-15 11:30:24 -08:00
|
|
|
.alert-success {
|
2012-11-30 15:38:31 -08:00
|
|
|
background-color: @state-success-background;
|
|
|
|
border-color: @state-success-border;
|
|
|
|
color: @state-success-text;
|
2012-01-14 16:18:15 -08:00
|
|
|
}
|
2012-01-15 11:30:24 -08:00
|
|
|
.alert-danger,
|
|
|
|
.alert-error {
|
2012-11-30 15:38:31 -08:00
|
|
|
background-color: @state-error-background;
|
|
|
|
border-color: @state-error-border;
|
|
|
|
color: @state-error-text;
|
2012-01-14 16:18:15 -08:00
|
|
|
}
|
2012-01-15 11:30:24 -08:00
|
|
|
.alert-info {
|
2012-11-30 15:38:31 -08:00
|
|
|
background-color: @state-info-background;
|
|
|
|
border-color: @state-info-border;
|
|
|
|
color: @state-info-text;
|
2012-01-14 16:18:15 -08:00
|
|
|
}
|
2012-01-05 10:01:42 -08:00
|
|
|
|
2012-06-28 21:46:45 -07:00
|
|
|
|
2012-01-14 16:18:15 -08:00
|
|
|
// Block alerts
|
2012-06-28 21:46:45 -07:00
|
|
|
// -------------------------
|
|
|
|
|
2012-01-15 11:30:24 -08:00
|
|
|
.alert-block {
|
2012-01-14 16:18:15 -08:00
|
|
|
padding-top: 14px;
|
|
|
|
padding-bottom: 14px;
|
|
|
|
}
|
2012-01-15 11:30:24 -08:00
|
|
|
.alert-block > p,
|
|
|
|
.alert-block > ul {
|
2012-01-14 16:18:15 -08:00
|
|
|
margin-bottom: 0;
|
2012-01-05 10:01:42 -08:00
|
|
|
}
|
2012-01-15 11:30:24 -08:00
|
|
|
.alert-block p + p {
|
2012-01-14 16:18:15 -08:00
|
|
|
margin-top: 5px;
|
2012-01-15 16:27:36 -08:00
|
|
|
}
|