From a55374f1e917eb9fa2241ebdeb5cf9f7ae4bb0e2 Mon Sep 17 00:00:00 2001 From: Kevin Paxman Date: Wed, 7 Sep 2022 15:10:21 -0400 Subject: [PATCH] ISTWCMS-5748: support bold and italics inside facts and figures captions Since F&F captions are already in italics, italicizing within one "de-italicizes". --- .../04-components/facts-and-figures/_facts-and-figures.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/source/_patterns/04-components/facts-and-figures/_facts-and-figures.scss b/source/_patterns/04-components/facts-and-figures/_facts-and-figures.scss index b21805d3..01bd414c 100644 --- a/source/_patterns/04-components/facts-and-figures/_facts-and-figures.scss +++ b/source/_patterns/04-components/facts-and-figures/_facts-and-figures.scss @@ -580,6 +580,12 @@ are the same height. */ font-size:rem(gesso-font-size(-1)); line-height: 1.2; } + em, i { + font-style: normal; + } + strong, b { + font-weight: bold; + } } } &--no-carousel{ -- GitLab