mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-12 09:21:11 +00:00
3afbbce707
Available since Codex v0.11.0 in I9db6eff7. Change-Id: I9bf6c5ad74dcf7a6aea847d5758afba1a1cfb67a
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-progressive--focus;
|
|
}
|