Is there a way to customize the appearance of a dialog box using CSS?
I've been struggling with my attempts so far...
<div data-role="dialog" id="confirm-clear" class="dialog-custom" >
<div data-role="content" >
<p>Some text.</p>
<p><a href="#" data-role="button" data-inline="true">Yes</a><a href="#" data-role="button" data-inline="true" data-rel="back">No</a></p>
</div>
</div>
UPDATE: I've also tried adjusting the CSS:
.ui-dialog.dialog-custom {
background: repeat scroll 0 0 rgba(0,0,0,.5);
height:200px; /* but it doesn't seem to have any effect */
}