0

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

Adrian Toman
  • 11,316
  • 5
  • 48
  • 62
Aswan
  • 5,085
  • 10
  • 46
  • 70

1 Answers1

0

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.

AlexVogel
  • 10,601
  • 10
  • 61
  • 71