mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-17 20:52:14 +00:00
b0ccdc5892
`padding: 0` was either a rule targeting very early Operas or Netscape/Firefox or came out of Eric Meyer's reset.css as misappropriation. normalize.css haven't had it in v1.0.0, only relied on `margin: 0` normalization for IE 6 & 7. Change-Id: I3d2894a1e68414b64751bd6ebe7e1af77d260ee7
19 lines
373 B
Plaintext
19 lines
373 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%;
|
|
}
|
|
|
|
// 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;
|
|
}
|