I have a page that has a lot of dialogs.
There are a particular few that I want to apply some css to.
I can like this:
.ui-dialog .ui-dialog-title
{
color:#3A6983;
}
.ui-dialog .ui-dialog-content
{
background:#eee;
color:#3A6983;
}
However this styles all the dialogs. I only want to style a particular group. How can I do that?