Jump to content

MediaWiki:Group-sysop.css: Difference between revisions

From Costa Sano MediaWiki
No edit summary
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* MediaWiki:Group-sysop.css - High Specificity Restoration */
/* ============================================================
  SYSOP INTERFACE RESTORATION — CLASSICAL VECTOR BEHAVIOR
  ============================================================ */


/* 1. Restore the Top Toolbar (Read, Edit, History) */
/* Restore the Top Toolbar */
/* We target the ID and the class to be absolutely sure */
html body.skin-vector-2022 .vector-page-toolbar {
html body.skin-vector-2022 .vector-page-toolbar,
html body.skin-vector-2022 #p-views,
html body.skin-vector-2022 #p-cactions {
     display: flex !important;
     display: flex !important;
     visibility: visible !important;
     visibility: visible !important;
}
}


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


/* 3. Ensure the Page Content doesn't overlap the restored tools */
/* Full-width content for Sysop (optional but safe) */
html body.skin-vector-2022 .mw-content-container {
html body.skin-vector-2022 .mw-content-container {
     margin-right: 300px !important; /* Standard Vector column width */
     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;
}