Move the block styling and reduced font size on `<cite>` to only
apply when it is a child of `<blockquote>`.
Fixes issue #10226
line-height: $paragraph-lineheight;
color: $blockquote-color;
}
+
+ // Citations
+ cite {
+ display: block;
+ font-size: $cite-font-size;
+
+ &:before {
+ content: $cite-pseudo-content;
+ }
+ }
}
- // Citations
+ // Inline Citations
cite {
- display: block;
- font-size: $cite-font-size;
color: $cite-color;
-
- &:before {
- content: $cite-pseudo-content;
- }
}
// Abbreviations