Description Style Bug

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>

Hi I wonder if there is anyway we can link to a css file? So that we don't need to define this style over and over again

The text styles can be overridden using example below:


<description style="tv-text-style: none; font-size:36; font-weight:regular;">
Description Style Bug
 
 
Q