Template:Button: Difference between revisions
From A KoL Wiki
imported>Fig bucket m centertext |
imported>Ryo Sangnoir I know you can do this with post, but it seems to be a standard style everywhere |
||
Line 3: | Line 3: | ||
| {{{pre|}}} | | {{{pre|}}} | ||
| style="border: 2px black solid; font-family: Arial, Helvetica, sans-serif; {{#ifeq:{{{disabled|n}}}|y|color:#CCCCCC;|}} font-size: 10pt; font-weight: bold; background-color: #FFFFFF; padding-right: 8px; padding-left: 8px;{{#if:{{{width|}}}|width:{{{width}}};}}{{#ifeq:{{{centertext|n}}}|y|text-align:center;|}}" | {{{1}}} | | style="border: 2px black solid; font-family: Arial, Helvetica, sans-serif; {{#ifeq:{{{disabled|n}}}|y|color:#CCCCCC;|}} font-size: 10pt; font-weight: bold; background-color: #FFFFFF; padding-right: 8px; padding-left: 8px;{{#if:{{{width|}}}|width:{{{width}}};}}{{#ifeq:{{{centertext|n}}}|y|text-align:center;|}}" | {{{1}}} | ||
| {{{post|}}} | | {{{post|}}} <span style="color:blue;">'''{{{bluepost|}}}'''</span> | ||
|}</includeonly><noinclude> | |}</includeonly><noinclude> | ||
Line 42: | Line 42: | ||
*<code><nowiki>{{button|Go to the First Floor|disabled=y|post=Wait, maybe not}}</nowiki></code> yields: | *<code><nowiki>{{button|Go to the First Floor|disabled=y|post=Wait, maybe not}}</nowiki></code> yields: | ||
{{button|Go to the First Floor|disabled=y|post=Wait, maybe not}} | {{button|Go to the First Floor|disabled=y|post=Wait, maybe not}} | ||
*<code><nowiki>{{button|Go down the elevator shaft|bluepost=[Bad idea!]}}</nowiki></code> yields: | |||
{{button|Go down the elevator shaft|bluepost=[Bad idea!]}} | |||
[[Category:Standardization Templates|{{PAGENAME}}]]</noinclude> | [[Category:Standardization Templates|{{PAGENAME}}]]</noinclude> |
Revision as of 12:17, 4 August 2018
[edit]
{{Button}}
{| cellspacing="0" style="{{#ifeq:{{{center|y}}}|y|margin-left: auto; margin-right: auto; margin-bottom: 8px;|}}" id="{{{1}}}"
|- | {{{pre|}}} | style="border: 2px black solid; font-family: Arial, Helvetica, sans-serif; {{#ifeq:{{{disabled|n}}}|y|color:#CCCCCC;|}} font-size: 10pt; font-weight: bold; background-color: #FFFFFF; padding-right: 8px; padding-left: 8px;{{#if:{{{width|}}}|width:{{{width}}};}}{{#ifeq:{{{centertext|n}}}|y|text-align:center;|}}" | {{{1}}} | {{{post|}}} <span style="color:blue;">'''{{{bluepost|}}}'''</span>
|}Creates a button in the style typically seen in the game.
Usage
- To create a centered button:
- {{button|Text}}
- To create an un-centered button (with no left/right margins), use
- {{button|Text|center=n}}
- To create an button with each line of multi-line text centered, use
- {{button|Text|centertext=y}}
- To create a grayed out button:
- {{button|Text|disabled=y}}
- To create a button with text following:
- {{button|Text|post=(Following Text)}}
- To create a button with text preceding:
- {{button|Text|pre=(Preceding Text)}}
- Width may be specified with the
width
argument.
In either version, "Text" can be anything, including wiki links to other pages.
Examples
{{button|Log In}}
yields:
Log In | ' |
{{button|Buy Item}}
yields:
Buy Item | ' |
{{button|Sail Away! (3)}}
yields:
Sail Away! (3) | ' |
{{button|[[Loathing Legion hammer]]|center=n}}
yields
Loathing Legion hammer | ' |
{{button|Travel back to a Delicious Meal<br>(3 minutes)|textcenter=y}}
yields
Travel back to a Delicious Meal (3 minutes) |
' |
{{button|Sneak past it|disabled=y}}
yields:
Sneak past it | ' |
{{button|Go to the First Floor|disabled=y|post=Wait, maybe not}}
yields:
Go to the First Floor | Wait, maybe not ' |
{{button|Go down the elevator shaft|bluepost=[Bad idea!]}}
yields:
Go down the elevator shaft | [Bad idea!] |