From: Mark Otto Date: Tue, 8 Dec 2015 07:32:31 +0000 (-0800) Subject: Merge pull request #18138 from bassjobsen/patch-12 X-Git-Tag: v4.0.0-alpha.2~22 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=886bbe9bc0f2299fb84bc37cc55c2686ca634035;p=thirdparty%2Fbootstrap.git Merge pull request #18138 from bassjobsen/patch-12 refactor blockqoutes to to avoid tag selectors & child selectors --- 886bbe9bc0f2299fb84bc37cc55c2686ca634035 diff --cc scss/_type.scss index 35780d39e9,f6fcd07b21..da286e53a7 --- a/scss/_type.scss +++ b/scss/_type.scss @@@ -153,12 -161,33 +153,13 @@@ mark text-align: right; border-right: .25rem solid $blockquote-border-color; border-left: 0; + } - // Account for citation - footer { - &::before { content: ""; } - &::after { - content: "\00A0 \2014"; // nbsp, em dash - } + .blockquote-reverse .blockquote-footer { + &::before { + content: ""; + } + &::after { + content: "\00A0 \2014"; // nbsp, em dash } } - -// -// Figures -// - -.figure { - // Ensures the caption's text aligns with the image. - display: inline-block; - - > img { - @extend .img-fluid; - margin-bottom: ($spacer-y / 2); - line-height: 1; - } -} - -.figure-caption { - font-size: 90%; - color: $gray-light; -}