0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-02-21 18:54:30 +01:00
- revert back to display block for list items to prevent unwanted behaviors
- fixes a handful of other linked issues (see main thread)
- updates docs to include more utilities for the one example
This commit is contained in:
Mark Otto 2017-03-18 16:30:12 -07:00
parent f61fb70eb1
commit ec8c251928
2 changed files with 5 additions and 7 deletions

View File

@ -116,19 +116,19 @@ Contextual classes also work with `.list-group-item-action`. Note the addition o
## With badges ## With 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) and the badge's placement. Add badges to any list group item to show unread counts, activity, and more with the help of some [utilities]({{ site.baseurl }}/utilities/flexbox/).
{% example html %} {% example html %}
<ul class="list-group"> <ul class="list-group">
<li class="list-group-item justify-content-between"> <li class="list-group-item d-flex justify-content-between align-items-center">
Cras justo odio Cras justo odio
<span class="badge badge-default badge-pill">14</span> <span class="badge badge-default badge-pill">14</span>
</li> </li>
<li class="list-group-item justify-content-between"> <li class="list-group-item d-flex justify-content-between align-items-center">
Dapibus ac facilisis in Dapibus ac facilisis in
<span class="badge badge-default badge-pill">2</span> <span class="badge badge-default badge-pill">2</span>
</li> </li>
<li class="list-group-item justify-content-between"> <li class="list-group-item d-flex justify-content-between align-items-center">
Morbi leo risus Morbi leo risus
<span class="badge badge-default badge-pill">1</span> <span class="badge badge-default badge-pill">1</span>
</li> </li>

View File

@ -42,9 +42,7 @@
.list-group-item { .list-group-item {
position: relative; position: relative;
display: flex; display: block;
flex-flow: row wrap;
align-items: center;
padding: $list-group-item-padding-y $list-group-item-padding-x; padding: $list-group-item-padding-y $list-group-item-padding-x;
// Place the border on the list items and negative margin up for better styling // Place the border on the list items and negative margin up for better styling
margin-bottom: -$list-group-border-width; margin-bottom: -$list-group-border-width;