diff options
author | Scott Jehl <scott@scottjehl.com> | 2008-12-09 16:34:34 +0000 |
---|---|---|
committer | Scott Jehl <scott@scottjehl.com> | 2008-12-09 16:34:34 +0000 |
commit | a36536efd1eeaa3f34e79c591eeac8eb23a5f7e1 (patch) | |
tree | 27df1f833b3abdfecb49006ac2ac6b60f772dc51 /tests/static | |
parent | 1cecbc8cb4cb3172cecbaa5f7654d02690aa106a (diff) | |
download | jquery-ui-a36536efd1eeaa3f34e79c591eeac8eb23a5f7e1.tar.gz jquery-ui-a36536efd1eeaa3f34e79c591eeac8eb23a5f7e1.zip |
updated to remove label
css now had one selector with 2 rules :)
Diffstat (limited to 'tests/static')
-rw-r--r-- | tests/static/progressbar.html | 30 |
1 files changed, 1 insertions, 29 deletions
diff --git a/tests/static/progressbar.html b/tests/static/progressbar.html index b72e59c3e..c0b885371 100644 --- a/tests/static/progressbar.html +++ b/tests/static/progressbar.html @@ -3,44 +3,16 @@ <head> <title>jQuery UI Progressbar Static Markup Test Page</title> <link rel="stylesheet" href="../../themes/base/ui.all.css" type="text/css"> - <style type="text/css"> - h2 { margin:1.5em 0 .5em; } - </style> </head> <body style="font-size: 62.5%;"> -<!-- Flexible width: --> <div class="ui-progressbar ui-widget ui-widget-content ui-corner-all" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="13"> - <div class="ui-progressbar-label">13% Completed</div> - <div class="ui-progressbar-value ui-state-default ui-corner-left" style="width:13%;"><div class="ui-progressbar-label">13% Completed</div></div> + <div class="ui-progressbar-value ui-state-default ui-corner-left" style="width:13%;"></div> </div> -<!-- users can set a left offset in px, %, ems, whatever to move the label along the axis - -<div class="ui-progressbar ui-widget ui-widget-content ui-corner-all" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="55"> - <div class="ui-progressbar-label" style="left:350px;">55% Completed</div> - <div class="ui-progressbar-value ui-state-default ui-corner-left" style="width:55%"><div class="ui-progressbar-label" style="left:350px;">55% Completed</div></div> -</div> - -<br /><br/> - -<div class="ui-progressbar ui-widget ui-widget-content ui-corner-all" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="55"> - <div class="ui-progressbar-label" style="left:600px;">55% Completed</div> - <div class="ui-progressbar-value ui-state-default ui-corner-left" style="width:55%"><div class="ui-progressbar-label" style="left:600px;">55% Completed</div></div> -</div> - - -<h2>Fixed width (px):</h2> - -<div style="width:500px" class="ui-progressbar ui-progressbar-fixed ui-widget ui-widget-content ui-corner-all" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="78"> - <div class="ui-progressbar-label">78% Completed</div> - <div class="ui-progressbar-value ui-state-default ui-corner-left" style="width:78%"><div class="ui-progressbar-label">78% Completed</div></div> -</div> - - --> </body> </html> |