Hi All,
We've got a dialog and the default size of the buttons is smaller than we'd like. They look like this:
I was looking at the CSS, and I was able to make the buttons larger with this CSS:
div.ui-dialog-buttonpane{
font-size: 175%;
}
However, the container for the buttons doesn't get any larger, and as a result, the buttons are clipped on the bottom--you can't see the whole button. Here's what it looks like:
I tried explicitly setting the height, like this, but even at 400px there's no change.
div.ui-dialog-buttonpane{
font-size: 175%;
height: 400px;
}
So, how can I make the buttons bigger and have the container resize so that you can see the entire button?
Thanks!
-Josh