I'm facing an issue with a Flex Spark Button
where I changed the background to a dark color by using
s|Button {
color: #66ffff;
chromeColor: #333333;
}
The problem occurs when the button is disabled, as it becomes very difficult to read due to the similarity in text and background color. I attempted to set a lighter color for the disabled state like this:
s|Button:disabled {
color: #ffffff;
}
However, the disabled text does not appear in the specified #ffffff
color. Instead, it seems to be a blend of the text and background colors. Is there any way to override this behavior and precisely define the text color for the disabled state?