Skip to content

Commit 42ada39

Browse files
committed
Add .small support to blockquote citations.
twbs/bootstrap#11414
1 parent 48ed4d5 commit 42ada39

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

css/flat-ui.css

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -406,13 +406,15 @@ blockquote p {
406406
font-weight: normal;
407407
margin-bottom: .4em;
408408
}
409-
blockquote small {
409+
blockquote small,
410+
blockquote .small {
410411
font-size: 18px;
411412
line-height: 1.72222;
412413
font-style: italic;
413414
color: inherit;
414415
}
415-
blockquote small:before {
416+
blockquote small:before,
417+
blockquote .small:before {
416418
content: "";
417419
}
418420
blockquote.pull-right {

less/modules/type.less

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,8 @@ blockquote {
177177
font-weight: normal;
178178
margin-bottom: .4em;
179179
}
180-
small {
180+
small,
181+
.small {
181182
font-size: @font-size-base;
182183
line-height: @line-height-base;
183184
font-style: italic;

0 commit comments

Comments
 (0)