Switch order of sidebar menu and article toolbar in DOM

In order to make the TOC go below the sidebar menu, we must reorder the sidebar menu to be directly before the sticky TOC element.
This change involves cached HTML, so this change is separated out from the rest of the CSS changes to be merged first.

Bug: T300875
Change-Id: I8c0924f6de28b15602969de873a843b4cd69548b
This commit is contained in:
bwang 2022-02-21 17:08:00 -06:00 committed by Bernard Wang
parent 8b5ea941e5
commit e9d2f5e37f
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,4 @@
<div id="mw-navigation">
{{#data-portlets-sidebar}}{{>Sidebar}}{{/data-portlets-sidebar}}
<div id="mw-head">
<div class="mw-article-toolbar-container">
{{#data-portlets}}
@ -14,4 +13,5 @@
{{/data-portlets}}
</div>
</div>
{{#data-portlets-sidebar}}{{>Sidebar}}{{/data-portlets-sidebar}}
</div>