Reputation: 13415
I've got some simple dialog
$("#modal").dialog({
autoOpen: false,
height: 350,
width: 600,
modal: true,
buttons: {
Cancel: function() {
$(this).dialog("close");
}
}
});
How to change the size of text in a button - Cancel
?
Upvotes: 0
Views: 461
Reputation: 455
Edit your css like this;
#dialog .ui-button-text {
font-size: 15px; /* Or whatever smaller value works for you. */
}
Upvotes: 1