mediawiki-skins-MinervaNeue/skinStyles/mediawiki.rcfilters.filters.ui.less
Bartosz Dziewoński db750381b1 Move overrides for rcfilters font-size to a single place
Additionally, apply the same to .mw-rcfilters-ui-overlay, which only
accidentally had the same font-size defined in MediaWiki until
I672fdcebbdc586765de2c10f9a9a21796db57cc5.

Also change .rcfilters-container to .mw-rcfilters-container, since
the former class is deprecated.

Change-Id: I221f6c2d637c7d2a843bfc4a2f7cd9877e2a5b12
2019-09-05 21:36:47 +02:00

17 lines
525 B
Plaintext

@import '../minerva.less/minerva.variables.less';
// decrease the font-size of the advanced filters module T229360
.mw-rcfilters-container,
.mw-rcfilters-ui-overlay {
font-size: @taglineFontSize;
}
.mw-rcfilters-ui-overlay {
// T231049: Override OOUI's text input font-size of `inherit` so that we can
// make the font-size compute to `16px` to prevent iOS input text zoom on focus.
// Otherwise it computes to `14px` due to the rule above.
.oo-ui-textInputWidget .oo-ui-inputWidget-input {
font-size: initial;
}
}