I created a new jquery mobile theme (swatch? Whats the vocabulary?) named 'z'.
I am able to use it to style all sorts of things which is good.
Now I have the further requirement that buttons should have a border radius of .5em and no margin.
Currently
.ui-btn {
border-radius: 1em;
margin: .5em 0;
}
Or something like that. So I try to create
.ui-btn-z {
border-radius: .5em;
margin: 0;
}
And nothing. That never gets applied. Am I doing something wrong?? Are themes not applicable to all selectors? If so, is there a list somewhere of all the selectors that can be modified via the theme mechanism. Also, what is the general advice for someone in my situation?