MediaWiki:Common.css: Difference between revisions

From D4RPoMM
Jump to navigation Jump to search
No edit summary
No edit summary
Line 22: Line 22:
   display: block !important;
   display: block !important;
}
}
#p-personal > * {
 
  display: none !important;
}
#pt-login {
#pt-login {
   display: inline-block !important;
   display: inline-block !important;
Line 35: Line 33:
   display: block !important;
   display: block !important;
}
}
#p-tb > * {
 
  display: none !important;
}
#t-print {
#t-print {
   display: inline-block !important;
   display: inline-block !important;
}
}

Revision as of 15:24, 11 April 2025

/* CSS placed here will be applied to all skins */
/* ========================================================================
   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;
}

#t-print {
  display: inline-block !important;
}