Commit 0da3901e authored by Zlatan Vasović's avatar Zlatan Vasović

Add missing `.small` styles and docs

parent 463343af
...@@ -871,7 +871,7 @@ base_url: "../" ...@@ -871,7 +871,7 @@ base_url: "../"
<p>Style and content changes for simple variations on a standard <code>&lt;blockquote&gt;</code>.</p> <p>Style and content changes for simple variations on a standard <code>&lt;blockquote&gt;</code>.</p>
<h4>Naming a source</h4> <h4>Naming a source</h4>
<p>Add <code>&lt;small&gt;</code> tag for identifying the source. Wrap the name of the source work in <code>&lt;cite&gt;</code>.</p> <p>Add <code>&lt;small&gt;</code> tag or <code>.small</code> class for identifying the source. Wrap the name of the source work in <code>&lt;cite&gt;</code>.</p>
<div class="bs-example"> <div class="bs-example">
<blockquote> <blockquote>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
......
...@@ -692,13 +692,15 @@ blockquote p:last-child { ...@@ -692,13 +692,15 @@ blockquote p:last-child {
margin-bottom: 0; margin-bottom: 0;
} }
blockquote small { blockquote small,
blockquote .small {
display: block; display: block;
line-height: 1.428571429; line-height: 1.428571429;
color: #999999; color: #999999;
} }
blockquote small:before { blockquote small:before,
blockquote .small:before {
content: '\2014 \00A0'; content: '\2014 \00A0';
} }
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -233,7 +233,8 @@ blockquote { ...@@ -233,7 +233,8 @@ blockquote {
p:last-child { p:last-child {
margin-bottom: 0; margin-bottom: 0;
} }
small { small,
.small {
display: block; display: block;
line-height: @line-height-base; line-height: @line-height-base;
color: @blockquote-small-color; color: @blockquote-small-color;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment