Jump to content

MediaWiki:Group-sysop.css: Difference between revisions

From Costa Sano MediaWiki
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..."
Tag: Recreated
 
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* CSS placed here will affect sysops only */
/* ============================================================
  SYSOP INTERFACE RESTORATION — CLASSICAL VECTOR BEHAVIOR
  ============================================================ */


/* MediaWiki:Group-sysop.css - Admin Restoration */
/* Restore the Top Toolbar */
 
html body.skin-vector-2022 .vector-page-toolbar {
/* 1. Force the Top Bar (Read, Edit, History) back into view */
     display: flex !important;
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;
     visibility: visible !important;
}
}


/* 2. Force the Right Column (Tools/Cargo) back into view */
/* Restore the Right Column Tools in their NORMAL position */
html body .ns-3020 .vector-column-end,
html body.skin-vector-2022 .vector-column-end {
html body .ns-0 .vector-column-end {
     display: block !important;
     display: block !important;
     visibility: visible !important;
     visibility: visible !important;
    position: static !important;  /* ← This is the key change */
}
}


/* 3. Optional: Restore Sidebar for Sysop if hidden */
/* Full-width content for Sysop (optional but safe) */
html body .vector-main-menu-container {
html body.skin-vector-2022 .mw-content-container {
     display: block !important;
     max-width: none !important;
}
}

Latest revision as of 17:16, 13 February 2026

/* ============================================================
   SYSOP INTERFACE RESTORATION — CLASSICAL VECTOR BEHAVIOR
   ============================================================ */

/* Restore the Top Toolbar */
html body.skin-vector-2022 .vector-page-toolbar {
    display: flex !important;
    visibility: visible !important;
}

/* Restore the Right Column Tools in their NORMAL position */
html body.skin-vector-2022 .vector-column-end {
    display: block !important;
    visibility: visible !important;
    position: static !important;   /* ← This is the key change */
}

/* Full-width content for Sysop (optional but safe) */
html body.skin-vector-2022 .mw-content-container {
    max-width: none !important;
}