aboutsummaryrefslogtreecommitdiff
path: root/docs/css.html
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2014-02-08 15:37:35 -0800
committerMark Otto <[email protected]>2014-02-08 15:37:35 -0800
commitc8315edd7397cd3b836da67d50a7c5d7eb7de90c (patch)
treea8f2a3f4e6682e540aef63dd00b6dcfb13f355ae /docs/css.html
parenta0052b5a3745737777c88409ae08585ce75b285b (diff)
parent91b76e5247ef259b8c51672ed95dbbcfd08b7aac (diff)
downloadbootstrap-c8315edd7397cd3b836da67d50a7c5d7eb7de90c.tar.xz
bootstrap-c8315edd7397cd3b836da67d50a7c5d7eb7de90c.zip
Merge branch 'master' into pr/12639
Conflicts: dist/css/bootstrap.css.map dist/css/bootstrap.min.css docs/dist/css/bootstrap.css.map docs/dist/css/bootstrap.min.css
Diffstat (limited to 'docs/css.html')
-rw-r--r--docs/css.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/css.html b/docs/css.html
index 1c2c85170..f5e6596f3 100644
--- a/docs/css.html
+++ b/docs/css.html
@@ -3240,7 +3240,7 @@ a {
<p>Easily truncate text with an ellipsis with a single mixin. <strong>Requires element to be <code>block</code> or <code>inline-block</code> level.</strong></p>
{% 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 %}