2020-06-12 06:03:05 +00:00
|
|
|
// Hide RSS icon
|
|
|
|
a.feedlink {
|
|
|
|
background: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
// CSS checkbox hack
|
2022-05-10 00:23:42 +00:00
|
|
|
// TODO: See what MW core offer and maybe we can take it off
|
2020-06-12 06:03:05 +00:00
|
|
|
.mw-checkbox-hack {
|
2021-01-16 00:56:59 +00:00
|
|
|
&-checkbox {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-button {
|
2022-05-10 00:23:42 +00:00
|
|
|
cursor: pointer;
|
|
|
|
|
2022-11-03 22:30:41 +00:00
|
|
|
// Icons have to use span inside label elements
|
|
|
|
> span:not( .citizen-ui-icon ) {
|
2022-05-10 16:55:20 +00:00
|
|
|
.mixin-screen-reader-text;
|
2022-05-10 00:23:42 +00:00
|
|
|
}
|
2021-01-16 00:56:59 +00:00
|
|
|
}
|
2020-06-12 06:03:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.screen-reader-text {
|
2022-05-10 16:55:20 +00:00
|
|
|
.mixin-screen-reader-text;
|
2020-06-12 06:03:29 +00:00
|
|
|
}
|
2020-07-28 21:47:24 +00:00
|
|
|
|
2022-06-02 16:13:48 +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: 0.875rem;
|
|
|
|
}
|