mediawiki-skins-Vector/skinStyles/ext.echo.styles.alert.less
Jon Robson fd046f3258 Use skin variables instead of local variables where possible
None of these files need access to the skin local variables. Use
skin variables instead

Change-Id: Iaf1591fdfc5487e6f05f020893864eb2097af708
2023-10-05 15:34:50 -07:00

36 lines
703 B
Plaintext

@import 'mediawiki.skin.variables.less';
/** Mixin for collapsing the Echo new messages alert */
.echo-alert-collapse() {
font-size: 12px;
position: absolute;
top: 100%;
right: 0;
}
.vector-user-links {
.vector-menu-content-list {
.mw-echo-alert {
padding: 0.2em 0.5em;
white-space: nowrap;
// Prevent alert message from pushing user links off screen
max-width: 270px;
overflow: hidden;
text-overflow: ellipsis;
}
@media ( max-width: @min-width-desktop-wide ) {
.mw-echo-alert {
.echo-alert-collapse();
}
}
}
}
// If the user link is wide, always collapse
.vector-user-links-wide .vector-menu-content-list {
.mw-echo-alert {
.echo-alert-collapse();
}
}