I have this code to show a dialog. \[code\]$("#duplicateDialog").dialog({ autoOpen: false, modal: true, resizable: false, draggable: false, buttons: { "Cancel": function() { $(this).dialog("close"); }, "OK": function() { $(this).dialog("close"); } }});$("#duplicateDialog").dialog("open");\[/code\]The problem is the parent layout already changed the button's styles.\[code\]button { height: 22px!important; padding: 0 2px!important; }\[/code\]Now I'd like to remove the "height" and "padding" above in child layout. How to do it?Note: The child layout \[code\]extends\[/code\] from another layout which includes the above button style.