mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-12 09:26:05 +00:00
5ff3189146
Use inline block and width to force truncation of the flow topics Bug: 69563 Change-Id: I62fc95a58dbdf0f21e36e67e1941e4e35585e2d2
21 lines
532 B
Plaintext
21 lines
532 B
Plaintext
// Begin Mixins
|
|
|
|
// FIXME: Use a core mixin.
|
|
// truncated-text
|
|
//
|
|
// Add the truncated-text mixin to any element where long text is
|
|
// expected, and truncating improves the UX.
|
|
// Can be used with .truncated-text(true) to undo text truncation.
|
|
//
|
|
// Use in Flow, Echo and MobileFrontend extensions.
|
|
.truncated-text(@undo: false) when not (@undo) {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
.truncated-text(@undo: false) when (@undo) {
|
|
white-space: inherit;
|
|
overflow: inherit;
|
|
text-overflow: inherit;
|
|
}
|