aboutsummaryrefslogtreecommitdiff
path: root/docs/components
diff options
context:
space:
mode:
authorKevin Ross <[email protected]>2016-01-20 16:39:43 -0600
committerKevin Ross <[email protected]>2016-01-20 16:39:43 -0600
commit70c26867976e5b4857b581a910623324b108ce64 (patch)
treec0c2846eb8dbc03f312bbaf002984a1f3373d462 /docs/components
parenta38e8a640eda6c764a55ef5a4c304f91a8c7cdbb (diff)
downloadbootstrap-70c26867976e5b4857b581a910623324b108ce64.tar.xz
bootstrap-70c26867976e5b4857b581a910623324b108ce64.zip
Resolves #18978 - flexbox list-group implementation. Requires the pull-right and pull-left flex change from PR #18976
Diffstat (limited to 'docs/components')
-rw-r--r--docs/components/list-group.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/components/list-group.md b/docs/components/list-group.md
index 0d3254984..3e4ec9a02 100644
--- a/docs/components/list-group.md
+++ b/docs/components/list-group.md
@@ -31,16 +31,16 @@ Add labels to any list group item to show unread counts, activity, etc.
{% example html %}
<ul class="list-group">
<li class="list-group-item">
- <span class="label label-default label-pill pull-xs-right">14</span>
Cras justo odio
+ <span class="label label-default label-pill pull-right">14</span>
</li>
<li class="list-group-item">
- <span class="label label-default label-pill pull-xs-right">2</span>
Dapibus ac facilisis in
+ <span class="label label-default label-pill pull-right">2</span>
</li>
<li class="list-group-item">
- <span class="label label-default label-pill pull-xs-right">1</span>
Morbi leo risus
+ <span class="label label-default label-pill pull-right">1</span>
</li>
</ul>
{% endexample %}