mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-30 02:15:49 +00:00
ea2bcd44f2
- Update package.json with the new dependencies. - A script storybook.sh pulls down CSS and LESS imports from external dependencies. This copies the approach taken in Popups and MobileFrontend. - Icons from external repos are maintained within the repo in SVG-only form. Using load.php modules is also possible, but will pull down other unnecessary icons and break if any of these modules are changed. Decided that we should manually maintain these for the time being given there are only 3 icons. - Several LESS files now import the variables file. I think it's useful for stories to only import the CSS they use as this encourages us to modularise our CSS. Before these imports were not necessary as they inherit imports from index.less. This will have no impact on the bundle size as the LESS compiler silently discards duplicate imports - stories/utils.js provides a useful placeholder function for generalising our hook entry points. Bug: T242674 Change-Id: I722e84d2fb57653a2f96142dc3e5248043261746
28 lines
1 KiB
Plaintext
28 lines
1 KiB
Plaintext
{{!
|
|
string html-navigation-heading heading for entire navigation that is
|
|
usually hidden to screen readers
|
|
string html-personal-menu content that appears as the first child of mw-head
|
|
string html-navigation-left-tabs that appears inside #left-navigation (namespaces and variants)
|
|
string html-navigation-right-tabs that appears inside #right-navigation (page actions and search)
|
|
string html-logo-attributes for site logo. Must be used inside tag e.g. `class="logo" lang="en-gb"`
|
|
string html-portals for portal(s) that appear in the main menu for Vector
|
|
}}
|
|
<div id="mw-navigation">
|
|
<h2>{{{html-navigation-heading}}}</h2>
|
|
<div id="mw-head">
|
|
{{{html-personal-menu}}}
|
|
<div id="left-navigation">
|
|
{{{html-navigation-left-tabs}}}
|
|
</div>
|
|
<div id="right-navigation">
|
|
{{{html-navigation-right-tabs}}}
|
|
</div>
|
|
</div>
|
|
<div id="mw-panel">
|
|
<div id="p-logo" role="banner">
|
|
<a {{{html-logo-attributes}}}></a>
|
|
</div>
|
|
{{{html-portals}}}
|
|
</div>
|
|
</div>
|