Resizing Icons in jQuery-UI

后端 未结 4 554
执念已碎
执念已碎 2020-12-05 01:58

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

4条回答
  •  再見小時候
    2020-12-05 02:56

    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.

提交回复
热议问题