MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary Tags: Manual revert Reverted |
No edit summary Tag: Reverted |
||
| Line 1: | Line 1: | ||
/* === | /* =============================== | ||
FORCE SIDEBAR ALWAYS OPEN | |||
Vector 2022 – GitBook Style | |||
================================ */ | |||
/* Hilangkan tombol toggle (hamburger / tiga titik) */ | |||
.vector-header-start, | .vector-header-start, | ||
.vector-main-menu-toggle, | .vector-main-menu-toggle, | ||
| Line 6: | Line 11: | ||
} | } | ||
/* | /* Paksa sidebar selalu tampil */ | ||
#mw-panel { | #mw-panel { | ||
display: block !important; | display: block !important; | ||
visibility: visible !important; | visibility: visible !important; | ||
transform: none !important; | transform: none !important; | ||
position: fixed; | |||
top: 0; | |||
left: 0; | |||
width: 17em; | |||
height: 100vh; | |||
overflow-y: auto; | |||
z-index: 10; | |||
} | } | ||
/* | /* Geser konten utama ke kanan */ | ||
.mw-page-container { | .mw-page-container { | ||
margin-left: 17em; | margin-left: 17em !important; | ||
} | |||
/* Matikan animasi collapse */ | |||
.vector-main-menu { | |||
transform: none !important; | |||
} | } | ||
Revision as of 01:23, 19 December 2025
/* ===============================
FORCE SIDEBAR ALWAYS OPEN
Vector 2022 – GitBook Style
================================ */
/* Hilangkan tombol toggle (hamburger / tiga titik) */
.vector-header-start,
.vector-main-menu-toggle,
#vector-main-menu-dropdown {
display: none !important;
}
/* Paksa sidebar selalu tampil */
#mw-panel {
display: block !important;
visibility: visible !important;
transform: none !important;
position: fixed;
top: 0;
left: 0;
width: 17em;
height: 100vh;
overflow-y: auto;
z-index: 10;
}
/* Geser konten utama ke kanan */
.mw-page-container {
margin-left: 17em !important;
}
/* Matikan animasi collapse */
.vector-main-menu {
transform: none !important;
}