Sha256: b787408b987c2cd46c3661c68732110304831b5dd57ffeea8f5e6dfefcef5518
Contents?: true
Size: 669 Bytes
Versions: 170
Compression:
Stored size: 669 Bytes
Contents
@charset "UTF-8"; /// Truncates text and adds an ellipsis to represent overflow. /// /// @param {Number} $width [100%] /// Max-width for the string to respect before being truncated /// /// @example scss - Usage /// .element { /// @include ellipsis; /// } /// /// @example css - CSS Output /// .element { /// display: inline-block; /// max-width: 100%; /// overflow: hidden; /// text-overflow: ellipsis; /// white-space: nowrap; /// word-wrap: normal; /// } @mixin ellipsis($width: 100%) { display: inline-block; max-width: $width; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; word-wrap: normal; }
Version data entries
170 entries across 163 versions & 26 rubygems