|
Tags: Blanking Manual revert |
| 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;
| |
| }
| |
|
| |
| #mw-panel {
| |
| position: fixed !important;
| |
| inset: 0 auto 0 0;
| |
| width: 260px;
| |
| z-index: 999999;
| |
| }
| |
|
| |
| .mw-page-container {
| |
| margin-left: 260px !important;
| |
| }
| |