The editors' meeting has been canceled for technical reasons.
Template:Tabs/styles.css:修订间差异
跳转到导航
跳转到搜索
标签:撤销 |
无编辑摘要 标签:已被回退 |
||
第1行: | 第1行: | ||
/* | /* 隐藏的单选按钮 */ | ||
input[type="radio"][name^="mc"] { | |||
/* | display: none; | ||
} | |||
/* 默认隐藏所有标签内容 */ | |||
.mcPestanya { | |||
display: none; | |||
} | |||
/* 当单选按钮被选中时,显示对应的标签内容 */ | |||
input[type="radio"]:checked + .skin-invert + .mcContingut > .mcPestanya { | |||
display: block; | |||
} | |||
/* 标签按钮样式 */ | |||
.mcBoto { | .mcBoto { | ||
cursor: pointer; | |||
border: | padding: 10px; | ||
margin: 5px; | |||
border: 1px solid #ccc; | |||
display: inline | background-color: #f9f9f9; | ||
text-align: center; | |||
display: inline-block; | |||
} | |||
. | /* 选中标签按钮样式 */ | ||
.mcBoto | input[type="radio"]:checked + .skin-invert > label.mcBoto { | ||
background | background-color: #9070c0; | ||
color: white; | |||
font-weight: bold; | font-weight: bold; | ||
border-bottom: none; | |||
} | |||
/* 内容容器样式 */ | |||
.mcContingut { | .mcContingut { | ||
margin-top: 10px; | |||
padding: 10px; | |||
border | border: 1px solid #ccc; | ||
background-color: #fff; | |||
background-color: # | |||
} | } | ||
2025年3月1日 (六) 19:13的版本
/* 隐藏的单选按钮 */ input[type="radio"][name^="mc"] { display: none; } /* 默认隐藏所有标签内容 */ .mcPestanya { display: none; } /* 当单选按钮被选中时,显示对应的标签内容 */ input[type="radio"]:checked + .skin-invert + .mcContingut > .mcPestanya { display: block; } /* 标签按钮样式 */ .mcBoto { cursor: pointer; padding: 10px; margin: 5px; border: 1px solid #ccc; background-color: #f9f9f9; text-align: center; display: inline-block; } /* 选中标签按钮样式 */ input[type="radio"]:checked + .skin-invert > label.mcBoto { background-color: #9070c0; color: white; font-weight: bold; border-bottom: none; } /* 内容容器样式 */ .mcContingut { margin-top: 10px; padding: 10px; border: 1px solid #ccc; background-color: #fff; }