MediaWiki:Common.css: Difference between revisions
From The Money Wiki
Created page with "→CSS placed here will be applied to all skins: #toc { display: none !important; }" |
No edit summary |
||
Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
/* Hide the TOC list but keep the heading and show/hide button */ | |||
.toc ul { | |||
display: none; | |||
} | |||
.toc.mw-collapsible-content { | |||
display: none !important; | display: none !important; | ||
} | |||
.toc.mw-collapsible-content .toc ul { | |||
display: block !important; | |||
} | |||
.toc.mw-collapsible-content.mw-collapsed { | |||
display: none; | |||
} | } |
Revision as of 19:16, 16 September 2025
/* CSS placed here will be applied to all skins */
/* Hide the TOC list but keep the heading and show/hide button */
.toc ul {
display: none;
}
.toc.mw-collapsible-content {
display: none !important;
}
.toc.mw-collapsible-content .toc ul {
display: block !important;
}
.toc.mw-collapsible-content.mw-collapsed {
display: none;
}