mediawiki-skins-Vector/resources/skins.vector.styles/components/PageTitlebar.less
Ed Sanders 091705df88 Switch order of "Add topic" and language dropdown
Bug: T267444
Change-Id: I09ed155b43665dd13c258e37870778a3c7ce446d
2023-03-07 16:02:36 +00:00

48 lines
1.3 KiB
Plaintext

@import '../../common/variables.less';
.vector-page-titlebar {
display: flex;
// Ensure language button or indicators are positioned to the right even when the title is hidden
justify-content: flex-end;
// Use box-shadow instead of border to allow border collapsing between titlebar and toolbar
box-shadow: 0 1px @border-color-base;
align-items: center;
&-blank {
box-shadow: none;
}
.firstHeading {
flex-grow: 1;
border: 0;
}
.vector-page-titlebar-toc.ve-active {
display: none !important; /* stylelint-disable-line declaration-no-important */
}
> .mw-ui-button {
font-size: @font-size-base;
margin-top: 2px;
// When labels have multiple words e.g. "Add topic" make sure they do not wrap onto
// new line. This can happen when editing pages with long titles. e.g. F36867314
white-space: nowrap;
// At low resolutions, the rule in core for `.mw-ui-button:not(.mw-ui-icon-element)`
// interferes with add topic and makes it overlap the language button. e.g. F36867319
&:not( .mw-ui-icon-element ) {
min-width: auto;
}
}
> .mw-ui-button,
> .mw-portlet-lang {
&:last-child {
// This number should be synced with the value in:
// https://github.com/wikimedia/mediawiki/blob/master/resources/src/mediawiki.less/mediawiki.ui/mixins.buttons.less#L33
margin-right: -12px;
}
}
}