aboutsummaryrefslogtreecommitdiff
path: root/assets/css/bootstrap/mixins/_text-overflow.scss
diff options
context:
space:
mode:
authorMaZderMind2014-10-17 16:06:42 +0200
committerMaZderMind2014-10-17 16:06:42 +0200
commit0bf0647032ff6f2d6f50b21dfe1f7e3f0837c834 (patch)
treecc94f8a1b54d5ec5e44b6c024e599ef59de9d0f5 /assets/css/bootstrap/mixins/_text-overflow.scss
parentab87cf1cf59edffde2be404251ffb1013b67fc2d (diff)
copy media.ccc.de style
Diffstat (limited to '')
-rw-r--r--assets/css/bootstrap/mixins/_text-overflow.scss8
1 files changed, 8 insertions, 0 deletions
diff --git a/assets/css/bootstrap/mixins/_text-overflow.scss b/assets/css/bootstrap/mixins/_text-overflow.scss
new file mode 100644
index 0000000..1593b25
--- /dev/null
+++ b/assets/css/bootstrap/mixins/_text-overflow.scss
@@ -0,0 +1,8 @@
+// Text overflow
+// Requires inline-block or block for proper styling
+
+@mixin text-overflow() {
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+}