mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-16 10:50:52 +00:00
f3c1b06ce6
Follow up to I84407fb562c288bafe02e97ba7f3366de7f61611 Change-Id: I80c2b63077d38203fcef09d473c82f5566a92467
41 lines
978 B
Plaintext
41 lines
978 B
Plaintext
@import 'mediawiki.skin.variables.less';
|
|
|
|
// Make sure label vertically aligns with icon
|
|
.cdx-button {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
.minerva-icon + span:not( :empty ) {
|
|
margin-left: 8px;
|
|
}
|
|
}
|
|
|
|
// Never reveal the labels of icon only buttons in the header,
|
|
// article content (parser-output), IP masking banner,
|
|
// or MobileFrontend overlays / drawers.
|
|
// Also applies to the slide left/right buttons in the image overlay.
|
|
.mw-temp-user-banner,
|
|
.mw-parser-output,
|
|
.overlay-header,
|
|
.drawer-container,
|
|
.slider-button,
|
|
.minerva-header {
|
|
.cdx-button.cdx-button--icon-only {
|
|
span + span {
|
|
.mixin-screen-reader-text();
|
|
}
|
|
}
|
|
}
|
|
|
|
// On desktop reveal labels of icon-only buttons.
|
|
// This applies to page actions and other icon only buttons
|
|
// that are not scoped in the rule above.
|
|
@media all and ( max-width: @width-breakpoint-desktop ) {
|
|
.cdx-button.cdx-button--icon-only {
|
|
span + span {
|
|
.mixin-screen-reader-text();
|
|
}
|
|
}
|
|
}
|