mediawiki-skins-Citizen/resources/skins.citizen.styles/common/hacks.less

28 lines
566 B
Plaintext
Raw Normal View History

2020-06-12 06:03:05 +00:00
// Hide RSS icon
a.feedlink {
background: none !important;
}
.screen-reader-text {
.sr-only;
2020-06-12 06:03:29 +00:00
}
2020-07-28 21:47:24 +00:00
/**
* OOUI has some layout issues when the font size is not
* same as what is being used in Vector. This is a dirty
* hack to ensure that the UI is displayed correctly.
*
* This is put here because the OOUI skinstyle is lazyloaded,
* causing significant layout shift
*
* Revisit this when T254055 is resolved
*/
.oo-ui-widget {
font-size: var( --font-size-small );
}
// Replace 50em (50 * 0.875rem) with 50rem
.oo-ui-textInputWidget {
max-width: 50rem;
}