模板:HiddenText/styles.css:修订间差异
来自RIA | Wiki
更多操作
CSS |
无编辑摘要 |
||
| (未显示同一用户的2个中间版本) | |||
| 第1行: | 第1行: | ||
.template-hiddentext { | .template-hiddentext { | ||
background-color: | background-color: currentColor; | ||
transition: background 0.2s; | |||
transition: background 0. | |||
} | } | ||
.template-hiddentext:hover { /* 鼠标移动/触摸元素时使背景变透明 */ | .template-hiddentext:hover { /* 鼠标移动/触摸元素时使背景变透明 */ | ||
| 第9行: | 第8行: | ||
.template-hiddentext a { /* 链接, 似乎没啥意义 */ | .template-hiddentext a { /* 链接, 似乎没啥意义 */ | ||
color: | color: inherit; | ||
transition: color 0. | transition: color 0.2s; | ||
} | } | ||
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;
}