mediawiki-skins-Vector/resources/skins.vector.styles/layouts/gradeC.less
Moh'd Khier Abualruz efe33d5d76 Ensure ToC is always accessible via landmark region (<nav>)
- We had to add nav element to wrap TOC in all places
- Make sure proper nav is only displayed so landmark do not get confused
- Remove Eslint block on rules compat/compat for no support IE 11, this was blocking commit
- Run lint:fix:js and lint:fix:styles
- Fix maxSize in bundlesize.config.json

Bug: T324505
Change-Id: I36d26240b87de33318ff1edf97a410872a438103
2023-02-21 22:19:52 +01:00

18 lines
405 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.
.vector-pinned-container {
display: none;
}
@supports ( display: grid ) {
.vector-pinned-container {
display: block;
}
}