.
4 |
5 | .list-group {
6 | display: flex;
7 | flex-direction: column;
8 |
9 | // No need to set list-style: none; since .list-group-item is block level
10 | padding-left: 0; // reset padding because ul and ol
11 | margin-bottom: 0;
12 | @include border-radius($list-group-border-radius);
13 | }
14 |
15 | .list-group-numbered {
16 | list-style-type: none;
17 | counter-reset: section;
18 |
19 | > li::before {
20 | // Increments only this instance of the section counter
21 | content: counters(section, ".") ". ";
22 | counter-increment: section;
23 | }
24 | }
25 |
26 |
27 | // Interactive list items
28 | //
29 | // Use anchor or button elements instead of `li`s or `div`s to create interactive
30 | // list items. Includes an extra `.active` modifier class for selected items.
31 |
32 | .list-group-item-action {
33 | width: 100%; // For `