mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-15 10:27:31 +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
22 lines
389 B
Plaintext
22 lines
389 B
Plaintext
@import '../../minerva.less/minerva.variables.less';
|
|
|
|
@media all and ( min-width: @min-width-breakpoint-tablet ) {
|
|
.ns-special .pre-content {
|
|
background: @background-color-base;
|
|
margin-bottom: 15px;
|
|
|
|
.tagline,
|
|
h1 {
|
|
margin: 0 @margin-content;
|
|
}
|
|
}
|
|
|
|
.ns-special .mw-body {
|
|
background: @background-color-interactive;
|
|
|
|
form {
|
|
background: @background-color-base;
|
|
}
|
|
}
|
|
}
|