更改未输出的typeahead tt-input背景颜色tt-hint时

时间:2014-12-30 11:05:33

标签: css less typeahead.js

默认 tt-input transparent,我想在焦距为white时更改背景颜色,但是当我更改color提示不再显示,因为它被new color隐藏了。 如何改变?

1 个答案:

答案 0 :(得分:2)

background-color: transparen已设置为带有javascript的内联样式。 您应该使用!important覆盖它。

<input class="typeahead" type="text" placeholder="States of USA">你应该使用:

.typeahead.tt-input {
background-color: black !important;
}   

另见:https://github.com/twitter/typeahead.js/issues/677