mediawiki-skins-Vector/resources/skins.vector.styles/layouts/gradeC.less
bwang 8eff2d0501 Follow up: Remove .vector-layout-grid, .mw-workspace-container classes
Bug: T313559
Change-Id: If93860d13fb3161c0b66f7ea9e3e1831b0a2fc1e
2022-08-15 10:10:01 -05:00

18 lines
419 B
Plaintext

//
// No grid support behaviour
//
// If there is no display grid support we remove the table of contents
// On IE11 this leaves a clean single column grid.
// To be revisited when table of contents is collapsible in which situation we should be able to
// force it as sticky.
.mw-table-of-contents-container {
display: none;
}
@supports ( display: grid ) {
.mw-table-of-contents-container {
display: block;
}
}