From: Mark Otto Date: Sun, 5 Feb 2012 09:49:36 +0000 (-0800) Subject: add mixin for text-overflow X-Git-Tag: v2.0.1~1^2~48 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=53da88e561abf4a5802188ff1901e6915b85c18b;p=thirdparty%2Fbootstrap.git add mixin for text-overflow --- diff --git a/docs/assets/bootstrap.zip b/docs/assets/bootstrap.zip index d066288f0e..0376cba14e 100644 Binary files a/docs/assets/bootstrap.zip and b/docs/assets/bootstrap.zip differ diff --git a/less/mixins.less b/less/mixins.less index 545ccb9bad..95292a6f21 100644 --- a/less/mixins.less +++ b/less/mixins.less @@ -89,6 +89,15 @@ } } +// Text overflow +// ------------------------- +// Requires inline-block or block for proper styling +.text-overflow() { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + // FONTS