我正在使用jQUery UI创建一些对话框,但是在移动设备中“关闭”按钮太小了。我只需要调整关闭按钮的大小。
发布于 2014-07-21 11:23:12
我找到了这个简单的解决方案,使用CSS:
<style>
.ui-dialog-titlebar-close { width: 30px !important; height: 24px !important; top: 40% !important }
</style>
这种方式会影响所有对话框,这是所需的效果。
https://stackoverflow.com/questions/24873045
复制