mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-25 16:15:28 +00:00
efe33d5d76
- 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
18 lines
405 B
Plaintext
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;
|
|
}
|
|
}
|