Sha256: d88f6b43cfcb4f78f614948ac78eb9dcd56a2db8e49b0899835b0926b6846ba5
Contents?: true
Size: 911 Bytes
Versions: 1
Compression:
Stored size: 911 Bytes
Contents
/* CSS truncate */ /* css-truncate will shorten text with an ellipsis. */ /* css-truncate-overflow will shorten text with an ellipsis when overflowing */ .css-truncate.css-truncate-overflow, .css-truncate .css-truncate-overflow, .css-truncate.css-truncate-target, .css-truncate .css-truncate-target { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } /* css-truncate-target will shorten text with an ellipsis and a max width */ .css-truncate.css-truncate-target, .css-truncate .css-truncate-target { display: inline-block; max-width: 125px; vertical-align: top; } .css-truncate.expandable.zeroclipboard-is-hover .css-truncate-target, .css-truncate.expandable.zeroclipboard-is-hover.css-truncate-target, .css-truncate.expandable:hover .css-truncate-target, .css-truncate.expandable.css-truncate-target:hover { max-width: 10000px !important; }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
yattho_view_components-0.0.1 | app/components/yattho/truncate.css |