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

40 lines
771 B
Plaintext

// Hide RSS icon
a.feedlink {
background: none !important;
}
// CSS checkbox hack
// TODO: See what MW core offer and maybe we can take it off
.mw-checkbox-hack {
&-checkbox {
display: none;
}
&-button {
cursor: pointer;
// Icons have to use span inside label elements
> span:not( .citizen-ui-icon ) {
.mixin-screen-reader-text;
}
}
}
.screen-reader-text {
.mixin-screen-reader-text;
}
/**
* 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: 0.875rem;
}