2019-08-08 20:01:03 +00:00
|
|
|
@import '../../minerva.less/minerva.variables.less';
|
2019-08-01 20:35:10 +00:00
|
|
|
|
|
|
|
// todo: use .menu (or make a new BEM class). At time of writing, this would require additional
|
|
|
|
// changes to have sufficient specificity.
|
2019-11-26 05:02:40 +00:00
|
|
|
// stylelint-disable selector-max-id
|
2019-08-01 20:35:10 +00:00
|
|
|
#mw-mf-page-left {
|
|
|
|
ul {
|
2019-11-26 05:02:40 +00:00
|
|
|
// This is, like, the area for the disclaimer.
|
2019-08-01 20:35:10 +00:00
|
|
|
&.hlist {
|
2021-11-04 13:07:58 +00:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
2019-08-01 20:35:10 +00:00
|
|
|
li {
|
|
|
|
background-color: transparent;
|
|
|
|
border: 0;
|
|
|
|
margin: 0;
|
|
|
|
font-size: 0.75em; // equals `12px` at base `font-size: 16px`
|
|
|
|
|
|
|
|
// T173507
|
2023-03-31 19:50:36 +00:00
|
|
|
&::after {
|
2019-08-01 20:35:10 +00:00
|
|
|
content: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
2024-02-01 17:33:08 +00:00
|
|
|
color: var( --color-progressive );
|
2019-10-24 19:44:02 +00:00
|
|
|
padding: 0.7em 12px; // equals `8.4px` via 0.75em assuming 16px base
|
2019-08-01 20:35:10 +00:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: transparent;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
2021-09-02 21:10:46 +00:00
|
|
|
|
|
|
|
span {
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
2019-08-01 20:35:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-11-26 05:02:40 +00:00
|
|
|
// stylelint-enable selector-max-id
|