如何使用Sencha Touch 2更改警告框按钮颜色?它取决于我的情况下黑色的基色。按钮看起来像标签,因为整个警报框是黑色的。任何帮助表示赞赏。
答案 0 :(得分:4)
如果您使用Ext.Msg.alert
或Ext.Msg.confirm
或Ext.Msg.show
方法,则可以应用以下样式来更改按钮颜色
.x-msgbox .x-button {
background-image: none !important;
background-color : red !important; // red will be the button color
}