Vorlage:Hidden

Aus Open Source Ecology - Germany
Version vom 17. Mai 2018, 12:41 Uhr von Andreas Plank (Diskussion | Beiträge) (https://species-id.net/o/index.php?title=Template:Hidden&oldid=385192)
(Unterschied) ← Nächstältere Version | Aktuelle Version (Unterschied) | Nächstjüngere Version → (Unterschied)
Zur Navigation springen Zur Suche springen
{{{1}}}

{{{2}}}

[Aktualisieren][Bearbeiten]Dokumentation der Vorlage

Usage

This template creates collapsible parts. Template parameter are:

  • header or 1 → text of header
  • headerstyle → CSS for the header
  • content or 2 → text of content
  • contentstyle, contentclass → CSS style or class for the content
  • class → CSS class for the entire box
  • toggle position = left → alters the position of the toggler to being left
  • not collapsed → any value (the box will be opend on initialisation)

Examples:

{{Hidden | header text without equal sign |content text without equal sign
 typewriter text}}
header text without equal sign

content text without equal sign

typewriter text

→ the content text becomes formatted as wiki text


{{Hidden | header= header text | content = content text}}
header text

content text


{{Hidden | header= header text | content = content text| toggle position = left}}
header text

content text


{{Hidden | header= header text | content = content text| toggle position = left | contentclass=border-left-dotted}}
header text

content text


{{Hidden | headerstyle= text-align:center; | header= header text | content = content text}}
header text

content text


{{Hidden | header= header text | content = content text | contentstyle= text-align:justify; }}
header text

content text


Some text around here {{Hidden | header = Title | toggle text = Show UML diagram / Hide UML diagram | content = content text}}
Some text around here
Title

content text


Some text around here {{Hidden | header = Title | content = content text | toggle text = + / − | toggle position = left}}
Some text around here
Title

content text


{{Hidden | header = Some text here … | content = content text | class = toccolours round | toggle text = + / − | toggle position = left}}
Some text here …

content text


{{Hidden | header = Some text here … | content = content text not collpsed | class = toccolours round | not collapsed = yes}}
Some text here …

content text not collpsed


Technical documentation

CSS-dependencies:

.round {
  border-radius: 10px;
  -moz-border-radius: 10px;
}
/* for toggle position */
div.mw-collapsible.force-toggle-float-left span.mw-collapsible-toggle {
  clear:left; float:left;margin-right:0.2em;
}
.mw-collapsible-content.border-left-dotted {
    border-left:1px dotted gray;
    padding-left:5px!important;
}