MediaWiki:Vector.css: Difference between revisions

From D4RPoMM
Jump to navigation Jump to search
No edit summary
Blanked the page
Tags: Blanking Manual revert
 
(22 intermediate revisions by the same user not shown)
Line 1: Line 1:
/*
  Hide all top-level page elements except for the logo (#p-logo) and toolbox (#p-tb)
  This ensures that only the logo and a portion of the sidebar are visible.
*/
body > *:not(#p-logo):not(#p-tb) {
    display: none !important;
}


/*
  Force the site logo to display.
  #p-logo is the container that holds your site’s logo.
*/
#p-logo,
#p-logo * {
    display: block !important;
}
/*
  Make sure the toolbox container is displayed.
*/
#p-tb,
#p-tb * {
    display: block !important;
}
/*
  In the toolbox, hide all list items except the one with id "t-print".
  By default, the print/export link is rendered as a list item with id "t-print" in the toolbox.
*/
#p-tb li:not(#t-print) {
    display: none !important;
}

Latest revision as of 10:29, 24 April 2025