|
Tags: Blanking Manual revert |
| (9 intermediate revisions by the same user not shown) |
| Line 1: |
Line 1: |
| /* ===============================
| |
| 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;
| |
| }
| |