MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary Tag: Manual revert |
No edit summary Tag: Reverted |
||
| Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
#catlinks { display: none; } | #catlinks { display: none; } | ||
/* This enables pagebreaks in printing */ | |||
@media print { | |||
.print-pagebreak { | |||
page-break-before: always; | |||
break-before: page; /* For modern browsers */ | |||
} | |||
} | |||
Revision as of 09:42, 8 May 2025
/* CSS placed here will be applied to all skins */
#catlinks { display: none; }
/* This enables pagebreaks in printing */
@media print {
.print-pagebreak {
page-break-before: always;
break-before: page; /* For modern browsers */
}
}