MediaWiki:Vector.css:修订间差异
跳转到导航
跳转到搜索
(创建页面,内容为“→此处所有CSS将为使用Vector皮肤的用户加载: body.skin-vector .vector-page-content { max-width: 100% !important; width: 100% !important; }”) |
无编辑摘要 |
||
第1行: | 第1行: | ||
/* | /* 让内容区域自动全宽铺开 */ | ||
.mw-parser-output { | |||
max-width: 100% !important; | max-width: 100% !important; | ||
width: 100% !important; | width: 100% !important; | ||
padding: 20px; | |||
margin: 0 auto; | |||
font-size: 14px; | |||
line-height: 1.7; | |||
box-sizing: border-box; | |||
} | |||
/* Vector 皮肤:让中间容器支持全宽 */ | |||
body.skin-vector .vector-page-content, | |||
body.skin-vector .mw-page-container, | |||
body.skin-vector .mw-content-container, | |||
body.skin-vector .mw-body { | |||
max-width: 100% !important; | |||
width: 100% !important; | |||
box-sizing: border-box; | |||
} | } |
2025年5月27日 (二) 20:53的最新版本
/* 让内容区域自动全宽铺开 */
.mw-parser-output {
max-width: 100% !important;
width: 100% !important;
padding: 20px;
margin: 0 auto;
font-size: 14px;
line-height: 1.7;
box-sizing: border-box;
}
/* Vector 皮肤:让中间容器支持全宽 */
body.skin-vector .vector-page-content,
body.skin-vector .mw-page-container,
body.skin-vector .mw-content-container,
body.skin-vector .mw-body {
max-width: 100% !important;
width: 100% !important;
box-sizing: border-box;
}