{% 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 %}
// Easily usable on <ul>, <ol>, or <div>.
.list-group {
+ @if $enable-flex {
+ display: flex;
+ flex-direction: column;
+ }
+
// No need to set list-style: none; since .list-group-item is block level
padding-left: 0; // reset padding because ul and ol
margin-bottom: 0;
// Use on `li`s or `div`s within the `.list-group` parent.
.list-group-item {
+ @if $enable-flex {
+ display: flex;
+ flex-flow: row wrap;
+ align-items: center;
+ } @else {
+ display: block;
+ }
position: relative;
- display: block;
padding: .75rem 1.25rem;
// Place the border on the list items and negative margin up for better styling
margin-bottom: -$list-group-border-width;