Question

How can I decrease the font size of the showAlertDialog title?

Was it helpful?

Solution

A (dirty) way is to overwrite the .dialog-title class of the palm css file. But this affects all alert dialogs of your app.

.dialog-title {
font-size:5px !important;

}

A better way is to use your one dialog template with:

this.controller.showDialog({
       template: 'dialogs/sample-dialog',
       assistant: new SampleDialogAssistant(this),
       wisdom: randomLorem(),
       preventCancel:true
 });

See Palm Developer Guide for more information.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top