我有一个文本框,似乎让我们的用户感到困惑,因为他们试图编辑它并且它是不可磨灭的。所以我改变了背景颜色并移除了边框,基本上让它看起来像屏幕上的文本。
下面你可以看到我的有焦点和没有焦点的截图,以及定义盒子的 HTML 和设置它的样式的 LESS。
我的问题是如何在失焦时摆脱微弱的蓝色边框并在对焦时发光?
HTML:
<input class="span1 bg-light-blue" type="text" name="hand_unit_id" id="hand_unit_id" readonly="TRUE" />
较少的:
#hand_unit_id {
border: none ! important;
}
#hand_unit_id:focus {
border: none ! important;
box-shadow: none ! important;
outline: none ! important;
}