我尝试创建一个redmine CSS only 主题,隐藏属性部分,仅在鼠标单击或触摸时显示。
我添加了在台式机上运行良好的伪类 :active
,但在 Android Chrome 上,它只激活了几分之一秒,然后又失去了这个属性(因为它开始选择复制和粘贴)
.details > .attributes {
height:20px;
overflow:hidden;
display: block;
cursor:pointer;
}
.details > .attributes:hover {
background-color:#ddd;
}
.details > .attributes:active, .details > .attributes:focus {
height:auto;
}
(在这里我也添加了:focus
属性,但这并没有改变任何东西)
如何在不编辑 html 代码且不使用 javascript 的情况下绕过它?