aboutsummaryrefslogtreecommitdiff
path: root/docs/components
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2016-12-23 13:31:09 -0800
committerMark Otto <[email protected]>2016-12-24 14:21:04 -0800
commit9d13fd3fe3d1a4578dde8b2cf0a8c74b1e41405b (patch)
tree0e8eb0bedef358beeaf007ad025bd9c0f7a959fd /docs/components
parent378aa6667bfe2ccc9f14cd3f767e8b24afc06bf5 (diff)
downloadbootstrap-9d13fd3fe3d1a4578dde8b2cf0a8c74b1e41405b.tar.xz
bootstrap-9d13fd3fe3d1a4578dde8b2cf0a8c74b1e41405b.zip
remove old flex utils, update docs to match
Diffstat (limited to 'docs/components')
-rw-r--r--docs/components/list-group.md8
-rw-r--r--docs/components/navbar.md2
2 files changed, 5 insertions, 5 deletions
diff --git a/docs/components/list-group.md b/docs/components/list-group.md
index 1c1384724..0e06d3a7f 100644
--- a/docs/components/list-group.md
+++ b/docs/components/list-group.md
@@ -27,19 +27,19 @@ The most basic list group is simply an unordered list with list items, and the p
## Badge
-Add badges to any list group item to show unread counts, activity, and more with the help of some utilities. Note the [`flex-items-between` utility class]({{ site.baseurl }}/layout/grid/#horizontal-alignment), the badge's placement, and the lack of a float and margin utilities on the badges.
+Add badges to any list group item to show unread counts, activity, and more with the help of some utilities. Note the [`justify-content-between` utility class]({{ site.baseurl }}/layout/grid/#horizontal-alignment), the badge's placement, and the lack of a float and margin utilities on the badges.
{% highlight html %}
<ul class="list-group">
- <li class="list-group-item flex-items-between">
+ <li class="list-group-item justify-content-between">
Cras justo odio
<span class="badge badge-default badge-pill">14</span>
</li>
- <li class="list-group-item flex-items-between">
+ <li class="list-group-item justify-content-between">
Dapibus ac facilisis in
<span class="badge badge-default badge-pill">2</span>
</li>
- <li class="list-group-item flex-items-between">
+ <li class="list-group-item justify-content-between">
Morbi leo risus
<span class="badge badge-default badge-pill">1</span>
</li>
diff --git a/docs/components/navbar.md b/docs/components/navbar.md
index 57e0bad7a..2ee4c563f 100644
--- a/docs/components/navbar.md
+++ b/docs/components/navbar.md
@@ -202,7 +202,7 @@ Place various form controls and components within a navbar with `.form-inline`.
Align the contents of your inline forms with utilities as needed.
{% example html %}
-<nav class="navbar navbar-light bg-faded flex-items-right">
+<nav class="navbar navbar-light bg-faded justify-content-end">
<form class="form-inline">
<input class="form-control mr-sm-2" type="text" placeholder="Search">
<button class="btn btn-outline-success my-2 my-sm-0" type="submit">Search</button>