mediawiki-skins-Vector/resources/skins.vector.styles/components/PageTitlebar.less
bwang a48a96a73e Document button alignment edge cases
Change-Id: Ib25fa1af2d76c9cb449002deeea6900d5e501c3c
2024-01-24 12:26:39 -08:00

47 lines
1.3 KiB
Plaintext

.vector-page-titlebar {
position: relative;
display: flex;
// T335633 - Although nowrap is default, setting it explicitly to prevent layout issues with ToC & languages button.
flex-wrap: nowrap;
// Ensure language button or indicators are positioned to the right even when the title is hidden
justify-content: flex-end;
align-items: center;
&-blank {
box-shadow: none;
}
.firstHeading {
flex-grow: 1;
padding: 0;
border: 0;
}
.vector-page-titlebar-toc.ve-active {
display: none !important; /* stylelint-disable-line declaration-no-important */
}
> .cdx-button {
font-size: @font-size-base;
// 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;
}
> .cdx-button,
> .mw-portlet-lang {
&:last-child {
.cdx-mixin-button-layout-flush( 'end' );
}
}
// The language button sometimes appears as an icon only button, in which
// case we need to flush differently. See an empty user page for an example of
// where this is used.
// FIXME: This should be scoped to on desktop viewports only
// Currently the icon only language button is misaligned on smaller viewports
> .mw-portlet-lang-icon-only:last-child {
.cdx-mixin-button-layout-flush( 'end', true );
}
}