When using the jquery-ui 1.8.8 Dialog widget, I noticed that the resize handle was in the wrong place. Instead of being on the bottom right of the dialog window, it was on the left of the window just above the buttons.
.ui-resizable-handle {
position: absolute;
font-size: 0.1px;
z-index: 99999;
display: block;
}
When I added it to my jquery-ui-1.8.8.custom.css file, the resize handle was on the bottom right where I expected it to be.
Please tell me, did I do something wrong in my integration of this widget, or did someone forget to add some css to the code I downloaded?