我试图material-ui-time-picker为 material-ui 更改timeInput ( )时钟的颜色,但它没有改变。
我的代码是:
<TimeInput
style ={heure}
mode='24h'
value={heureDebut}
onChange={this.handleheureDChange}
autoOk={true}
cancelLabel=""
okLabel=""
placeholder=""
disableUnderline={true}
endAdornment={
<InputAdornment position="end" style={{opacity:'0.4', marginLeft:'92px'}}>
<IconButton><i style={{fontSize:'18px'}} className="zmdi zmdi-alarm" /></IconButton>
</InputAdornment>
}
/>
Run Code Online (Sandbox Code Playgroud)
当我运行它时,我得到:
但我希望蓝色将更改为 #0E6EB8
我怎样才能改变它?
我在定制datepicker 弹出对话框时遇到问题(例如更改标题的颜色).我不能通过textFieldStyle的textField属性样式来设置样式.它没有任何类或ID.
我该怎么做?