mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-24 06:13:54 +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
32 lines
567 B
Plaintext
32 lines
567 B
Plaintext
.header-container,
|
|
.header-container.header-chrome {
|
|
background: @background-color-base;
|
|
box-shadow: none !important;
|
|
}
|
|
|
|
.minerva-header {
|
|
border-top: 0;
|
|
// Un-hide the wordmark logo
|
|
display: block;
|
|
height: auto;
|
|
padding: 0 @padding-content;
|
|
|
|
// Hide everything else once again
|
|
.navigation-drawer,
|
|
.minerva-search-form,
|
|
.minerva-user-navigation {
|
|
display: none !important;
|
|
}
|
|
|
|
.branding-box {
|
|
height: auto;
|
|
display: block !important;
|
|
padding: 0 0 51px 0;
|
|
|
|
// Beta indication is hidden in print mode
|
|
sup {
|
|
display: none !important;
|
|
}
|
|
}
|
|
}
|