mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-29 09:55:42 +00:00
18 lines
459 B
Plaintext
18 lines
459 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-layout-grid .mw-table-of-contents-container {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
@supports ( display: grid ) {
|
||
|
.vector-layout-grid .mw-table-of-contents-container {
|
||
|
display: block;
|
||
|
}
|
||
|
}
|