MediaWiki:Vector.css
注意:在发布之后,您可能需要清除浏览器缓存才能看到所作出的更改的影响。
- Firefox或Safari:按住Shift的同时单击刷新,或按Ctrl-F5或Ctrl-R(Mac为⌘-R)
- Google Chrome:按Ctrl-Shift-R(Mac为⌘-Shift-R)
- Edge:按住Ctrl的同时单击刷新,或按Ctrl-F5。
/* 强制左侧导航侧边栏始终展开 */ /* 禁用侧边栏的折叠功能 */ .vector-sidebar-container { display: flex !important; } /* 确保主内容区域的布局与展开的侧边栏适配 */ .vector-body { display: flex !important; } /* 覆盖移动端/窄屏的媒体查询,强制显示侧边栏 */ @media (max-width: 999px) { .vector-header .vector-sidebar-above-page-container { display: flex !important; width: auto !important; margin-right: 1em; } .vector-sidebar-container { max-width: none !important; width: auto !important; } .vector-sidebar-main { display: block !important; width: auto !important; } /* 隐藏默认的汉堡菜单按钮 */ .vector-sidebar-menu-button { display: none !important; } }