From ac48bbe081be4c9df28dbf0257a63379f23e8144 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Thu, 14 May 2020 10:48:46 -0700 Subject: [PATCH] Simplify list-group borders in cards (#30808) --- scss/_card.scss | 13 +++++++------ site/docs/4.5/components/card.md | 14 ++++++++++++++ 2 files changed, 21 insertions(+), 6 deletions(-) diff --git a/scss/_card.scss b/scss/_card.scss index fabe9f367602..5ec2bcbeaf20 100644 --- a/scss/_card.scss +++ b/scss/_card.scss @@ -33,6 +33,13 @@ @include border-bottom-radius($card-inner-border-radius); } } + + // Due to specificity of the above selector (`.card > .list-group`), we must + // use a child selector here to prevent double borders. + > .card-header + .list-group, + > .list-group + .card-footer { + border-top: 0; + } } .card-body { @@ -83,12 +90,6 @@ &:first-child { @include border-radius($card-inner-border-radius $card-inner-border-radius 0 0); } - - + .list-group { - .list-group-item:first-child { - border-top: 0; - } - } } .card-footer { diff --git a/site/docs/4.5/components/card.md b/site/docs/4.5/components/card.md index b234eeaa5aa2..18e1c0fabb4c 100644 --- a/site/docs/4.5/components/card.md +++ b/site/docs/4.5/components/card.md @@ -107,6 +107,20 @@ Create lists of content in a card with a flush list group. {% endcapture %} {% include example.html content=example %} +{% capture example %} +
+ + +
+{% endcapture %} +{% include example.html content=example %} + ### Kitchen sink Mix and match multiple content types to create the card you need, or throw everything in there. Shown below are image styles, blocks, text styles, and a list group—all wrapped in a fixed-width card.