Reputation: 273
I want to change the background color of alert message box in Sencha Touch but I don’t have any idea about it. By default Sencha Touch shows the black background color of alert box but I want to custom color. So please let me know what is correct way to perform this task?
Here I'm trying to add custom class with alert dialog box but it is not working.
CSS:
.test{ Background-color: #d21c1c !important; }
Dialog code:
var dialog = Ext.Msg.alert("Custom alert box!");
dialog.getDialog().addClass('testcolor');
Upvotes: 0
Views: 4287
Reputation: 5802
Use below css classes to change MessageBox bg color and MessageBox text properties.
// To change messagebox background color
.x-msgbox
{
background-color: #fff;
}
// To change messagebox text properties
.x-msgbox-dark .x-msgbox-text {
color: #000 !important;
font-size: 14px;
font-family: Helvetica, Arial, sans-serif;
}
// To change messagebox title
.x-toolbar-dark .x-title {
color:#000 !important;
font-size: 20px !important;
font-family: Helvetica, Arial, sans-serif;
}
Hope it helps.
Thanks Gendaful
Upvotes: 1