mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-24 23:55:53 +00:00
9581bdaa09
This reverts commit 125af06692
.
Change-Id: I21fa5460017235c43f6ccf0ce815364d50bf1e34
28 lines
745 B
Plaintext
28 lines
745 B
Plaintext
{{!
|
|
See @typedef MenuDefinition
|
|
}}
|
|
<div id="{{id}}" role="navigation" class="{{class}}" aria-labelledby="{{label-id}}" {{{html-tooltip}}}>
|
|
{{#is-dropdown}}
|
|
<input type="checkbox" class="vectorMenuCheckbox" aria-labelledby="{{label-id}}" />
|
|
<h3 id="{{label-id}}" {{{html-userlangattributes}}}>
|
|
<span>{{label}}</span>
|
|
</h3>
|
|
{{/is-dropdown}}
|
|
{{^is-dropdown}}
|
|
<h3 id="{{label-id}}">{{label}}</h3>
|
|
{{/is-dropdown}}
|
|
{{#is-portal}}
|
|
<div class="body">
|
|
<ul>{{{html-items}}}</ul>
|
|
{{{html-after-portal}}}
|
|
</div>
|
|
{{/is-portal}}
|
|
{{^is-portal}}
|
|
<ul class="menu" {{{html-userlangattributes}}}>
|
|
{{{html-items}}}
|
|
</ul>
|
|
{{/is-portal}}
|
|
</div>
|
|
{{! Note: html-hook-vector-after-toolbox is deprecated. }}
|
|
{{{html-hook-vector-after-toolbox}}}
|