mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
d5d5204f02
Two main reasons: our clickable state is misleading on these static elements, and our header state tends to get better contrast over content areas than our buttons do (this is subjective to the theme designer of course). Scripting should be updated to follow.
20 lines
821 B
HTML
20 lines
821 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>jQuery UI Progressbar Static Markup Test Page</title>
|
|
<link rel="stylesheet" href="../../themes/base/ui.core.css" type="text/css" />
|
|
<link rel="stylesheet" href="../../themes/base/ui.theme.css" type="text/css" title="ui-theme" />
|
|
<link rel="stylesheet" href="../../themes/base/ui.allplugins.css" type="text/css" />
|
|
<script type="text/javascript" src="../../jquery-1.2.6.js"></script>
|
|
<script type="text/javascript" src="static_helpers.js"></script>
|
|
</head>
|
|
<body style="font-size: 62.5%;">
|
|
|
|
<!-- Progressbar -->
|
|
<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-value ui-widget-header ui-corner-left" style="width:13%;"></div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|