我正在尝试将inputfields的边框样式从材料设计的蓝色边框颜色更改为绿色边框颜色,但是以下CSS似乎无法正常工作:
.app-TextArea.focus .app-TextArea-Input, .app-TextBox.focus .app-TextBox-Input {
border-bottom-color: green;
}
也许有人可以帮助我。
最佳答案
这个CSS variant应该会骗人的
.focus.app-TextBox--Green::after {
border-bottom-color: green;
}
关于css - 如何在AppMaker中更改文本框边框样式,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/49474886/