aboutsummaryrefslogtreecommitdiff
path: root/css.html
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-12-19 19:40:08 -0800
committerMark Otto <[email protected]>2013-12-19 19:40:08 -0800
commit2854c5c3fb65b709fbf32d05faccf7a294626cca (patch)
tree4cb9ef9d2b7f54cf0721a32a6a87ca8ee5414b2d /css.html
parent81b1e6801faf71705a06e8e039a98b79b6c478c5 (diff)
downloadbootstrap-2854c5c3fb65b709fbf32d05faccf7a294626cca.tar.xz
bootstrap-2854c5c3fb65b709fbf32d05faccf7a294626cca.zip
Fixes #11952: Refactor blockquote styles
* Deprecate .pull-right class for .blockquote-reverse * Move font-size change to the parent, blockquote, instead of setting on the p element to allow more flexible content
Diffstat (limited to 'css.html')
-rw-r--r--css.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/css.html b/css.html
index 6119b2e04..97c0ff468 100644
--- a/css.html
+++ b/css.html
@@ -872,15 +872,15 @@ base_url: "../"
{% endhighlight %}
<h4>Alternate displays</h4>
- <p>Use <code>.pull-right</code> for a floated, right-aligned blockquote.</p>
+ <p>Add <code>.blockquote-reverse</code> for blockquote with right-aligned content.</p>
<div class="bs-example" style="overflow: hidden;">
- <blockquote class="pull-right">
+ <blockquote class="blockquote-reverse">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
<footer>Someone famous in <cite title="Source Title">Source Title</cite></footer>
</blockquote>
</div>
{% highlight html %}
-<blockquote class="pull-right">
+<blockquote class="blockquote-reverse">
...
</blockquote>
{% endhighlight %}