Sha256: 8e015fe9e0c925764a1556b152f1779a8113ff1a199c9d0e91bad9813ea3bc55
Contents?: true
Size: 743 Bytes
Versions: 42
Compression:
Stored size: 743 Bytes
Contents
// Truncate // // css-truncate will shorten text with an ellipsis. .css-truncate { // Truncate double target // // css-truncate will shorten text with an ellipsis. The maximum width // of the truncated text can be changed by overriding the max-width // of the .css-truncate-target &.css-truncate-target, .css-truncate-target { display: inline-block; max-width: 125px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; vertical-align: top; } &.expandable.zeroclipboard-is-hover .css-truncate-target, &.expandable.zeroclipboard-is-hover.css-truncate-target, &.expandable:hover .css-truncate-target, &.expandable:hover.css-truncate-target { max-width: 10000px !important; } }
Version data entries
42 entries across 42 versions & 1 rubygems