2012-06-29 06:46:45 +02:00
|
|
|
//
|
|
|
|
// Alerts
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
// Base styles
|
|
|
|
// -------------------------
|
2012-01-05 19:01:42 +01:00
|
|
|
|
2012-01-15 01:18:15 +01:00
|
|
|
.alert {
|
|
|
|
padding: 8px 35px 8px 14px;
|
2012-11-30 23:45:25 +01:00
|
|
|
margin-bottom: @line-height-base;
|
2013-01-17 00:16:04 +01:00
|
|
|
color: @state-warning-text;
|
2012-12-01 00:38:31 +01:00
|
|
|
background-color: @state-warning-background;
|
|
|
|
border: 1px solid @state-warning-border;
|
2012-11-30 23:45:25 +01:00
|
|
|
border-radius: @border-radius-base;
|
2013-03-15 07:01:23 +01: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 {
|
|
|
|
border-top-color: darken(@state-warning-border, 5%);
|
|
|
|
}
|
2012-08-13 19:05:19 +02:00
|
|
|
}
|
2012-01-05 19:01:42 +01:00
|
|
|
|
2012-01-15 01:18:15 +01:00
|
|
|
// Adjust close link position
|
2013-03-15 07:01:23 +01:00
|
|
|
.close {
|
2012-01-16 01:27:36 +01:00
|
|
|
position: relative;
|
2012-01-29 03:46:41 +01:00
|
|
|
top: -2px;
|
2012-01-16 01:27:36 +01:00
|
|
|
right: -21px;
|
2012-11-30 23:45:25 +01:00
|
|
|
line-height: @line-height-base;
|
2013-01-17 00:16:04 +01:00
|
|
|
color: inherit;
|
2012-01-15 01:18:15 +01:00
|
|
|
}
|
2012-01-05 19:01:42 +01:00
|
|
|
|
2012-01-15 01:18:15 +01:00
|
|
|
// Alternate styles
|
2012-06-29 06:46:45 +02:00
|
|
|
// -------------------------
|
2012-01-05 19:01:42 +01:00
|
|
|
|
2012-01-15 20:30:24 +01:00
|
|
|
.alert-success {
|
2012-12-01 00:38:31 +01:00
|
|
|
background-color: @state-success-background;
|
|
|
|
border-color: @state-success-border;
|
|
|
|
color: @state-success-text;
|
2013-03-15 07:01:23 +01:00
|
|
|
hr {
|
|
|
|
border-top-color: darken(@state-success-border, 5%);
|
|
|
|
}
|
2012-01-15 01:18:15 +01:00
|
|
|
}
|
2012-01-15 20:30:24 +01:00
|
|
|
.alert-danger,
|
|
|
|
.alert-error {
|
2012-12-01 00:38:31 +01:00
|
|
|
background-color: @state-error-background;
|
|
|
|
border-color: @state-error-border;
|
|
|
|
color: @state-error-text;
|
2013-03-15 07:01:23 +01:00
|
|
|
hr {
|
|
|
|
border-top-color: darken(@state-error-border, 5%);
|
|
|
|
}
|
2012-01-15 01:18:15 +01:00
|
|
|
}
|
2012-01-15 20:30:24 +01:00
|
|
|
.alert-info {
|
2012-12-01 00:38:31 +01:00
|
|
|
background-color: @state-info-background;
|
|
|
|
border-color: @state-info-border;
|
|
|
|
color: @state-info-text;
|
2013-03-15 07:01:23 +01:00
|
|
|
hr {
|
|
|
|
border-top-color: darken(@state-info-border, 5%);
|
|
|
|
}
|
2012-01-15 01:18:15 +01:00
|
|
|
}
|
2012-06-29 06:46:45 +02:00
|
|
|
|
2012-01-15 01:18:15 +01:00
|
|
|
// Block alerts
|
2012-06-29 06:46:45 +02:00
|
|
|
// -------------------------
|
|
|
|
|
2012-01-15 20:30:24 +01:00
|
|
|
.alert-block {
|
2012-01-15 01:18:15 +01:00
|
|
|
padding-top: 14px;
|
|
|
|
padding-bottom: 14px;
|
|
|
|
}
|
2012-01-15 20:30:24 +01:00
|
|
|
.alert-block > p,
|
|
|
|
.alert-block > ul {
|
2012-01-15 01:18:15 +01:00
|
|
|
margin-bottom: 0;
|
2012-01-05 19:01:42 +01:00
|
|
|
}
|
2012-01-15 20:30:24 +01:00
|
|
|
.alert-block p + p {
|
2012-01-15 01:18:15 +01:00
|
|
|
margin-top: 5px;
|
2012-01-16 01:27:36 +01:00
|
|
|
}
|