MediaWiki:Vector-2022.css

From EstoriaRO Wiki
Revision as of 00:43, 19 December 2025 by Admin (talk | contribs)
Jump to navigation Jump to search

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

/* Paksa sidebar berada di atas semua layer */
#mw-panel {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 260px;
  height: 100vh;
  z-index: 99999;
  pointer-events: auto !important;
  background: #f8f9fb;
  overflow-y: auto;
}

/* Geser konten agar tidak menimpa sidebar */
.mw-page-container,
.mw-body,
.mw-body-content {
  margin-left: 260px !important;
  position: relative;
  z-index: 1;
}

/* Pastikan link sidebar bisa diklik */
#mw-panel a {
  pointer-events: auto !important;
  cursor: pointer;
  display: block;
}

/* Hilangkan kemungkinan overlay */
.mw-page-container::before,
.mw-page-container::after,
.mw-body::before,
.mw-body::after {
  content: none !important;
}