mediawiki-skins-Citizen/resources/skins.citizen.styles/Menu.less
alistair3149 969cd787d6
feat(core): use different font weight in different themes
The same font weight do not provide the same contrast in different themes.
We should be able to change the scaling
2022-11-21 17:42:26 -05:00

33 lines
486 B
Plaintext

.citizen-menu {
&__heading {
&-label {
display: block;
padding: 0.625rem 1.25rem;
margin: 0;
color: var( --color-base--subtle );
font-size: inherit;
font-weight: var( --font-weight-normal );
letter-spacing: 0.75px;
}
}
}
.mw-portlet {
// Hide selected item
.selected {
.mixin-screen-reader-text;
}
// Hide empty menu
&-empty,
&.emptyPortlet {
display: none !important;
}
}
.skin-citizen-dark {
.mw-portlet a:after {
filter: invert( 1 );
}
}