diff options
| author | Chris Rebert <[email protected]> | 2014-02-07 09:28:08 -0800 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2014-02-07 09:28:08 -0800 |
| commit | 442043e77568c13bcb5a674d4c271bdc30714a71 (patch) | |
| tree | abb478cd40a68ae3ebdd8cebfd7b93acbc2a5db1 /docs | |
| parent | 4d7b2ddba92e47f923d22d9d7b23cb7b0a3e0bc2 (diff) | |
| parent | 6db1a3f9097c0375350ce133548de70a87572e59 (diff) | |
| download | bootstrap-442043e77568c13bcb5a674d4c271bdc30714a71.tar.xz bootstrap-442043e77568c13bcb5a674d4c271bdc30714a71.zip | |
Merge pull request #12637 from ZDroid/text-truncate-typo
Fix .text-truncate() typo
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/css.html | 4 |
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 %} |
