2019-09-04 17:49:22 +00:00
|
|
|
/**
|
|
|
|
* These are custom styles designed to supplement styles produced
|
|
|
|
* by ResourceLoad or MediaWiki-core.
|
|
|
|
**/
|
|
|
|
@import './mediawiki.ui/components/icons.less';
|
2020-10-27 16:34:01 +00:00
|
|
|
@import './production-icons.less';
|
2019-09-04 17:49:22 +00:00
|
|
|
|
|
|
|
html, body {
|
|
|
|
height: 100%;
|
|
|
|
font-family: sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Stopping the fade animation to avoid the animation appearing
|
|
|
|
* whenever a user types into the "knob" fields and the popup rerenders.
|
|
|
|
* NOTE: To test the animation, remove these rules.
|
|
|
|
*/
|
|
|
|
.mwe-popups-fade-in-up {
|
|
|
|
-webkit-animation: none;
|
|
|
|
animation: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mwe-popups-fade-in-down {
|
|
|
|
-webkit-animation: none;
|
|
|
|
animation: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* show popups by default */
|
|
|
|
.mwe-popups {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|