bootstrap/less/alerts.less

80 lines
1.4 KiB
Plaintext
Raw Normal View History

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