mediawiki-skins-Vector/resources/skins.vector.styles/common/normalize.less
Volker E 5691e4c7c4 [less] Move margin and padding on body only
Both properties are needed for normalizing different browsers (`padding`
infamous on older Operas) and are only needed on `body`.

Change-Id: I661869ed43491824cbfe86dc36e39f97e29ccf8a
2020-06-15 17:05:54 -07:00

24 lines
408 B
Plaintext

/*
* Normalize styles across rendering engines.
* Ideally, these rules should live in core and be shared across skins.
*
*/
@import '../../../variables.less';
html,
body {
height: 100%;
}
body {
margin: 0;
padding: 0;
}
// Support Blink based browsers.
// They use `outline` for focus styles, we're only amending the color here, see T245887.
:focus {
outline-color: @outline-color-base--focus;
}