Looking at the docsI see that you can apply the font-size css attribute to a description element. For the life of me I can't get the text size to change in the element but I am able to apply other styles like color to the text. Has anyone been able to change the text size of the description field?
The code below results in the default text size but does have the correct color as specified in the style element. For what it's worth I have also tried specifying the font-size value in just an integer, px, and pt values with still no success.
<document> <head> <style> .dialogAlertDescription { font-size:48px; color: rgb(100, 255, 255); } </style> </head> <descriptiveAlertTemplate> <title></title> <description class="dialogAlertDescription">${description}</description> </descriptiveAlertTemplate> </document>