Warning, Success & Info Blocks

You can use the generic bbcode wrapper support, something like this:

[wrap=success]
**Success!** Your message has been sent successfully
[/wrap]

…which will become this HTML:

<div class="d-wrap" data-wrap="success" dir="ltr">
  <p><strong>Success!</strong> Your message has been sent successfully</p>
</div>

You can add CSS targeting .d-wrap[data-wrap="success"] to style it.

I use this:

@mixin admonition($color, $bgcolor, $bordercolor, $iconurl) {
    padding: 8px;
    padding-left: 4em;
    padding-right: 2em;
    color: $color;
    border-left: 5px solid $bordercolor;
    background-color: $bgcolor;
    background-image: url($iconurl);
    background-repeat: no-repeat;
    background-size: 2em;
    background-position: 1em 1.25em;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.2);
    margin-bottom: 1em;
}

.d-wrap[data-wrap="info"] {
    @include admonition(#084298, #cfe2ff, #b6d4fe, "/images/emoji/google/information_source.png");
}

.d-wrap[data-wrap="warning"] {
    @include admonition(#664d03, #fff3cd, #ffecb5, "/images/emoji/google/warning.png");
}

.d-wrap[data-wrap="danger"] {
    @include admonition(#842029, #f8d7da, #f5c2c7, "/images/emoji/google/stop_sign.png");
}

…which allows me to create things like this:

6 Likes