Template:Callout: Difference between revisions
No edit summary |
No edit summary |
||
Line 8: | Line 8: | ||
}}<!-- | }}<!-- | ||
--><div class="callout-wrapper"> | --><div class="callout-wrapper" style=" | ||
display: flex; | |||
justify-content: {{lc: {{{align|{{{a|left}}}}}}}} | |||
"> | |||
<div class="callout" style=" | <div class="callout" style=" | ||
padding: .5rem; | padding: .5rem; | ||
Line 17: | Line 20: | ||
border-right: 1px solid var(--bg-color-light-x4); | border-right: 1px solid var(--bg-color-light-x4); | ||
color: var(--text-color); | color: var(--text-color); | ||
width: fit-content; | |||
min-width: 20rem; | |||
><!-- | ><!-- | ||
--><span class="callout-header" style=" | --><span class="callout-header" style=" | ||
Line 55: | Line 60: | ||
"description": "Header text of the callout. By default, depends on the type.", | "description": "Header text of the callout. By default, depends on the type.", | ||
"type": "line", | "type": "line", | ||
"suggested": true | "suggested": true, | ||
"aliases": [ | |||
"h" | |||
] | |||
}, | }, | ||
"align": { | "align": { | ||
Line 64: | Line 72: | ||
"Left", | "Left", | ||
"Center", | "Center", | ||
"Right | "Right" | ||
], | ], | ||
"default": " | "default": "Left", | ||
"suggested": true | "suggested": true, | ||
"aliases": [ | |||
"a" | |||
] | |||
} | } | ||
}, | }, |
Revision as of 12:44, 14 August 2024
Examples
Types
Type | Syntax | Result |
---|---|---|
Info | {{Callout |
Info An informative message. |
Warning | {{Callout |
unknown type: Warning Info Something to be warned about. |
Danger | {{Callout |
unknown type: Danger Info The clown is closing in. |
Tip | {{Callout |
unknown type: Tip Info When walking over slippery surfaces, hold Shift to slow down and not slip (in most cases). |
Example | {{Callout |
unknown type: Example Info An example for something. |
Header label
{{Callout
or
{{Callout
↓
or
Alignment
Left
The default.
Center
{{Callout
or
{{Callout
↓
or
Right
{{Callout
↓
Images
| Info
| header = Work in Progress
| align = center
| This page is unfinished.
| image = Wired Frame.png
| image2 = Wrench.png
}}
↓
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
{{Callout
{{Clear}}
↓
Wrapper classes
Allows to add custom classes to the wrapper element.
{{Callout
↓
A template for producing various notices.
Parameter | Description | Type | Status | |
---|---|---|---|---|
Type | 1 | Type of the callout. Select from the suggested values. Any casing is supported.
| Line | required |
Content | 2 | Content of the callout. | String | required |
Header label | header h | Header text of the callout. By default, depends on the type. | Line | suggested |
Align | align a | Alignment of the callout.
| Line | suggested |