Template:IconText: Difference between revisions
(Created page with "<includeonly>{{trim| {{#lvardef: icon | {{{1}}} }} {{#lvardef: link | {{{link|}}} }} {{#lvardef: text | {{{2}}} }} {{#lvardef: min-w | {{{w | {{{size | 40}}} }}} }} {{#lvardef: max-w | {{{w|}}} }} {{#lvardef: max-h | {{{h | {{{size | 40}}} }}} }} }}{{#if: {{{block|}}} | <span style="display: inline-flex; align-items: center; {{#if: {{{gap|}}} | gap: {{{gap}}}px; }}"> }}<span style=" display: inline-flex; align-items: center; justify-content: center; min-width: {{...") |
HiddenDragon (talk | contribs) (Fix nowrap) |
||
(12 intermediate revisions by 3 users not shown) | |||
Line 3: | Line 3: | ||
{{#lvardef: link | {{{link|}}} }} | {{#lvardef: link | {{{link|}}} }} | ||
{{#lvardef: text | {{{2}}} }} | {{#lvardef: text | {{{2}}} }} | ||
{{#lvardef: min-w | {{{w | {{{size | | {{#lvardef: min-w | {{#if: {{{w|}}} | {{{w}}} | {{#if: {{{size|}}} | {{{size}}} | 40 }} }} }} | ||
{{#lvardef: max-w | {{{w|}}} }} | {{#lvardef: max-w | {{{w|}}} }} | ||
{{#lvardef: max-h | {{{h | {{{size | | {{#lvardef: max-h | {{#if: {{{h|}}} | {{{h}}} | {{#if: {{{size|}}} | {{{size}}} | 40 }} }} }} | ||
}}{{#if: {{{block|}}} | }}{{#if: {{{block|}}} | ||
| <span style="display: inline-flex; align-items: center; {{#if: {{{gap|}}} | gap: {{{gap}}}px; }}"> | | <span class="bg3wiki-icontext-block" style="display: inline-flex; align-items: center; {{#if: {{{gap|}}} | gap: {{{gap}}}px; }}"> | ||
}}<span style=" | | {{#if:{{{nowrap|}}}|<span style="white-space: nowrap">}} | ||
}}<span class="bg3wiki-icontext-icon-wrapper" style=" | |||
display: inline-flex; | display: inline-flex; | ||
align-items: center; | align-items: center; | ||
Line 14: | Line 15: | ||
min-width: {{#lvar:min-w}}px; | min-width: {{#lvar:min-w}}px; | ||
height: {{#lvar:max-h}}px; | height: {{#lvar:max-h}}px; | ||
">{{icon | "><span class="bg3wiki-icontext-icon" style="vertical-align: middle;">{{icon | ||
| {{#lvar:icon}} | | {{#lvar:icon}} | ||
| link = {{#lvar:link}} | | link = {{#lvar:link}} | ||
Line 20: | Line 21: | ||
| w = {{#lvar:max-w}} | | w = {{#lvar:max-w}} | ||
| h = {{#lvar:max-h}} | | h = {{#lvar:max-h}} | ||
}}</span> <span>{{#if: {{#lvar:link}} | | class = {{{class|}}} | ||
}}</span></span> <span class="bg3wiki-icontext-text">{{#if: {{#lvar:link}} | |||
| [[{{#lvar:link}}|{{#lvar:text}}]] | | [[{{#lvar:link}}|{{#lvar:text}}]] | ||
| {{#lvar:text}} | | {{#lvar:text}} | ||
}}</span>{{#if: {{{block|}}} | }}</span>{{#if: {{{block|}}}{{{nowrap|}}} | ||
| </span> | | </span> | ||
}}</includeonly><noinclude> | }}</includeonly><noinclude> | ||
Line 30: | Line 32: | ||
Result: {{IconText | Flourish Icon.png | Flourish }} | Result: {{IconText | Flourish Icon.png | Flourish }} | ||
The | The icon and text can be made into a link: | ||
Usage: {{code|<nowiki>{{IconText | Flourish Icon.png | link = Flourish | Usage: {{code|<nowiki>{{IconText | Flourish Icon.png | Custom Text | link = Flourish }}</nowiki>}} | ||
Result: {{IconText | Flourish Icon.png | link = Flourish | Result: {{IconText | Flourish Icon.png | Custom Text | link = Flourish }} | ||
The default size is {{code|x40px}} meaning the icon is scaled until the '''height''' is 40 px. It's usually important to limit the height since the icons are used inline, and a very high inline image makes for an unpleasant text layout. | The default size is {{code|x40px}} meaning the icon is scaled until the '''height''' is 40 px. It's usually important to limit the height since the icons are used inline, and a very high inline image makes for an unpleasant text layout. | ||
Line 44: | Line 46: | ||
Result: {{IconText | size = 25 | Flourish Icon.png | Flourish }} | Result: {{IconText | size = 25 | Flourish Icon.png | Flourish }} | ||
Usage: {{code|<nowiki>{{IconText | size = 25 | Flourish Icon.png | Usage: {{code|<nowiki>{{IconText | size = 25 | Flourish Icon.png | Custom Text | link = Flourish }}</nowiki>}} | ||
Result: {{IconText | size = 25 | Flourish Icon.png | Result: {{IconText | size = 25 | Flourish Icon.png | Custom Text | link = Flourish }} | ||
Behavior on missing icon: | Behavior on missing icon: | ||
{{IconText | Missing Icon 123.png | Flourish | {{IconText | Missing Icon 123.png | Flourish | size = 30 }} | ||
The width can be set via the {{code|w}} parameter. This could be useful if several elements are supposed to align vertically for design purposes, such as in the following table shown on our main page as of the writing of this documentation. This also uses the {{code|block}} and {{code|gap}} parameters. View the source of this page for usage. | The width can be set via the {{code|w}} parameter. This could be useful if several elements are supposed to align vertically for design purposes, such as in the following table shown on our main page as of the writing of this documentation. This also uses the {{code|block}} and {{code|gap}} parameters. (View the source of this page for usage.) | ||
Setting {{code|block}} to yes ensures that if the text part has to break into multiple lines, the second line doesn't flow under the icon and instead the text is constrained into a rectangular block. The {{code|gap}} parameter can only be provided if block is set to yes, and determines the gap (in px) between the icon and the aforementioned rectangular text block. | |||
{| class="wikitable" style="width: 50%;" | {| class="wikitable" style="width: 50%;" | ||
Line 81: | Line 85: | ||
|} | |} | ||
[[Category:Icon | [[Category:Icon templates]] | ||
</noinclude> | </noinclude> |
Latest revision as of 04:54, 29 July 2024
Usage: {{IconText | Flourish Icon.png | Flourish }}
Result:
The icon and text can be made into a link:
Usage: {{IconText | Flourish Icon.png | Custom Text | link = Flourish }}
Result:
The default size is x40px
meaning the icon is scaled until the height is 40 px. It's usually important to limit the height since the icons are used inline, and a very high inline image makes for an unpleasant text layout.
An alternative value for the height can be provided via the size
or h
parameters, which are synonyms:
Usage: {{IconText | size = 25 | Flourish Icon.png | Flourish }}
Result:
Usage: {{IconText | size = 25 | Flourish Icon.png | Custom Text | link = Flourish }}
Result:
Behavior on missing icon:
The width can be set via the w
parameter. This could be useful if several elements are supposed to align vertically for design purposes, such as in the following table shown on our main page as of the writing of this documentation. This also uses the block
and gap
parameters. (View the source of this page for usage.)
Setting block
to yes ensures that if the text part has to break into multiple lines, the second line doesn't flow under the icon and instead the text is constrained into a rectangular block. The gap
parameter can only be provided if block is set to yes, and determines the gap (in px) between the icon and the aforementioned rectangular text block.
Rolls | |
---|---|
The roll you make to determine whether an attack hits an enemy at all. | |
The roll you make to determine the amount of damage done by a successful attack. | |
The roll you make to attempt avoiding various threats other than direct attacks. | |
The roll you make when attempting anything else that requires a roll to succeed. | |
Modifiers | |
Roll the die twice, and use the higher result. Disadvantage is the exact opposite. | |
The number you add to your rolls based on your Ability Scores. | |
The number you add to your rolls based on whether you have Proficiency. |