更改Sencha中警报框的按钮颜色

时间:2013-06-17 04:30:18

标签: css css3 sencha-touch sencha-touch-2

如何使用Sencha Touch 2更改警告框按钮颜色?它取决于我的情况下黑色的基色。按钮看起来像标签,因为整个警报框是黑色的。任何帮助表示赞赏。

1 个答案:

答案 0 :(得分:4)

如果您使用Ext.Msg.alertExt.Msg.confirmExt.Msg.show方法,则可以应用以下样式来更改按钮颜色

.x-msgbox .x-button {
    background-image: none !important;
    background-color : red !important; // red will be the button color
}