Jump to content

MediaWiki:Common.css

Revision as of 10:41, 7 February 2026 by Knowlepedia (talk | contribs)

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.
/* =============================== */
/* VECTOR / VECTOR 2022 HARD FIX */
/* =============================== */

/* Force Vector grid to behave */
.skin-vector .mw-page-container,
.skin-vector .mw-page-container-inner,
.skin-vector .vector-body {
    max-width: 100% !important;
    width: 100% !important;
}

/* Kill phantom right-side space */
.skin-vector .mw-page-container-inner {
    grid-template-columns: 1fr !important;
}

/* Remove reserved sidebar space */
.skin-vector .vector-column-start,
.skin-vector .vector-column-end {
    display: none !important;
}

/* Ensure main content spans full width */
.skin-vector .mw-content-container,
.skin-vector .mw-parser-output {
    max-width: 100% !important;
    width: 100% !important;
}

/* Prevent horizontal scroll from any rogue element */
html, body {
    overflow-x: hidden !important;
}