MediaWiki:Vector.css: Difference between revisions

From D4RPoMM
Jump to navigation Jump to search
No edit summary
Replaced content with "/* void Vector.css"
Tag: Replaced
Line 1: Line 1:
/*  
/* void Vector.css
  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;
}

Revision as of 15:07, 11 April 2025

/* void Vector.css