mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-24 06:13:54 +00:00
db750381b1
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
17 lines
525 B
Plaintext
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;
|
|
}
|
|
}
|