MediaWiki:Vector-2022.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary Tag: Reverted |
No edit summary Tag: Reverted |
||
| Line 1: | Line 1: | ||
/* ===== | /* =============================== | ||
FIX TOTAL SIDEBAR VECTOR 2022 | |||
=============================== */ | |||
/* | /* Paksa sidebar berada di atas semua layer */ | ||
#mw-panel { | #mw-panel { | ||
position: fixed !important; | |||
top: 0; | |||
left: 0; | |||
width: 260px; | |||
height: 100vh; | |||
z-index: 99999; | |||
pointer-events: auto !important; | |||
background: #f8f9fb; | background: #f8f9fb; | ||
overflow-y: auto; | |||
} | } | ||
/* Geser konten agar tidak menimpa sidebar */ | |||
/* | |||
.mw-page-container, | .mw-page-container, | ||
.mw-body, | .mw-body, | ||
.mw-body-content { | .mw-body-content { | ||
margin-left: 260px !important; | |||
position: relative; | position: relative; | ||
z-index: 1; | z-index: 1; | ||
} | } | ||
#mw-panel { | /* 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; | |||
} | } | ||
Revision as of 00:43, 19 December 2025
/* ===============================
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;
}