MediaWiki:Print.css: Difference between revisions
Jump to navigation
Jump to search
Blanked the page Tag: Blanking |
No edit summary |
||
| Line 1: | Line 1: | ||
@media print { | |||
/* Hide everything by default */ | |||
#mw-content-text > * { | |||
display: none !important; | |||
} | |||
/* Keep the page title */ | |||
#firstHeading { | |||
display: block !important; | |||
margin-bottom: 0.5em; | |||
} | |||
/* Keep the agent infobox */ | |||
#mw-content-text table.ic-infobox { | |||
display: table !important; | |||
float: right !important; | |||
width: 35% !important; | |||
margin: 0 0 1em 1em !important; | |||
} | |||
/* Kill UI / noise */ | |||
#mw-navigation, | |||
.mw-footer, | |||
#footer, | |||
.toc, | |||
.mw-editsection, | |||
#siteNotice, | |||
.printfooter { | |||
display: none !important; | |||
} | |||
} | |||
Revision as of 01:32, 25 December 2025
@media print {
/* Hide everything by default */
#mw-content-text > * {
display: none !important;
}
/* Keep the page title */
#firstHeading {
display: block !important;
margin-bottom: 0.5em;
}
/* Keep the agent infobox */
#mw-content-text table.ic-infobox {
display: table !important;
float: right !important;
width: 35% !important;
margin: 0 0 1em 1em !important;
}
/* Kill UI / noise */
#mw-navigation,
.mw-footer,
#footer,
.toc,
.mw-editsection,
#siteNotice,
.printfooter {
display: none !important;
}
}