.ui-orderlist .ui-orderlist-list {
height: auto;
}
Should't it set height of list to auto? Because it does't work. In browser styles appears like
.ui-orderlist .ui-orderlist-list {
list-style-type: none;
margin: 0px;
padding: 0px;
overflow: auto;
height: 200px;
width: 200px;
}
.ui-orderlist .ui-orderlist-list {
height: auto; // this line no active
}