You can force the width in the dialog as follows:
.ui-mobile .ui-dialog {
background : none !important;
width : 75% !important;
}
, , . , , , .
: http://jsfiddle.net/jasper/TTMLN/
, , - / , jQuery Mobile .
Update
:
$(document).delegate('#dialog-link', 'click', function () {
var $dialog = $('#dialog');
if (!$dialog.hasClass('ui-dialog')) {
$dialog.page();
}
$dialog.fadeIn(500);
return false;
});
dialog-link - , .
CSS :
.ui-mobile .ui-dialog {
background : none !important;
width : 75% !important;
left : 50% !important;
margin-left : -37.5% !important;
}
: http://jsfiddle.net/jasper/TTMLN/1/