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;
|
2013-01-16 18:16:04 -05:00
|
|
|
color: @state-warning-text;
|
2013-03-31 20:24:06 -04:00
|
|
|
background-color: @state-warning-bg;
|
2012-11-30 18:38:31 -05:00
|
|
|
border: 1px solid @state-warning-border;
|
2012-11-30 17:45:25 -05:00
|
|
|
border-radius: @border-radius-base;
|
2013-03-15 02:01:23 -04: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%);
|
|
|
|
}
|
2013-03-16 18:31:03 -04:00
|
|
|
// Inherit color for immediate links and bolden them some
|
|
|
|
> a,
|
|
|
|
> p > a {
|
|
|
|
font-weight: 500;
|
|
|
|
color: darken(@state-warning-text, 10%);
|
|
|
|
}
|
2012-01-05 13:01:42 -05:00
|
|
|
|
2013-04-09 13:43:37 -04:00
|
|
|
// Adjust close link position
|
|
|
|
.close {
|
|
|
|
position: relative;
|
|
|
|
top: -2px;
|
|
|
|
right: -21px;
|
|
|
|
color: inherit;
|
|
|
|
}
|
2012-01-14 19:18:15 -05:00
|
|
|
}
|
2012-01-05 13:01:42 -05: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 {
|
2013-03-31 20:24:06 -04:00
|
|
|
background-color: @state-success-bg;
|
2012-11-30 18:38:31 -05:00
|
|
|
border-color: @state-success-border;
|
|
|
|
color: @state-success-text;
|
2013-03-15 02:01:23 -04:00
|
|
|
hr {
|
|
|
|
border-top-color: darken(@state-success-border, 5%);
|
|
|
|
}
|
2013-03-16 18:31:03 -04:00
|
|
|
> a,
|
|
|
|
> p > a {
|
|
|
|
color: darken(@state-success-text, 10%);
|
|
|
|
}
|
2012-01-14 19:18:15 -05:00
|
|
|
}
|
2013-04-20 18:36:11 -04:00
|
|
|
.alert-danger {
|
2013-03-31 20:24:06 -04:00
|
|
|
background-color: @state-danger-bg;
|
2013-03-30 17:15:18 -04:00
|
|
|
border-color: @state-danger-border;
|
|
|
|
color: @state-danger-text;
|
2013-03-15 02:01:23 -04:00
|
|
|
hr {
|
2013-03-30 17:15:18 -04:00
|
|
|
border-top-color: darken(@state-danger-border, 5%);
|
2013-03-15 02:01:23 -04:00
|
|
|
}
|
2013-03-16 18:31:03 -04:00
|
|
|
> a,
|
|
|
|
> p > a {
|
2013-03-30 17:15:18 -04:00
|
|
|
color: darken(@state-danger-text, 10%);
|
2013-03-16 18:31:03 -04:00
|
|
|
}
|
2012-01-14 19:18:15 -05:00
|
|
|
}
|
2012-01-15 14:30:24 -05:00
|
|
|
.alert-info {
|
2013-03-31 20:24:06 -04:00
|
|
|
background-color: @state-info-bg;
|
2012-11-30 18:38:31 -05:00
|
|
|
border-color: @state-info-border;
|
|
|
|
color: @state-info-text;
|
2013-03-15 02:01:23 -04:00
|
|
|
hr {
|
|
|
|
border-top-color: darken(@state-info-border, 5%);
|
|
|
|
}
|
2013-03-16 18:31:03 -04:00
|
|
|
> a,
|
|
|
|
> p > a {
|
|
|
|
color: darken(@state-info-text, 10%);
|
|
|
|
}
|
2012-01-14 19:18:15 -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
|
|
|
}
|