打开/关闭菜单
打开/关闭外观设置菜单
打开/关闭个人菜单
未登录
未登录用户的IP地址会在进行任意编辑后公开展示。

目前wiki关闭了自行注册账号的功能,如需注册账号,请查阅Help:注册账号

模板:HiddenText/styles.css:修订间差异

来自RIA | Wiki
Aunst留言 | 贡献
同步链接颜色动画时间
Aunst留言 | 贡献
无编辑摘要
 
第1行: 第1行:
.template-hiddentext {
.template-hiddentext {
   background-color: rgb(0, 0, 0);
   background-color: currentColor;
  color: rgb(0, 0, 0);
   transition: background 0.2s;
   transition: background 0.2s;
}
}
第9行: 第8行:


.template-hiddentext a { /* 链接, 似乎没啥意义 */
.template-hiddentext a { /* 链接, 似乎没啥意义 */
   color: rgb(16, 16, 32);
   color: inherit;
   transition: color 0.2s;
   transition: color 0.2s;
}
.template-hiddentext:hover a { /* 链接, 似乎没啥意义 */
  color: #0645ad;
}
}

2024年10月12日 (六) 12:58的最新版本

.template-hiddentext {
  background-color: currentColor;
  transition: background 0.2s;
}
.template-hiddentext:hover { /* 鼠标移动/触摸元素时使背景变透明 */
  background-color: transparent;
}

.template-hiddentext a { /* 链接, 似乎没啥意义 */
  color: inherit;
  transition: color 0.2s;
}