Jump to content

MediaWiki:Group-user.css: Difference between revisions

From Costa Sano MediaWiki
Created page with "CSS placed here will affect registered users only: Hide Top Bar & Right Column for Users in Dashboard & Main: .ns-3020 .vector-page-toolbar, .ns-0 .vector-page-toolbar, .ns-3020 .vector-column-end, .ns-0 .vector-column-end { display: none !important; } Reclaim space for full-width layout: .ns-3020 .mw-content-container, .ns-0 .mw-content-container { max-width: none !important; } Ensure Form Buttons are NEVER hidden: .mw-body-content .mw-..."
Tag: Recreated
 
mNo edit summary
 
Line 1: Line 1:
/* CSS placed here will affect registered users only */
/* ============================================================
  REGISTERED USERS (NON-SYSOP) INTERFACE CLEANUP
  ============================================================ */


/* Hide Top Bar & Right Column for Users in Dashboard & Main */
/* Hide Top Bar & Right Column for Users in Dashboard & Main */
.ns-3020 .vector-page-toolbar,  
.ns-3020 .vector-page-toolbar,
.ns-0 .vector-page-toolbar,
.ns-0   .vector-page-toolbar,
.ns-3020 .vector-column-end,  
.ns-3020 .vector-column-end,
.ns-0 .vector-column-end {
.ns-0   .vector-column-end {
     display: none !important;
     display: none !important;
}
}


/* Reclaim space for full-width layout */
/* Full-width layout for Users */
.ns-3020 .mw-content-container,  
.ns-3020 .mw-content-container,
.ns-0 .mw-content-container {
.ns-0   .mw-content-container {
     max-width: none !important;
     max-width: none !important;
}
}


/* Ensure Form Buttons are NEVER hidden */
/* Ensure PageForms buttons are ALWAYS visible */
.mw-body-content .mw-ui-button,  
.mw-body-content .mw-ui-button,
.mw-body-content .pfForm {
.mw-body-content .pfForm {
     display: inline-block !important;
     display: inline-block !important;
     visibility: visible !important;
     visibility: visible !important;
}
}

Latest revision as of 17:04, 13 February 2026

/* ============================================================
   REGISTERED USERS (NON-SYSOP) INTERFACE CLEANUP
   ============================================================ */

/* Hide Top Bar & Right Column for Users in Dashboard & Main */
.ns-3020 .vector-page-toolbar,
.ns-0    .vector-page-toolbar,
.ns-3020 .vector-column-end,
.ns-0    .vector-column-end {
    display: none !important;
}

/* Full-width layout for Users */
.ns-3020 .mw-content-container,
.ns-0    .mw-content-container {
    max-width: none !important;
}

/* Ensure PageForms buttons are ALWAYS visible */
.mw-body-content .mw-ui-button,
.mw-body-content .pfForm {
    display: inline-block !important;
    visibility: visible !important;
}