I noticed in the jquery.ui.theme.css file the following class after removing the comments...
.ui-widget-header {
border: 1px solid #aaaaaa;
background: #cccccc;
color: #222222;
font-weight: bold;
}
Now I noticed this class name:
.ui-widget-header .ui-state-default {
border: 1px solid #d3d3d3;
background: #e6e6e6;
font-weight: normal;
color: #555555;
}
How would .ui-widget-header .ui-state-default be implemented? Would the ui-state-default override the ui-widget-header if they both are implemented?