Messagebox – Template
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Rename .messagebox to avoid 1.35 update style interference) |
Lou Montana (talk | contribs) m (Fix newline issue e.g {{Feature|informative|\ntest\ntest\ntest\ntest}}) |
||
Line 1: | Line 1: | ||
<includeonly><div class="biki-messagebox" style="background-color:{{{3|#025D00}}}"> | <includeonly><div class="biki-messagebox" style="background-color:{{{3|#025D00}}}"> | ||
<div>{{{2|i}}}</div> | |||
<div> | |||
{{#if:{{Trim|{{{1|}}}}}|{{Trim|{{{1|}}}}}|-Text not defined-}} | |||
</div> | |||
</div></includeonly><noinclude>Displays a standardised message box. | |||
Base of messageboxes, used by <span class="plainlinks">[{{SERVER}}/wiki?title=Special%3AWhatLinksHere&target=Template%3AMessagebox&namespace=10 many other templates]</span>. | |||
== Usage == | == Usage == | ||
{{<nowiki/>Messagebox|'''''message'''''|'''''icon'''''|'''''colour'''''}} | {{<nowiki/>Messagebox|'''''message'''''|'''''icon'''''|'''''colour'''''}} | ||
* message: the message to display | * message: the message to display | ||
* icon: (Optional, default "i") symbol to the left, a letter (written in white) or an image (format <nowiki> | * icon: (Optional, default "i") symbol to the left, a letter (written in white) or an image (format {{hl|[[<nowiki/>File]]) | ||
* colour: (Optional, default #025D00) box HTML colour, can be one of: | * colour: (Optional, default #025D00) box HTML colour, can be one of: | ||
** HTML colour name - ''red'', ''darkgrey'', etc. | ** HTML colour name - ''red'', ''darkgrey'', etc. | ||
Line 60: | Line 63: | ||
== Source == | == Source == | ||
<syntaxhighlight lang="html"> | <syntaxhighlight lang="html"> | ||
<div class="biki-messagebox" style="background-color: {{{3|#025D00}}} | <div class="biki-messagebox" style="background-color: {{{3|#025D00}}}><div>{{{2|i}}}</div><div> | ||
{{{1|-Text not defined-}}}</div></div> | |||
</syntaxhighlight> | </syntaxhighlight> | ||
[[Category:Templates|{{uc:messagebox}}]] | [[Category:Templates|{{uc:messagebox}}]] | ||
</noinclude> | </noinclude> |
Revision as of 15:45, 24 May 2023
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 {{hl|[[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)
Code | Result |
---|---|
{{Messagebox}} | |
{{Messagebox|Hello there!}} | |
{{Messagebox|Hello there!|✔}} | |
{{Messagebox|Hello there!|✔|orange}} | |
{{Messagebox|Hello there!|✔|#CDF}} | |
{{Messagebox|Yep|Unreadable!|#EEE}} | |
{{Messagebox|Arma 3 logo|[[File:Arma 3_logo_black.png|300px|center]]|#888}} | |
{{Messagebox|[[File:Arma 3_logo_black.png|300px|center]]|Arma 3 logo|#333}} | |
{{Messagebox|{{ofp}}<br>{{arma1}}<br>{{arma2}}<br>{{arma3}}|A|#333}} | |
{{Messagebox|{{arma3}}|a<br>b<br>c<br>d|#333}} | |
{{Messagebox|One line text|{{arma3}}|#FDA}} | |
{{Messagebox|{{Wiki|lorem}}|{{arma3}}|#FDA}} |
Source
<div class="biki-messagebox" style="background-color: {{{3|#025D00}}}><div>{{{2|i}}}</div><div>
{{{1|-Text not defined-}}}</div></div>