diff options
| author | FeRD (Frank Dana) <ferdnyc@gmail.com> | 2024-08-02 21:20:29 -0400 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2025-04-03 00:19:37 +0300 |
| commit | 95d7fac30a9955fd1f846a650f2bfe0db4b261f8 (patch) | |
| tree | 06e7fafed7c21a894af5afdbe4cedffe01e42d0e /docs/refman | |
| parent | 604f8c0d3a2f376f59a719097aeb49ec208fde1c (diff) | |
| download | meson-95d7fac30a9955fd1f846a650f2bfe0db4b261f8.tar.gz | |
Docs: Cleaner admonishment styling
Diffstat (limited to 'docs/refman')
| -rw-r--r-- | docs/refman/templates/notes.mustache | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/docs/refman/templates/notes.mustache b/docs/refman/templates/notes.mustache index de550c53c..2172aafd5 100644 --- a/docs/refman/templates/notes.mustache +++ b/docs/refman/templates/notes.mustache @@ -1,14 +1,25 @@ {{#notes}} -<div class="alert alert-info"> - <strong>Note:</strong> +<aside class="note note-info"> +<div class="note-topbar note-topbar-info"> + <span class="glyphicon glyphicon-info-sign"></span> + <span class="note-title">Note:</span> +</div> +<div class="note-content"> {{&.}} </div> +</aside> {{/notes}} + {{#warnings}} -<div class="alert alert-warning"> - <strong>Warning:</strong> +<aside class="note note-warning"> +<div class="note-topbar note-topbar-warning"> + <span class="glyphicon glyphicon-warning-sign"></span> + <span class="note-title">Warning:</span> +</div> +<div class="note-content"> {{&.}} </div> +</aside> {{/warnings}} |
