Clean up cached grid CSS from moving the Header

Can be merged after 04/07
Follow-up: I038fc17cbb88a29dbe8d7841b824761a91d38405

Bug: T332449
Change-Id: I8bfee300fe9d164143dbf1acac26015e9ca4df89
This commit is contained in:
bwang 2023-03-28 13:38:37 -05:00 committed by Jdlrobson
parent 16dc80fdd1
commit 2bc51bef44

View file

@ -10,10 +10,8 @@
.mw-page-container-inner {
display: grid;
column-gap: @grid-column-gap;
// FIXME: Remove header from grid after cached HTML is resolved
grid-template: ~'min-content min-content min-content 1fr min-content / @{grid-template-column-desktop}';
grid-template-areas: 'header header'
'siteNotice siteNotice'
grid-template: ~'min-content min-content 1fr min-content / @{grid-template-column-desktop}';
grid-template-areas: 'siteNotice siteNotice'
'mainMenu pageContent'
'toc pageContent'
'footer footer';
@ -28,11 +26,6 @@
overflow-anchor: none; // T330108
}
// FIXME: Remove header from grid after cached HTML is resolved
.mw-header {
grid-area: header;
}
.vector-main-menu-container {
grid-area: mainMenu;
overflow-anchor: none; // T330108