Difference between revisions of "Template:Sign/Documentation"
m (Updating default width) (Tags: Mobile edit, Mobile web edit) |
WardPhoenix (talk | contribs) (added another example) (Tags: Mobile edit, Mobile web edit) |
||
Line 77: | Line 77: | ||
| outerbordercolor = black | | outerbordercolor = black | ||
| bordercolor = purple | | bordercolor = purple | ||
+ | | width = 50% | ||
+ | }} | ||
+ | |||
+ | ---- | ||
+ | ---- | ||
+ | |||
+ | <pre><nowiki> | ||
+ | {{Sign | ||
+ | | title = No link example | ||
+ | | link= | ||
+ | | text = The picture's linking is desactivated with <code>link=</code> | ||
+ | | bgcolor = MediumSeaGreen | ||
+ | | outerbordercolor = black | ||
+ | | bordercolor = red | ||
+ | | width = 50% | ||
+ | }} | ||
+ | </Nowiki></pre> | ||
+ | |||
+ | '''Results in:''' | ||
+ | |||
+ | {{Sign | ||
+ | | title = No link example | ||
+ | | link= | ||
+ | | text = The picture's linking is desactivated with <code>link=</code> | ||
+ | | bgcolor = MediumSeaGreen | ||
+ | | outerbordercolor = black | ||
+ | | bordercolor = red | ||
| width = 50% | | width = 50% | ||
}} | }} | ||
<!-- <noinclude>[[Category:Template:Documentation]]</noinclude> --> | <!-- <noinclude>[[Category:Template:Documentation]]</noinclude> --> |
Revision as of 00:23, 7 December 2019
Parameters:
- title - the title (default: no title)
- text - text (default: a mess of lorem ipsum)
- bgcolor - the background color (any valid CSS color string; default:
#fefefe
)
- bordercolor - Border color of the left border (any valid CSS color string; default:
#999
)
- outerbordercolor - color of the top, right and bottom borders (any valid CSS color string; default:
#AAB
)
- img - an image filename, no "Image:" or braces (default:
Important.png
)
- imgwidth - for non-standard images. It is advisable not to touch. (a valid width in
px
pixel units; default:64px
)
- image-align - Override image
vertical-align
parameter:top
,bottom
, etc. (default:middle
)
- link - the link of the picture become the specified target
- If the parameter is not called at all in the template, the link will be
File:<filename>
by default. - If the parameter is called but no target is provided (
link=
), the linking will be turn off.
- If the parameter is not called at all in the template, the link will be
- height - the height of the template in CSS units (
rem
,em
,px
, etc.) (default:auto
)
- width - the width of the template in CSS units (
rem
,em
,px
, etc.) (default:100%
)
- interval - the bottom margin for the sign template in CSS units (
rem
,em
,px
, etc.) (default:0.2rem
)
- style - any general CSS style parameters to be added to the table style. Takes valid CSS. End with a semicolon (
;
), DO NOT include quotation marks.
Examples
{{Sign | title = What a nice example! | text = [[User:Spode|Spode]] is clearly a genius | bgcolor = #abcdef | img = Imbox notice.png | outerbordercolor = red | bordercolor = green | width = 50% }}
Results in:
![]() |
Spode is clearly a genius |
{{Sign | title = Another example | link= Template:Sign/Documentation | text = The picture will link to the documentation of this template | bgcolor = silver | outerbordercolor = black | bordercolor = purple | width = 50% }}
Results in:
![]() |
The picture's link will lead to the documentation of this template. |
{{Sign | title = No link example | link= | text = The picture's linking is desactivated with <code>link=</code> | bgcolor = MediumSeaGreen | outerbordercolor = black | bordercolor = red | width = 50% }}
Results in:
![]() |
The picture's linking is desactivated with link= |