Hi friends,
I am developing a project in FlashBuilder 4.6. I am trying to define
style of header with specific colors for its background and Font.
The thing which I have tried is as below but I am able to change the background
color and apply flat looks (solid Color) to the title. Please guide me how can
i do That.
.AlertTitle
{
color: #376BAD;
fontFamily: Verdana;
fontSize: 18;
fontStyle: normal;
fontWeight: bold;
}
mx|Alert
{
background-color: #E4EBF5;
background-alpha: 1;
borderStyle: solid;
borderColor: #376BAD;
borderVisible: true;
color: #0066FF;
fontFamily: Verdana;
fontSize: 12;
fontStyle: normal;
fontWeight: bold;
lineBreak: explicit;
title-style-name: "AlertTitle";
}
Thanks and warm regards
R. S. Patil