Originally posted by Unknown
It looks like their buttons are styled to be quite large. I added some javascript at the top to give the buttons more space in the panel:
<script>
function pageLoad() {
$("div[id$='pnlParticipantActions'] .row > .col-md-9").addClass('col-md-7').removeClass('col-md-9');
$("div[id$='pnlParticipantActions'] .row > .col-md-3").addClass('col-md-5').removeClass('col-md-3');
}
</script>
