MediaWiki:Vector.css:修订间差异
跳转到导航
跳转到搜索
无编辑摘要 |
无编辑摘要 |
||
(未显示同一用户的3个中间版本) | |||
第1行: | 第1行: | ||
/* | /* 为当前选中的导航标签设置特定文字颜色 */ | ||
. | div.vectorTabs li.selected a, | ||
. | div.vectorTabs li.selected a span, | ||
div.vectorTabs li.selected a:visited div.vectorTabs li { | |||
color: #CC2200; /* 示例中的红色 */ | |||
} | } | ||
/* 调整左侧导航面板中门户div的body部分背景图片 */ | |||
/* | #mw-panel div.portal div.body { | ||
. | background-image: url("http://example.com/test.png"); | ||
} | |||
/* 调整左侧导航面板中门户标题h5的颜色 */ | |||
#mw-panel div.portal h5 { | |||
color: #D49E43; /* 示例中的金色 */ | |||
} | |||
/* 调整侧边栏链接的悬停颜色 */ | |||
#mw-panel div.portal div.body ul li a:hover { | |||
color: #AF833B; | |||
} | } |
2025年9月25日 (四) 23:54的最新版本
/* 为当前选中的导航标签设置特定文字颜色 */ div.vectorTabs li.selected a, div.vectorTabs li.selected a span, div.vectorTabs li.selected a:visited div.vectorTabs li { color: #CC2200; /* 示例中的红色 */ } /* 调整左侧导航面板中门户div的body部分背景图片 */ #mw-panel div.portal div.body { background-image: url("http://example.com/test.png"); } /* 调整左侧导航面板中门户标题h5的颜色 */ #mw-panel div.portal h5 { color: #D49E43; /* 示例中的金色 */ } /* 调整侧边栏链接的悬停颜色 */ #mw-panel div.portal div.body ul li a:hover { color: #AF833B; }