Jump to content

MediaWiki:Group-sysop.css

From Costa Sano MediaWiki
Revision as of 22:20, 12 February 2026 by Mngr (talk | contribs) (Created page with "CSS placed here will affect sysops only: MediaWiki:Group-sysop.css - Admin Restoration: 1. Force the Top Bar (Read, Edit, History) back into view: html body .ns-3020 .vector-page-toolbar, html body .ns-0 .vector-page-toolbar { display: flex !important; Vector 2022 uses flex for the toolbar: visibility: visible !important; } 2. Force the Right Column (Tools/Cargo) back into view: html body .ns-3020 .vector-column-end, html body .ns-0...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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.
/* CSS placed here will affect sysops only */

/* MediaWiki:Group-sysop.css - Admin Restoration */

/* 1. Force the Top Bar (Read, Edit, History) back into view */
html body .ns-3020 .vector-page-toolbar, 
html body .ns-0 .vector-page-toolbar {
    display: flex !important; /* Vector 2022 uses flex for the toolbar */
    visibility: visible !important;
}

/* 2. Force the Right Column (Tools/Cargo) back into view */
html body .ns-3020 .vector-column-end, 
html body .ns-0 .vector-column-end {
    display: block !important;
    visibility: visible !important;
}

/* 3. Optional: Restore Sidebar for Sysop if hidden */
html body .vector-main-menu-container {
    display: block !important;
}