I find the icons in jquery UI to be a bit small for my application. Adjusting the sizes on .ui-icon doesn\'t help of course, because the images are loaded from a single im
It is an old problem, but here is my solution (hack if you prefer):
.ui-icon-circle-close { -ms-transform: scale(2); /* IE 9 */ -webkit-transform: scale(2); /* Chrome, Safari, Opera */ transform: scale(2); }
For an icon-only button it works great.