[modern] Move up color and background-color rule from content to body

Bug: T251583
Change-Id: I93e4ef82210e0f8c559f4476480a3c3b0b6474c8
This commit is contained in:
AronDemian 2020-05-08 03:21:49 +02:00 committed by Aron Manning
parent 2a7dc60cc4
commit 015bfa74d9
1 changed files with 4 additions and 3 deletions

View File

@ -30,14 +30,15 @@ body {
}
body {
// General background/foreground color definition as one exception to the rule.
background-color: @background-color-base;
color: @color-base;
// Vertical scrollbar always visible.
overflow-y: scroll;
}
.mw-body,
.parsoid-body {
// General background/foreground color definition as one exception to the rule.
background-color: @background-color-base;
color: @color-base;
direction: ltr;
padding: @padding-content;
}