More languages
More actions
(Created page with "<div class="button {{#switch: {{{color|}}} |red = button-red |blue = button-blue |green = button-green |yellow = button-yellow |#default = button-blue }}"> [[{{{link|test.com}}}|{{{label|hello}}}]] </div>") |
(reverting because this one worked) |
||
(31 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
<div class="button {{ | <templatestyles src="Button/style.css" /> | ||
[[{{{link}}}| | |||
<div class="tpl-button-{{{align|center}}}" style="margin-top:{{{top|0}}}px; margin-bottom:{{{bottom|0}}}px;"> | |||
<div class="tpl-button tpl-button-{{{color|red}}}" style="width:{{{width|20}}}%"> | |||
{{{text}}} | |||
</div> | </div> | ||
</div> | |||
]] | |||
<noinclude> | |||
<templatedata> | |||
{ | |||
"params": { | |||
"align": { | |||
"description": "Choose left, center or right. Always full-width on mobile. Defaults as center.", | |||
"type": "string", | |||
"default": "center" | |||
}, | |||
"text": { | |||
"description": "The text you want the button to display", | |||
"type": "string", | |||
"required": true | |||
}, | |||
"link": { | |||
"description": "The URL where you want the button to link", | |||
"type": "string", | |||
"required": true | |||
}, | |||
"color": { | |||
"description": "Choose between red, green, blue, or yellow (default: red)", | |||
"type": "string", | |||
"default": "red" | |||
}, | |||
"top": { | |||
"description": "Create empty space above the button (in pixels, integer only)", | |||
"type": "number", | |||
"default": "0" | |||
}, | |||
"bottom": { | |||
"description": "Create empty space below the button (in pixels, integer only)", | |||
"type": "number", | |||
"default": "0" | |||
}, | |||
"width": { | |||
"description": "Specify button width. Expressed in percentage points. Recommended: 20%.", | |||
"type": "number", | |||
"default": "20" | |||
} | |||
} | |||
} | |||
</templatedata> | |||
</noinclude> |
Latest revision as of 21:40, 13 October 2024
[[{{{link}}}|
]]
No description.
Parameter | Description | Type | Status | |
---|---|---|---|---|
align | align | Choose left, center or right. Always full-width on mobile. Defaults as center.
| String | optional |
text | text | The text you want the button to display | String | required |
link | link | The URL where you want the button to link | String | required |
color | color | Choose between red, green, blue, or yellow (default: red)
| String | optional |
top | top | Create empty space above the button (in pixels, integer only)
| Number | optional |
bottom | bottom | Create empty space below the button (in pixels, integer only)
| Number | optional |
width | width | Specify button width. Expressed in percentage points. Recommended: 20%.
| Number | optional |