2014-12-30 75 views
3

默認情況下TT-輸入transparent,我想改變它的背景顏色,當焦點是white,但是當我改變color提示不再顯示,因爲它被new color隱藏。 如何更改?當未顯示變化的預輸入TT-輸入背景顏色TT-提示

+0

給背景顏色與一些不透明一起。完整的純色將隱藏提示,因爲提示位於文本輸入的後面。 – anpsmn

+0

我試過這個選項,但背景看起來比白色更灰。 – BariBer

回答

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