I have an external CSS file which defines the style for the Button tag.
Button {fontSize 11; blah...}
I'm trying to override this style for the buttons of a ToggleButtonBar:
<mx:ToggleButtonBar dataProvider="{pm.portalNavigation}" fontSize="16" />
Unfortunately, this doesn't seem to work. The fontSize stays at 11. How can I override the external CSS to resize the buttons in my ButtonBar?
Thanks!