summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/Bootstrap/resources/bootstrap/less/mixins/text-overflow.less
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/Bootstrap/resources/bootstrap/less/mixins/text-overflow.less')
-rw-r--r--www/wiki/extensions/Bootstrap/resources/bootstrap/less/mixins/text-overflow.less8
1 files changed, 8 insertions, 0 deletions
diff --git a/www/wiki/extensions/Bootstrap/resources/bootstrap/less/mixins/text-overflow.less b/www/wiki/extensions/Bootstrap/resources/bootstrap/less/mixins/text-overflow.less
new file mode 100644
index 00000000..c11ad2fb
--- /dev/null
+++ b/www/wiki/extensions/Bootstrap/resources/bootstrap/less/mixins/text-overflow.less
@@ -0,0 +1,8 @@
+// Text overflow
+// Requires inline-block or block for proper styling
+
+.text-overflow() {
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+}