Template:Callout: Difference between revisions

From Space Station 14 Wiki
No edit summary
No edit summary
Line 1: Line 1:
<includeonly><div class="callout"><!--
<includeonly><!--
    --><span class="callout-header"></span><!--
-->{{#switch: {{lc: {{{1}}}}}
    --><div class="callout-content"></div><!--
|info=
{{#vardefine: callout_header|Info}}
{{#vardefine: callout_strip_color|var(--action-color)}}
 
|{{error|unknown type{{colon}} {{{1}}}}}
}}<!--
 
--><div class="callout-wrapper">
<div class="callout" style="
padding: .5rem;
border-left: 10px solid #b32424;
background: var(--bg-color-light-x2);
border-top: 1px solid var(--bg-color-light-x4);
border-bottom: 1px solid var(--bg-color-light-x4);
border-right: 1px solid var(--bg-color-light-x4);
color: var(--text-color);
><!--
--><span class="callout-header" style="
        font-weight: bold;
        font-size: large;
        ">{{#var:callout_header}}</span><!--
--><div class="callout-content">{{{2}}}</div><!--
--></div><!--
--></div></includeonly><noinclude>
--></div></includeonly><noinclude>
{{docs}}
{{docs}}
{{callout|info|hello world}}


<templatedata>
<templatedata>

Revision as of 12:41, 14 August 2024

Template documentation
view or edit this documentation about template documentation

Examples

Types

Caption text
Type Syntax Result
Info {{Callout|Info|An informative message.}}
Info
An informative message.
Warning {{Callout|Warning|Something to be warned about.}} unknown type: Warning
Info
Something to be warned about.
Danger {{Callout|Danger|The clown is closing in.}} unknown type: Danger
Info
The clown is closing in.
Tip {{Callout|Tip|When walking over slippery surfaces, hold {{button|Shift}} to slow down and not slip (in most cases).}} unknown type: Tip
Info
When walking over slippery surfaces, hold Shift to slow down and not slip (in most cases).
Example {{Callout|Example|An example for something.}} unknown type: Example
Info
An example for something.

Header label

{{Callout|Info|header=Notice|Bla-bla-bla, lorem ipsum...}}
or
{{Callout|Info|h=Notice|Bla-bla-bla, lorem ipsum...}}

Info
Bla-bla-bla, lorem ipsum...

or

Info
Bla-bla-bla, lorem ipsum...

Alignment

Left

The default.

Center

{{Callout|Info|align=center|Bla-bla-bla, lorem ipsum...}}
or
{{Callout|Info|a=center|Bla-bla-bla, lorem ipsum...}}

Info
Bla-bla-bla, lorem ipsum...

or

Info
Bla-bla-bla, lorem ipsum...

Right

{{Callout|Info|align=right|Bla-bla-bla, lorem ipsum...}}

Info
Bla-bla-bla, lorem ipsum...

Images

{{Callout
| Info
| header = Work in Progress
| align = center
| This page is unfinished.
| image = Wired Frame.png
| image2 = Wrench.png
}}

Info
This page is unfinished.

Stacked callouts

Sets the callout to a predefined width, making all callouts with the same class appear with the same width.

Callouts will be stacked to the right and will require {{clear}} after to not overflow with the content that goes after.

{{Callout|stacked=1|Info|An informative message. An informative message. An informative message.}}
{{Callout|stacked=1|Info|Bla-bla-bla, lorem ipsum... Bla-bla-bla, lorem ipsum... Bla-bla-bla, lorem ipsum... Bla-bla-bla, lorem ipsum...}}
{{Clear}}

Info
An informative message. An informative message. An informative message.
Info
Bla-bla-bla, lorem ipsum... Bla-bla-bla, lorem ipsum... Bla-bla-bla, lorem ipsum... Bla-bla-bla, lorem ipsum...

Wrapper classes

Allows to add custom classes to the wrapper element.

{{Callout|wrapper class=hello|Info|An informative message.}}

Info
An informative message.
Info
hello world

A template for producing various notices.

Template parameters[Edit template data]

ParameterDescriptionTypeStatus
Type1

Type of the callout. Select from the suggested values. Any casing is supported.

Suggested values
Info Warning Danger Example Tip
Linerequired
Content2

Content of the callout.

Stringrequired
Header labelheader

Header text of the callout. By default, depends on the type.

Linesuggested
Alignalign

Alignment of the callout.

Suggested values
Left Center Right None
Default
None
Linesuggested