MediaWiki:Common.css:修订间差异
MediaWiki界面页面
更多操作
无编辑摘要 |
无编辑摘要 |
||
| 第394行: | 第394行: | ||
} | } | ||
/* | /* --- 明星编辑表格重塑 --- */ | ||
.hp- | |||
/* 1. 隐藏原始表格的表头和边框 */ | |||
.hp-scores-wrapper table.stats { | |||
width: 100% !important; | width: 100% !important; | ||
border: none !important; | border: none !important; | ||
background: transparent !important; | |||
margin: 0 !important; | margin: 0 !important; | ||
} | } | ||
.hp- | .hp-scores-wrapper table.stats th { | ||
display: none !important; /* 隐藏丑陋的表头 */ | |||
} | |||
/* 2. 重塑每一行 */ | |||
.hp-scores-wrapper table.stats tr { | |||
display: flex; | |||
align-items: center; | |||
padding: 10px 0; | |||
border-bottom: 1px dashed #edf2f7; | border-bottom: 1px dashed #edf2f7; | ||
background: transparent !important; | |||
} | } | ||
.hp- | .hp-scores-wrapper table.stats tr:last-child { | ||
border-bottom: none; | border-bottom: none; | ||
} | } | ||
.hp- | /* 3. 排名数字美化 (第一列) */ | ||
display: none; | .hp-scores-wrapper table.stats td:nth-child(1) { | ||
width: 28px; | |||
height: 28px; | |||
background: #1a3a6c; | |||
color: white !important; | |||
border-radius: 50%; | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
font-weight: bold; | |||
font-size: 0.8em; | |||
margin-right: 12px; | |||
border: none !important; | |||
} | } | ||
.hp- | /* 给前三名上色 */ | ||
.hp-scores-wrapper table.stats tr:nth-child(1) td:nth-child(1) { background: #ffd700; } /* 金 */ | |||
.hp-scores-wrapper table.stats tr:nth-child(2) td:nth-child(1) { background: #c0c0c0; } /* 银 */ | |||
.hp-scores-wrapper table.stats tr:nth-child(3) td:nth-child(1) { background: #cd7f32; } /* 铜 */ | |||
} | |||
/* | /* 4. 用户名美化 (第二列) */ | ||
.hp- | .hp-scores-wrapper table.stats td:nth-child(2) { | ||
flex: 1; | |||
border: none !important; | |||
padding: 0 !important; | |||
} | } | ||
.hp-scores-wrapper table.stats td:nth-child(2) a { | |||
.hp- | font-weight: 600; | ||
color: #2d3748 !important; | color: #2d3748 !important; | ||
text-decoration: none; | text-decoration: none; | ||
} | } | ||
.hp- | /* 5. 分数/编辑数美化 (其他列) */ | ||
color: # | .hp-scores-wrapper table.stats td:nth-child(3), | ||
.hp-scores-wrapper table.stats td:nth-child(4) { | |||
font-size: 0.8em; | |||
color: #718096; | |||
border: none !important; | |||
background: none !important; | |||
} | } | ||
/* 隐藏不需要的列(如果有的话) */ | |||
.hp-scores-wrapper table.stats td:empty { display: none; } | |||