diff options
author | Alexander Schmitz <arschmitz@gmail.com> | 2014-11-08 07:39:30 -0500 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2014-11-18 16:23:51 +0100 |
commit | 24ce1c8b24e5fc7db98a68c0b5e39aaa293cd040 (patch) | |
tree | db3522113c203ec72c34c3d1b74fd0f93f200934 /demos | |
parent | fe75984e53d27ec1291c8fcd1e2691ad3c58c1a0 (diff) | |
download | jquery-ui-24ce1c8b24e5fc7db98a68c0b5e39aaa293cd040.tar.gz jquery-ui-24ce1c8b24e5fc7db98a68c0b5e39aaa293cd040.zip |
Dialog: Updating demo style based on changes to theme and demo CSS
Fixes #10693
Closes #1385
Diffstat (limited to 'demos')
-rw-r--r-- | demos/dialog/modal-confirmation.html | 5 | ||||
-rw-r--r-- | demos/dialog/modal-form.html | 2 |
2 files changed, 4 insertions, 3 deletions
diff --git a/demos/dialog/modal-confirmation.html b/demos/dialog/modal-confirmation.html index e14027826..741f59d38 100644 --- a/demos/dialog/modal-confirmation.html +++ b/demos/dialog/modal-confirmation.html @@ -17,7 +17,8 @@ $(function() { $( "#dialog-confirm" ).dialog({ resizable: false, - height:140, + height: "auto", + width: 400, modal: true, buttons: { "Delete all items": function() { @@ -34,7 +35,7 @@ <body> <div id="dialog-confirm" title="Empty the recycle bin?"> - <p><span class="ui-icon ui-icon-alert" style="float:left; margin:0 7px 20px 0;"></span>These items will be permanently deleted and cannot be recovered. Are you sure?</p> + <p><span class="ui-icon ui-icon-alert" style="float:left; margin:12px 12px 20px 0;"></span>These items will be permanently deleted and cannot be recovered. Are you sure?</p> </div> <p>Sed vel diam id libero <a href="http://example.com">rutrum convallis</a>. Donec aliquet leo vel magna. Phasellus rhoncus faucibus ante. Etiam bibendum, enim faucibus aliquet rhoncus, arcu felis ultricies neque, sit amet auctor elit eros a lectus.</p> diff --git a/demos/dialog/modal-form.html b/demos/dialog/modal-form.html index b09f4e91e..919bb0733 100644 --- a/demos/dialog/modal-form.html +++ b/demos/dialog/modal-form.html @@ -93,7 +93,7 @@ dialog = $( "#dialog-form" ).dialog({ autoOpen: false, - height: 300, + height: 400, width: 350, modal: true, buttons: { |