I have a Flex Spark Button
that I've changed the background to a dark color using
s|Button {
color: #66ffff;
chromeColor: #333333;
}
The problem is that when the button is disabled, it's very hard to read (the text color and background color are very close). I've tried setting the disabled color to something lighter
s|Button:disabled {
color: #ffffff;
}
But the disabled text's color is not #ffffff
. It's some combination of the text color and the background. Is there someway to disable this behavior (ie, specify the exact disabled state's text color)?