MediaWiki:Print.css

From ICE List Wiki
Revision as of 01:42, 25 December 2025 by ICEListAdmin6 (talk | contribs)
Jump to navigation Jump to search

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
@media print {

  /* hide common content blocks */
  .mw-parser-output > p,
  .mw-parser-output > ul,
  .mw-parser-output > ol,
  .mw-parser-output > dl,
  .mw-parser-output > div,
  .mw-parser-output > h2,
  .mw-parser-output > h3,
  .mw-parser-output > h4,
  .mw-parser-output > h5,
  .mw-parser-output > h6,
  .mw-parser-output > table:not(.ic-infobox):not(.infobox),
  .mw-parser-output > figure {
    display: none !important;
  }

  /* show title */
  #firstHeading {
    display: block !important;
  }

  /* show infobox */
  table.ic-infobox,
  table.infobox {
    display: table !important;
    float: right;
    width: 35%;
  }
}