diff options
| author | Mark Otto <[email protected]> | 2016-09-26 00:54:10 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2016-09-26 00:54:10 -0700 |
| commit | 3dc4b3647ce2b27b0216fe8103253ffe9633fde9 (patch) | |
| tree | ed483b5663b93e5d72d2adf0049d981babae8204 /docs/components | |
| parent | 6181cf9d5d49f12fbff8cd63418828c36e76fd7e (diff) | |
| download | bootstrap-3dc4b3647ce2b27b0216fe8103253ffe9633fde9.tar.xz bootstrap-3dc4b3647ce2b27b0216fe8103253ffe9633fde9.zip | |
Rename pull-*-{left|right} classes to .float-*-left and .float-*-right
Diffstat (limited to 'docs/components')
| -rw-r--r-- | docs/components/card.md | 4 | ||||
| -rw-r--r-- | docs/components/list-group.md | 6 | ||||
| -rw-r--r-- | docs/components/navbar.md | 8 |
3 files changed, 9 insertions, 9 deletions
diff --git a/docs/components/card.md b/docs/components/card.md index 1cf116d86..ded52118d 100644 --- a/docs/components/card.md +++ b/docs/components/card.md @@ -230,7 +230,7 @@ Use Bootstrap's nav pills or tabs within a card header. Be sure to always includ {% example html %} <div class="card text-xs-center"> <div class="card-header"> - <ul class="nav nav-tabs card-header-tabs pull-xs-left"> + <ul class="nav nav-tabs card-header-tabs float-xs-left"> <li class="nav-item"> <a class="nav-link active" href="#">Active</a> </li> @@ -253,7 +253,7 @@ Use Bootstrap's nav pills or tabs within a card header. Be sure to always includ {% example html %} <div class="card text-xs-center"> <div class="card-header"> - <ul class="nav nav-pills card-header-pills pull-xs-left"> + <ul class="nav nav-pills card-header-pills float-xs-left"> <li class="nav-item"> <a class="nav-link active" href="#">Active</a> </li> diff --git a/docs/components/list-group.md b/docs/components/list-group.md index 8b3b9cd88..47667104c 100644 --- a/docs/components/list-group.md +++ b/docs/components/list-group.md @@ -31,15 +31,15 @@ Add tags to any list group item to show unread counts, activity, etc. {% example html %} <ul class="list-group"> <li class="list-group-item"> - <span class="tag tag-default tag-pill pull-xs-right">14</span> + <span class="tag tag-default tag-pill float-xs-right">14</span> Cras justo odio </li> <li class="list-group-item"> - <span class="tag tag-default tag-pill pull-xs-right">2</span> + <span class="tag tag-default tag-pill float-xs-right">2</span> Dapibus ac facilisis in </li> <li class="list-group-item"> - <span class="tag tag-default tag-pill pull-xs-right">1</span> + <span class="tag tag-default tag-pill float-xs-right">1</span> Morbi leo risus </li> </ul> diff --git a/docs/components/navbar.md b/docs/components/navbar.md index 5c12153f3..db389ce04 100644 --- a/docs/components/navbar.md +++ b/docs/components/navbar.md @@ -47,7 +47,7 @@ Here's an example of all the sub-components included in a default, light navbar: <a class="nav-link" href="#">About</a> </li> </ul> - <form class="form-inline pull-xs-right"> + <form class="form-inline float-xs-right"> <input class="form-control" type="text" placeholder="Search"> <button class="btn btn-outline-success" type="submit">Search</button> </form> @@ -129,7 +129,7 @@ Here are some examples to show what we mean. <a class="nav-link" href="#">About</a> </li> </ul> - <form class="form-inline pull-xs-right"> + <form class="form-inline float-xs-right"> <input class="form-control" type="text" placeholder="Search"> <button class="btn btn-outline-info" type="submit">Search</button> </form> @@ -150,7 +150,7 @@ Here are some examples to show what we mean. <a class="nav-link" href="#">About</a> </li> </ul> - <form class="form-inline pull-xs-right"> + <form class="form-inline float-xs-right"> <input class="form-control" type="text" placeholder="Search"> <button class="btn btn-outline-secondary" type="submit">Search</button> </form> @@ -171,7 +171,7 @@ Here are some examples to show what we mean. <a class="nav-link" href="#">About</a> </li> </ul> - <form class="form-inline pull-xs-right"> + <form class="form-inline float-xs-right"> <input class="form-control" type="text" placeholder="Search"> <button class="btn btn-outline-primary" type="submit">Search</button> </form> |
