twbs--bootstrap/less/alerts.less

97 lines
1.9 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;
color: @state-warning-text;
background-color: @state-warning-bg;
2012-11-30 23:38:31 +00:00
border: 1px solid @state-warning-border;
border-radius: @border-radius-base;
// 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 22:31:03 +00:00
// Inherit color for immediate links and bolden them some
> a,
> p > a {
font-weight: 500;
color: darken(@state-warning-text, 10%);
}
2013-04-09 17:43:37 +00:00
// Adjust close link position
.close {
position: relative;
top: -2px;
right: -21px;
color: inherit;
}
}
// Alternate styles
2012-06-29 04:46:45 +00:00
// -------------------------
.alert-success {
background-color: @state-success-bg;
2012-11-30 23:38:31 +00:00
border-color: @state-success-border;
color: @state-success-text;
hr {
border-top-color: darken(@state-success-border, 5%);
}
2013-03-16 22:31:03 +00:00
> a,
> p > a {
color: darken(@state-success-text, 10%);
}
}
.alert-danger {
background-color: @state-danger-bg;
border-color: @state-danger-border;
color: @state-danger-text;
hr {
border-top-color: darken(@state-danger-border, 5%);
}
2013-03-16 22:31:03 +00:00
> a,
> p > a {
color: darken(@state-danger-text, 10%);
2013-03-16 22:31:03 +00:00
}
}
.alert-info {
background-color: @state-info-bg;
2012-11-30 23:38:31 +00:00
border-color: @state-info-border;
color: @state-info-text;
hr {
border-top-color: darken(@state-info-border, 5%);
}
2013-03-16 22:31:03 +00:00
> a,
> p > a {
color: darken(@state-info-text, 10%);
}
}
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;
}