MediaWiki:Vector.css
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)
- Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Press Ctrl-F5.
/* ========================================================================
Void Vector.css ; takes Common.css instead
======================================================================== */
/* CSS placed here will be applied to all skins */
/* GOOD */
/* ========================================================================
In the left sidebar (#mw-panel): hide all its contents...
======================================================================== */
#mw-panel {
display: block !important;
}
#mw-panel > * {
display: none !important;
}
/* Now, explicitly display the logo and the mainpage link */
#p-logo,
#n-mainpage {
display: block !important;
}
/* ========================================================================
In the personal tools (#p-personal): hide everything except the login link
======================================================================== */
#p-personal {
display: block !important;
}
#pt-login {
display: inline-block !important;
}
/* ========================================================================
In the toolbox (#p-tb): hide everything except the print command
======================================================================== */
#p-tb {
display: block !important;
}
#p-tb > * {
display: none !important;
}
#t-print {
display: inline-block !important;
}