I'm trying to style the text label in a UIAlertView, but I can't make it work. I have a global style that makes all label text black, but the UIAlertView background is black, so I want to make labels in Alerts white. My css is this:
label
{
color: black;
}
action-sheet label
{
color: white;
}
The first rule correctly makes all label text black, but the second rule doesn't make it white, and so my UIAlertViews are unreadable. What am I doing wrong?