twbs--bootstrap/scss/_alert.scss

57 lines
1.2 KiB
SCSS
Raw Normal View History

2015-04-18 18:15:40 +00:00
//
2012-06-29 04:46:45 +00:00
// Base styles
2015-04-18 18:15:40 +00:00
//
.alert {
padding: $alert-padding-y $alert-padding-x;
margin-bottom: $spacer-y;
border: $alert-border-width solid transparent;
2014-12-02 22:02:35 +00:00
@include border-radius($alert-border-radius);
}
2014-12-30 00:03:22 +00:00
// Headings for larger alerts
.alert-heading {
// Specified to prevent conflicts of changing $headings-color
color: inherit;
}
// Provide class for links that match alerts
.alert-link {
font-weight: $alert-link-font-weight;
}
2015-04-18 18:15:40 +00:00
2014-06-17 21:35:35 +00:00
// Dismissible alerts
//
// Expand the right padding and account for the close button's positioning.
2014-06-17 21:35:35 +00:00
.alert-dismissible {
padding-right: ($alert-padding-x * 2);
// Adjust close link position
.close {
position: relative;
top: -.125rem;
right: -$alert-padding-x;
color: inherit;
}
}
2015-04-18 18:15:40 +00:00
// Alternate styles
//
// Generate contextual modifier classes for colorizing the alert.
.alert-success {
2014-12-02 22:02:35 +00:00
@include alert-variant($alert-success-bg, $alert-success-border, $alert-success-text);
}
.alert-info {
2014-12-02 22:02:35 +00:00
@include alert-variant($alert-info-bg, $alert-info-border, $alert-info-text);
}
.alert-warning {
2014-12-02 22:02:35 +00:00
@include alert-variant($alert-warning-bg, $alert-warning-border, $alert-warning-text);
}
.alert-danger {
2015-09-20 22:07:48 +00:00
@include alert-variant($alert-danger-bg, $alert-danger-border, $alert-danger-text);
}