Template:CMF Messagebox

From cluster wiki
Revision as of 14:55, 17 December 2022 by Eric (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search


Displays a standardised message box. Base of messageboxes, used by many other templates.

Usage

{{Messagebox|message|icon|colour}}

  • message: the message to display
  • icon: (Optional, default "i") symbol to the left, a letter (written in white) or an image (format [[File]])
  • colour: (Optional, default #025D00) box HTML colour, can be one of:
    • HTML colour name - red, darkgrey, etc.
    • HTML colour format - #RGB or #RRGGBB
    • rgb format - rgb(255, 0, 0)
    • rgba format - rgba(255, 0, 0, 0.5)
    • hsl format - hsl(120, 100%, 50%)
    • hsla format - hsla(120, 60%, 70%, 0.3)
Examples
Code Result
{{CMF Messagebox}}
i


{{CMF Messagebox|Hello there!}}
i
Hello there!


{{CMF Messagebox|Hello there!|✔}}
Hello there!


{{CMF Messagebox|Hello there!|✔|orange}}
Hello there!


{{CMF Messagebox|Hello there!|✔|#CDF}}
Hello there!


{{CMF Messagebox|Yep|Unreadable!|#EEE}}
Unreadable!
Yep


Source

<div class="biki-messagebox" style="background-color: {{{3|#025D00}}}><!--
--><div>{{{2|i}}}</div><!--
--><div>{{{1|-Text not defined-}}}</div><!--
--></div>