From: Zlatan Vasović Date: Fri, 7 Feb 2014 12:40:32 +0000 (+0100) Subject: Fix .text-truncate() typo X-Git-Tag: v3.1.1~14^2~22^2~3^2~2^2~7^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6db1a3f9097c0375350ce133548de70a87572e59;p=thirdparty%2Fbootstrap.git Fix .text-truncate() typo --- diff --git a/docs/css.html b/docs/css.html index 1c2c851703..f5e6596f34 100644 --- a/docs/css.html +++ b/docs/css.html @@ -3240,7 +3240,7 @@ a {

Easily truncate text with an ellipsis with a single mixin. Requires element to be block or inline-block level.

{% highlight scss %} // Mixin -.text-truncate() { +.text-overflow() { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; @@ -3250,7 +3250,7 @@ a { .branch-name { display: inline-block; max-width: 200px; - .text-truncate(); + .text-overflow(); } {% endhighlight %}