Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/scss
diff options
context:
space:
mode:
authorJann Westermann <github@jann.bayern>2022-02-18 02:17:37 +0300
committerGitHub <noreply@github.com>2022-02-18 02:17:37 +0300
commit546e34cf85a31a5d553c15afbeef8591d0935efc (patch)
tree4b4a2b3b1c37e97a7a8efbbd34b92a9b0b3d5e40 /scss
parentf7f450ec59fd4b7a2e73df5f0eba2dd496edf387 (diff)
Apply list group numbering to all items (#35822)
Diffstat (limited to 'scss')
-rw-r--r--scss/_list-group.scss2
1 files changed, 1 insertions, 1 deletions
diff --git a/scss/_list-group.scss b/scss/_list-group.scss
index fbc8a3d364..2c484ea236 100644
--- a/scss/_list-group.scss
+++ b/scss/_list-group.scss
@@ -16,7 +16,7 @@
list-style-type: none;
counter-reset: section;
- > li::before {
+ > .list-group-item::before {
// Increments only this instance of the section counter
content: counters(section, ".") ". ";
counter-increment: section;