I am facing an issue where I cannot see any visual changes when attempting to modify the class #dialog .ui-dialog-titlebar
.
$(function() {
$("#dialog").dialog();
});
#dialog .ui-dialog-titlebar {
background-image: none;
background-color: red;
}
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="http://code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<div id="dialog" title="Dialog"></div>