mediawiki-extensions-Echo/modules/echo.mixins.less
Stephane Bisson 779b7030d9 Truncate usernames, titles and excerpts in notifications
Bug: T121822
Change-Id: Ia0a52926133ab7e04d7d9c2a095ef8f9d0871a49
2016-01-29 07:04:23 -05:00

13 lines
201 B
Plaintext

.mw-echo-ui-mixin-hover-opacity() {
opacity: @opacity-low;
&:hover {
opacity: 1;
}
}
.mw-echo-ui-mixin-one-line-truncated() {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}