jQuery UI Dialog - missing close icon

前端 未结 17 2213
礼貌的吻别
礼貌的吻别 2020-11-28 19:15

I\'m using a custom jQuery 1.10.3 theme. I downloaded every straight from the theme roller and I have intentionally not changed anything.

I created a dialog box and I

17条回答
  •  鱼传尺愫
    2020-11-28 19:43

    Even loading bootstrap after jquery-ui, I was able to fix using this:

    .ui-dialog-titlebar-close:after {
       content: 'X' !important;
       position: absolute;
       top: -2px;
       right: 3px;
    }
    

提交回复
热议问题