mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-15 11:58:44 +00:00
bfcdbd544b
Bug: T345766 Change-Id: I78fd91fa397a731d22aa6264f61f324f6fc22054
16 lines
343 B
Plaintext
16 lines
343 B
Plaintext
/*
|
|
* Normalize styles across rendering engines.
|
|
* Ideally, these rules should live in core and be shared across skins.
|
|
*
|
|
*/
|
|
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;
|
|
}
|