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