mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
466d36e541
- Replaces manual use of .bd-callout with {% callout [type] %} - Rearranged some callouts for proximity to others - Turned long lists of callouts--like those on tooltips, plugings, etc--into a list because holy shit that's overwhelming
36 lines
695 B
SCSS
36 lines
695 B
SCSS
//
|
|
// Callouts
|
|
//
|
|
|
|
.bd-callout {
|
|
padding: 1.25rem;
|
|
margin-top: 1.25rem;
|
|
margin-bottom: 1.25rem;
|
|
border: 1px solid #eee;
|
|
border-left-width: .25rem;
|
|
border-radius: .25rem;
|
|
}
|
|
.bd-callout h4 {
|
|
margin-top: 0;
|
|
margin-bottom: .25rem;
|
|
}
|
|
.bd-callout p:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
.bd-callout code {
|
|
border-radius: .25rem;
|
|
}
|
|
|
|
.bd-callout + .bd-callout {
|
|
margin-top: -.25rem;
|
|
}
|
|
|
|
// Variations
|
|
@mixin bs-callout-variant($color) {
|
|
border-left-color: $color;
|
|
|
|
h4 { color: $color; }
|
|
}
|
|
.bd-callout-info { @include bs-callout-variant($bd-info); }
|
|
.bd-callout-warning { @include bs-callout-variant($bd-warning); }
|
|
.bd-callout-danger { @include bs-callout-variant($bd-danger); }
|