mediawiki-skins-MinervaNeue/resources/skins.minerva.mainMenu.styles/MainMenuFooter.less
Umherirrender 5bd834e0c7 build: Updating npm dependencies
* stylelint-config-wikimedia: 0.13.0 → 0.14.0

Run stylelint fix to fix the new stylelint rule

Change-Id: I7738ae421e84dd3171355391ebc82dd812b39ca4
2023-03-31 21:50:36 +02:00

42 lines
858 B
Plaintext

@import '../../minerva.less/minerva.variables.less';
// todo: use .menu (or make a new BEM class). At time of writing, this would require additional
// changes to have sufficient specificity.
// stylelint-disable selector-max-id
#mw-mf-page-left {
ul {
// This is, like, the area for the disclaimer.
&.hlist {
display: flex;
flex-wrap: wrap;
li {
background-color: transparent;
border: 0;
margin: 0;
font-size: 0.75em; // equals `12px` at base `font-size: 16px`
// T173507
&::after {
content: none;
}
a {
color: @colorProgressive;
padding: 0.7em 12px; // equals `8.4px` via 0.75em assuming 16px base
&:hover {
background-color: transparent;
box-shadow: none;
}
span {
font-weight: normal;
}
}
}
}
}
}
// stylelint-enable selector-max-id