diff options
| author | Mark Otto <[email protected]> | 2014-06-19 18:14:56 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-06-19 18:14:56 -0700 |
| commit | 8bd4163ad463a0f208a55a8f64ba7fc6cb826282 (patch) | |
| tree | ba4ece1af1ab6cca0c2b4347f96d42c1b47d6522 /docs/examples | |
| parent | 856bc8694c7eed0bd5499daf733754da7c6ce977 (diff) | |
| download | bootstrap-8bd4163ad463a0f208a55a8f64ba7fc6cb826282.tar.xz bootstrap-8bd4163ad463a0f208a55a8f64ba7fc6cb826282.zip | |
fixes #13881: restore existing striped progress bar behavior with theme styles
Diffstat (limited to 'docs/examples')
| -rw-r--r-- | docs/examples/theme/index.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/examples/theme/index.html b/docs/examples/theme/index.html index 2916b2f3a..c347d244e 100644 --- a/docs/examples/theme/index.html +++ b/docs/examples/theme/index.html @@ -485,6 +485,14 @@ <div class="progress"> <div class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 80%"><span class="sr-only">80% Complete (danger)</span></div> </div> + + <div class="progress progress-striped"> + <div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%"><span class="sr-only">100% Complete</span></div> + </div> + <div class="progress"> + <div class="progress-bar progress-bar-striped" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%"><span class="sr-only">100% Complete</span></div> + </div> + <div class="progress"> <div class="progress-bar progress-bar-success" style="width: 35%"><span class="sr-only">35% Complete (success)</span></div> <div class="progress-bar progress-bar-warning" style="width: 20%"><span class="sr-only">20% Complete (warning)</span></div> |
