mediawiki-skins-Vector/skinStyles/ext.echo.styles.alert.less
Jon Robson 332678a991 Fixes orange bar of doom (echo alert)
* Updates CSS selector for the Echo alert
* Prevents conversion of OBOD to a button via a generic
array of "exception" names.

Bug: T350195
Change-Id: Id9b2763fe4d893fa4b4ce1e740dba59e6d887436
2023-11-13 11:17:51 -08:00

33 lines
702 B
Plaintext

@import 'mediawiki.skin.variables.less';
@import '../resources/skins.vector.styles/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 {
.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: @max-width-breakpoint-desktop ) {
.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();
}
}