1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-02-23 18:40:03 +00:00

Drop h4 color customization in callouts (#31576)

This commit is contained in:
Gaël Poupard 2020-09-03 10:45:04 +02:00 committed by GitHub
parent 0e007e697e
commit 7134f6aa38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,12 +28,14 @@
} }
// Variations // Variations
@mixin bs-callout-variant($color) { .bd-callout-info {
border-left-color: $color; border-left-color: $bd-info;
h4 { color: $color; }
} }
.bd-callout-info { @include bs-callout-variant($bd-info); } .bd-callout-warning {
.bd-callout-warning { @include bs-callout-variant($bd-warning); } border-left-color: $bd-warning;
.bd-callout-danger { @include bs-callout-variant($bd-danger); } }
.bd-callout-danger {
border-left-color: $bd-danger;
}