答案 0 :(得分:0)
你好,你可以简单地改变你的CSS
.input-field input[type=text]:focus + label {
color: YOUR_GREEN_COLOR;
}
/* label underline focus color */
.input-field input[type=text]:focus {
border-bottom: 1px solid YOUR_GREEN_COLOR;
box-shadow: 0 1px 0 0 YOUR_GREEN_COLOR;
}