mediawiki-skins-Citizen/resources/skins.citizen.styles/common/hacks.less
alistair3149 afcf37d529
fix(core): 🐛 checkboxHack buttons should be focusable
So that users can use keyboard to navigate to such button.
Previously they all have a display:none property, which makes it
impossible to reach with keyboard
2023-01-25 20:20:46 -05:00

23 lines
477 B
Plaintext

// Hide RSS icon
a.feedlink {
background: none !important;
}
.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;
}