Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <otto@github.com>2014-02-07 13:16:34 +0400
committerMark Otto <otto@github.com>2014-02-07 13:16:34 +0400
commit3b4b9a7fe58082cde1545167e511a4acc6d5a0fb (patch)
tree248aa4a28c235de77e024b6c6329a42de5353ce5 /docs/components.html
parentebd132ce68b79a95daf6ef91225304e9656cd4a4 (diff)
Fixes #12614: Add progress bar example with visible label
Diffstat (limited to 'docs/components.html')
-rw-r--r--docs/components.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/docs/components.html b/docs/components.html
index 264e9c7630..45c7d2e4b9 100644
--- a/docs/components.html
+++ b/docs/components.html
@@ -2263,6 +2263,23 @@ body { padding-bottom: 70px; }
</div>
{% endhighlight %}
+ <h3 id="progress-label">With label</h3>
+ <p>Remove the <code>.sr-only</code> class from within the progress bar to show a visible percentage. For low percentages, consider adding a <code>min-width</code> to ensure the label's text is fully visible.</p>
+ <div class="bs-example">
+ <div class="progress">
+ <div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%;">
+ 60%
+ </div>
+ </div>
+ </div>
+{% highlight html %}
+<div class="progress">
+ <div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%;">
+ 60% Complete
+ </div>
+</div>
+{% endhighlight %}
+
<h3 id="progress-alternatives">Contextual alternatives</h3>
<p>Progress bars use some of the same button and alert classes for consistent styles.</p>
<div class="bs-example">