I am trying to override the default panel style on Flex 3.
And the following doesn’t work.
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
layout="absolute" minWidth="955" minHeight="600"
creationComplete="init();">
<mx:Style>
.panel {
borderAlpha: 1;
borderColor: white;
}
</mx:Style>
I got the style properties via here:
http://www.loscavio.com/downloads/blog/flex3_css_list/flex3_css_list.htm#Panel
Please kindly help. Thank you.
Your identifier is wrong, try using ‘Panel’ instead of ‘.panel’.