mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Popups
synced 2024-11-28 01:10:04 +00:00
189b386a13
Breaking change - I was having issues getting the knobs feature to work so it has been removed for the time being. Bug: T236589 Depends-On: I8505d2dad69aefed5f8ed1f599b3ca1b7e79acf5 Change-Id: I42fbf37124477e2d950b4bca15acf77703cd3f5d
36 lines
822 B
Plaintext
36 lines
822 B
Plaintext
/**
|
|
* These are custom styles designed to supplement styles produced
|
|
* by ResourceLoad or MediaWiki-core.
|
|
**/
|
|
@import './mediawiki.ui/components/icons.less';
|
|
|
|
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;
|
|
}
|
|
|
|
/* Settings icon generated by resourceLoader */
|
|
.mw-ui-icon-popups-settings:before {
|
|
background: linear-gradient(transparent,transparent), url('../../resources/ext.popups.images/cog.svg');
|
|
}
|