MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
Blanked the page Tag: Blanking |
No edit summary Tag: Reverted |
||
| Line 1: | Line 1: | ||
/* =============================== | |||
FIX OVERLAY MENUTUP SIDEBAR | |||
(VECTOR 2022) | |||
=============================== */ | |||
/* Pastikan sidebar selalu di atas */ | |||
#mw-panel { | |||
position: relative; | |||
z-index: 10000 !important; | |||
pointer-events: auto !important; | |||
} | |||
/* Turunkan layer konten */ | |||
.mw-page-container, | |||
.mw-body, | |||
.mw-body-content, | |||
.vector-sticky-header { | |||
position: relative !important; | |||
z-index: 1 !important; | |||
} | |||
/* HANCURKAN overlay pseudo-element */ | |||
.mw-page-container::before, | |||
.mw-page-container::after, | |||
.mw-body::before, | |||
.mw-body::after { | |||
content: none !important; | |||
pointer-events: none !important; | |||
} | |||
Revision as of 00:57, 19 December 2025
/* ===============================
FIX OVERLAY MENUTUP SIDEBAR
(VECTOR 2022)
=============================== */
/* Pastikan sidebar selalu di atas */
#mw-panel {
position: relative;
z-index: 10000 !important;
pointer-events: auto !important;
}
/* Turunkan layer konten */
.mw-page-container,
.mw-body,
.mw-body-content,
.vector-sticky-header {
position: relative !important;
z-index: 1 !important;
}
/* HANCURKAN overlay pseudo-element */
.mw-page-container::before,
.mw-page-container::after,
.mw-body::before,
.mw-body::after {
content: none !important;
pointer-events: none !important;
}