mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-12-12 14:25:15 +00:00
6f98cc6460
Remove direct usage of CSS variables in Minerva, and replace them with codex design tokens again. Document this decision in the original ADR Note: there are still a small number of CSS variables in use, including most notably the --color-link-red fix, which broke when I removed it, but this change takes care of all the ones that could be easily replaced Bug: T363743 Change-Id: I7d3a9dceb908167078987de1733774c8bd4bea2f
48 lines
939 B
Plaintext
48 lines
939 B
Plaintext
@import '../../../minerva.less/minerva.variables.less';
|
|
@import '../../../minerva.less/minerva.mixins.less';
|
|
|
|
.printfooter {
|
|
display: block;
|
|
padding-top: 108px;
|
|
font-size: 30px;
|
|
}
|
|
|
|
// stylelint-disable selector-max-id
|
|
.minerva-footer {
|
|
border-top: 4px @border-style-base #000;
|
|
// Un-hide the last-modified info and license text
|
|
display: block;
|
|
padding-top: 23px;
|
|
background: @background-color-base !important;
|
|
|
|
.footer-content {
|
|
display: block !important;
|
|
|
|
#footer-info,
|
|
#footer-info-lastmod,
|
|
#footer-info-copyright {
|
|
display: block !important;
|
|
font-size: 30px;
|
|
color: @color-print-subtle;
|
|
font-weight: normal;
|
|
}
|
|
|
|
.minerva-footer-logo {
|
|
margin: 0 !important;
|
|
border: 0 !important;
|
|
padding: 0 !important;
|
|
}
|
|
|
|
// Hide everything else once again
|
|
#mw-data-after-content,
|
|
#footer-places {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.last-modified-bar {
|
|
display: none;
|
|
}
|
|
}
|
|
// stylelint-enable selector-max-id
|