Icons in jQuery UI dialog title

后端 未结 5 954
一整个雨季
一整个雨季 2020-12-28 15:47

I\'m using the code below to create a jQuery dialog box. By default there is a close icon on title bar, but I want to add some of the other icons in title bar as well for di

5条回答
  •  -上瘾入骨i
    2020-12-28 16:51

    A much simpler method. In the stylesheet:

    .ui-dialog .ui-dialog-title {
      background-image: url('/icons/info.png');
      background-repeat: no-repeat;
      padding-left: 20px;
    }
    

    This is for a 16x16 image.

提交回复
热议问题