The editors' meeting has been canceled for technical reasons.

Template:Tabs/styles.css:修订间差异

来自NeuroWiki
跳转到导航 跳转到搜索
无编辑摘要
标签已被回退
无编辑摘要
标签已被回退
第1行: 第1行:
/* 隐藏的单选按钮 */
/* 隐藏所有标签内容 */
input[type="radio"][name^="mc"] {
.mcPestanya {
   display: none;
   display: none;
}
}


/* 默认隐藏所有标签内容 */
/* 默认显示第一个标签内容 */
.mcPestanya {
.mcPestanyaActive {
   display: none;
   display: block;
}
}


/* 当单选按钮被选中时,显示对应的标签内容 */
/* 当标签内容被锚点选择时,显示对应的内容 */
input[type="radio"]:checked + .skin-invert + .mcContingut > .mcPestanya {
.mcPestanya:target {
   display: block;
   display: block;
}
}
第23行: 第23行:
   text-align: center;
   text-align: center;
   display: inline-block;
   display: inline-block;
  text-decoration: none;
  color: #7050a0;
}
}


/* 选中标签按钮样式 */
/* 选中标签的样式 */
input[type="radio"]:checked + .skin-invert > label.mcBoto {
.mcBotoSel {
  font-weight: bold;
   background-color: #9070c0;
   background-color: #9070c0;
   color: white;
   color: white;
   font-weight: bold;
   border: none;
   border-bottom: none;
  text-decoration: none;
}
 
.mcBoto:hover {
   background-color: #d0b0ff;
  text-decoration: none;
}
}



2025年3月1日 (六) 19:14的版本

/* 隐藏所有标签内容 */
.mcPestanya {
  display: none;
}

/* 默认显示第一个标签内容 */
.mcPestanyaActive {
  display: block;
}

/* 当标签内容被锚点选择时,显示对应的内容 */
.mcPestanya:target {
  display: block;
}

/* 标签按钮样式 */
.mcBoto {
  cursor: pointer;
  padding: 10px;
  margin: 5px;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  color: #7050a0;
}

/* 选中标签的样式 */
.mcBotoSel {
  font-weight: bold;
  background-color: #9070c0;
  color: white;
  border: none;
  text-decoration: none;
}

.mcBoto:hover {
  background-color: #d0b0ff;
  text-decoration: none;
}

/* 内容容器样式 */
.mcContingut {
  margin-top: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  background-color: #fff;
}