- Welcome to the Kancolle Wiki!
- If you have any questions regarding site content, account registration, etc., please visit the KanColle Wiki Discord
Difference between revisions of "Template:Detail"
Jump to navigation
Jump to search
m |
|||
Line 6: | Line 6: | ||
==Parameters== | ==Parameters== | ||
*'''target''': property name for hidable elements, <code>toggle-target-'''target'''</code> will be used as a class and a local storage key; defaults to <code>default</code> | *'''target''': property name for hidable elements, <code>toggle-target-'''target'''</code> will be used as a class and a local storage key; defaults to <code>default</code> | ||
− | *'''button''': set to | + | *'''button''': set to generate a toggle button |
**'''default''': <code>hide</code> or <code>show</code>, to hide or show hidable content by default; defaults to <code>hide</code> | **'''default''': <code>hide</code> or <code>show</code>, to hide or show hidable content by default; defaults to <code>hide</code> | ||
**'''show_style''': button style when showing hidable content; defaults to <code>cursor:pointer;color:#006cb0;</code> | **'''show_style''': button style when showing hidable content; defaults to <code>cursor:pointer;color:#006cb0;</code> | ||
Line 12: | Line 12: | ||
**'''show_text''': button text when showing hidable content; defaults to <code>Show details</code> | **'''show_text''': button text when showing hidable content; defaults to <code>Show details</code> | ||
**'''hide_text''': button text when not showing hidable content; defaults to <code>Show details</code> | **'''hide_text''': button text when not showing hidable content; defaults to <code>Show details</code> | ||
− | *Without '''button''' a class for hidable element will be | + | *Without '''button''' parameter a class for hidable element will be generated |
**'''[[[1]]]''': hidable content in a <code>span</code> element | **'''[[[1]]]''': hidable content in a <code>span</code> element | ||
==Examples== | ==Examples== | ||
Line 25: | Line 25: | ||
<pre> | <pre> | ||
{{Detail|button=true|target=example-custom-property}} | {{Detail|button=true|target=example-custom-property}} | ||
− | {{Detail||target=example-custom- | + | {{Detail||target=example-custom-property|Hidden content}} |
</pre> | </pre> | ||
{{Detail|button=true|target=example-custom-property}} | {{Detail|button=true|target=example-custom-property}} | ||
− | {{Detail||target=example-custom- | + | {{Detail||target=example-custom-property|Hidden content}} |
===Showing details by default=== | ===Showing details by default=== | ||
<pre> | <pre> | ||
Line 49: | Line 49: | ||
{| class="wikitable" | {| class="wikitable" | ||
|Normal row | |Normal row | ||
− | |||
|{{Detail|target=example-column}}|Hidden column | |{{Detail|target=example-column}}|Hidden column | ||
|- {{Detail|target=example-row}} | |- {{Detail|target=example-row}} | ||
|Hidable row | |Hidable row | ||
− | |||
|{{Detail|target=example-column}}|Hidden column | |{{Detail|target=example-column}}|Hidden column | ||
|} | |} | ||
Line 61: | Line 59: | ||
{| class="wikitable" | {| class="wikitable" | ||
|Normal row | |Normal row | ||
− | |||
|{{Detail|target=example-column}}|Hidden column | |{{Detail|target=example-column}}|Hidden column | ||
|- {{Detail|target=example-row}} | |- {{Detail|target=example-row}} | ||
|Hidable row | |Hidable row | ||
− | |||
|{{Detail|target=example-column}}|Hidden column | |{{Detail|target=example-column}}|Hidden column | ||
|} | |} | ||
</noinclude> | </noinclude> |
Revision as of 21:39, 18 July 2016
This is a helper template for using MediaWiki:DetailToggle.js functions.
Parameters
- target: property name for hidable elements,
toggle-target-target
will be used as a class and a local storage key; defaults todefault
- button: set to generate a toggle button
- default:
hide
orshow
, to hide or show hidable content by default; defaults tohide
- show_style: button style when showing hidable content; defaults to
cursor:pointer;color:#006cb0;
- hide_style: button style when not showing hidable content; defaults to
cursor:pointer;color:#006cb0;
- show_text: button text when showing hidable content; defaults to
Show details
- hide_text: button text when not showing hidable content; defaults to
Show details
- default:
- Without button parameter a class for hidable element will be generated
- [[[1]]]: hidable content in a
span
element
- [[[1]]]: hidable content in a
Examples
Default
{{Detail|button=true}} {{Detail|Hidden content}}
☑ Show details ☒ Show details
Hidden content
Custom property
{{Detail|button=true|target=example-custom-property}} {{Detail||target=example-custom-property|Hidden content}}
☑ Show details ☒ Show details
class="toggle-target-example-custom-property"
Showing details by default
{{Detail|button=true|target=example-custom-default|default=show}} {{Detail|Hidable content|target=example-custom-default}}
☑ Show details ☒ Show details
Hidable content
Custom hidable elements
{{Detail|button=true|target=example-custom-hidable-element}} <div {{Detail|target=example-custom-hidable-element}}>Hidden content</div>
☑ Show details ☒ Show details
Hidden content
Table
{{Detail|button=true|target=example-row|default=show|show_text=Show row|hide_text=Show row (hidden)}} {{Detail|button=true|target=example-column|show_text=Show column|hide_text=Show column (hidden)}} {| class="wikitable" |Normal row |{{Detail|target=example-column}}|Hidden column |- {{Detail|target=example-row}} |Hidable row |{{Detail|target=example-column}}|Hidden column |}
☑ Show row ☒ Show row (hidden)
☑ Show column ☒ Show column (hidden)
Normal row | Hidden column |
Hidable row | Hidden column |