Messagebox – Template

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Fix newline issue e.g {{Feature|informative|\ntest\ntest\ntest\ntest}})
(Fix listed Messageboxes as well as source code)
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>{{{2|i}}}</div><!--
<div>
--><div>{{#if:{{Trim|{{{1|}}}}}|{{Trim|{{{1|}}}}}|-Text not defined-}}</div><!--
{{#if:{{Trim|{{{1|}}}}}|{{Trim|{{{1|}}}}}|-Text not defined-}}
--></div></includeonly><noinclude>Displays a standardised message box.
</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>.
Base of messageboxes, used by <span class="plainlinks">[{{SERVER}}/wiki?title=Special%3AWhatLinksHere&target=Template%3AMessagebox&namespace=10 many other templates]</span>.


Line 63: Line 61:
== Source ==
== Source ==
<syntaxhighlight lang="html">
<syntaxhighlight lang="html">
<div class="biki-messagebox" style="background-color: {{{3|#025D00}}}><div>{{{2|i}}}</div><div>
<div class="biki-messagebox" style="background-color:{{{3|#025D00}}}"><!--
{{{1|-Text not defined-}}}</div></div>
--><div>{{{2|i}}}</div><!--
--><div>{{#if:{{Trim|{{{1|}}}}}|{{Trim|{{{1|}}}}}|-Text not defined-}}</div><!--
--></div>
</syntaxhighlight>
</syntaxhighlight>


[[Category:Templates|{{uc:messagebox}}]]
[[Category:Templates|{{uc:messagebox}}]]
</noinclude>
</noinclude>

Revision as of 16:12, 5 June 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)
Examples
Code Result
{{Messagebox}}
i
-Text not defined-
{{Messagebox|Hello there!}}
i
Hello there!
{{Messagebox|Hello there!|✔}}
Hello there!
{{Messagebox|Hello there!|✔|orange}}
Hello there!
{{Messagebox|Hello there!|✔|#CDF}}
Hello there!
{{Messagebox|Yep|Unreadable!|#EEE}}
Unreadable!
Yep
{{Messagebox|Arma 3 logo|[[File:Arma 3_logo_black.png|300px|center]]|#888}}
Arma 3 logo black.png
Arma 3 logo
{{Messagebox|[[File:Arma 3_logo_black.png|300px|center]]|Arma 3 logo|#333}}
Arma 3 logo
Arma 3 logo black.png
{{Messagebox|{{ofp}}<br>{{arma1}}<br>{{arma2}}<br>{{arma3}}|A|#333}}
A
Operation Flashpoint
Armed Assault
Arma 2
Arma 3
{{Messagebox|{{arma3}}|a<br>b<br>c<br>d|#333}}
a
b
c
d
Arma 3
{{Messagebox|One line text|{{arma3}}|#FDA}}
Arma 3
One line text
{{Messagebox|{{Wiki|lorem}}|{{arma3}}|#FDA}}
Arma 3
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

Source

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