mediawiki-extensions-Multim.../resources/mmv/ui/mmv.ui.stripeButtons.less
Jon Robson f3f86d6081 Fixes button sizes on file page and overlay
* The file page has a button that does not match the font size of
the page. This is also the case for the overlay.
* The icons are too big on the file page. This reduces their size.

Bug: T345749
Change-Id: I4f4edc0aa7adc0c72773a939c43108019bc4295b
2023-12-13 18:34:16 +00:00

33 lines
957 B
Plaintext

@import 'mediawiki.skin.variables.less';
@import '../mmv.variables.less';
@import 'mediawiki.mixins.less';
@import '../mmv.mixins.less';
@button-vertical-padding: 20px;
@button-height: 25px;
@repo-button-width: 50px;
// The buttons need to be positioned to the bottom right corner of .mw-mmv-title-contain, and
// other text in that element must not overlap them. Their width is not known (depends on the
// translation) so we float them to the right and calculate the top margin required to make them
// full height.
.mw-mmv-stripe-button {
float: right;
&.empty {
display: none;
}
&.mw-mmv-description-page-button {
margin: 7px 10px;
}
&.mw-mmv-description-page-button .cdx-button__icon {
.cdx-mixin-css-icon( @cdx-icon-article, @param-is-button-icon: true );
}
&.mw-mmv-description-page-button.mw-mmv-repo-button-commons .cdx-button__icon {
.cdx-mixin-css-icon( @cdx-icon-logo-wikimedia-commons, @param-is-button-icon: true );
}
}