aboutsummaryrefslogtreecommitdiffstats
path: root/demos/dialog
diff options
context:
space:
mode:
authorRichard Worth <rdworth@gmail.com>2008-12-31 06:32:43 +0000
committerRichard Worth <rdworth@gmail.com>2008-12-31 06:32:43 +0000
commit1149c52bb4b46e7c40fd32538b6ca057931f7731 (patch)
treef16bb008a11ad90f0899afe5c44d61cf29973868 /demos/dialog
parent016eb2487a0c781d35a75131134db97453f8ace7 (diff)
downloadjquery-ui-1149c52bb4b46e7c40fd32538b6ca057931f7731.tar.gz
jquery-ui-1149c52bb4b46e7c40fd32538b6ca057931f7731.zip
demos/dialog/modal_form.html: markup tweaks
Diffstat (limited to 'demos/dialog')
-rw-r--r--demos/dialog/modal_form.html27
1 files changed, 11 insertions, 16 deletions
diff --git a/demos/dialog/modal_form.html b/demos/dialog/modal_form.html
index 494fd3a7e..0d967a587 100644
--- a/demos/dialog/modal_form.html
+++ b/demos/dialog/modal_form.html
@@ -9,6 +9,11 @@
<script type="text/javascript" src="../../ui/ui.resizable.js"></script>
<script type="text/javascript" src="../../ui/ui.dialog.js"></script>
<link type="text/css" href="../demos.css" rel="stylesheet" />
+ <style type="text/css">
+ label, input { display:block; }
+ input.text { margin-bottom:12px; width:95%; }
+ fieldset { padding:0; border:0; margin-top:25px; }
+ </style>
<script type="text/javascript">
$(function() {
$("#dialog").dialog({
@@ -29,20 +34,9 @@
});
});
</script>
-
- <!-- Styles for this demo page -->
- <style type="text/css" media="screen">
- label, input { display:block; }
- input.text { margin-bottom:12px; width:95%; }
- fieldset { padding:0; border:0; margin-top:25px; }
- </style>
-
</head>
<body>
-
-
-
<div class="demo">
<div id="dialog" title="Create new user">
@@ -60,8 +54,8 @@
</form>
</div>
- <!-- Sample page content to illustrate the layering of the dialog -->
- <div class="hiddenInViewSource" style="padding:20px;">
+<!-- Sample page content to illustrate the layering of the dialog -->
+<div class="hiddenInViewSource" style="padding:20px;">
<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>
<form>
<input value="text input" /><br />
@@ -77,11 +71,12 @@
</div><!-- End demo -->
-
-
<div class="demo-description">
-<p>This is an example of how a dialog can be used for data entry by making it larger and embedding a form into the content area. A multi-step wizard could be created by extending this with a step navigation and forward and back buttons.</p>
+<p>
+This is an example of how a dialog can be used for data entry by making it larger and embedding a form into the content area.
+A multi-step wizard could be created by extending this with a step navigation and forward and back buttons.
+</p>
</div><!-- End demo-description -->