mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
5c84f0cd88
Reference images are moved to Cite and used by Citoid. Bug: T170919 Bug: T171292 Depends-On: I02041246dda1b3d3ad1bcc0b014fa022e8259b62 Change-Id: Id97659ed1fa64a1223a8957fefaf2a149edd0e9c
42 lines
855 B
CSS
42 lines
855 B
CSS
/*!
|
|
* VisualEditor MediaWiki UserInterface education popup styles.
|
|
*
|
|
* @copyright 2011-2020 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
.ve-ui-educationPopup {
|
|
position: relative;
|
|
}
|
|
|
|
.ve-ui-educationPopup > .mw-pulsating-dot {
|
|
pointer-events: none;
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 50%;
|
|
z-index: 1;
|
|
}
|
|
|
|
.oo-ui-widget-disabled .mw-pulsating-dot {
|
|
/* Don't show while container is (e.g. surface loading) */
|
|
/* stylelint-disable-next-line declaration-no-important */
|
|
display: none !important;
|
|
}
|
|
|
|
.ve-ui-educationPopup-dismiss {
|
|
margin-top: 0.5em;
|
|
}
|
|
|
|
.ve-ui-educationPopup-header {
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
.ve-ui-educationPopup .oo-ui-popupWidget {
|
|
/* Appear above local dialogs, e.g. toolbar dialog */
|
|
z-index: 3;
|
|
}
|
|
|
|
.ve-ui-educationPopup .oo-ui-popupWidget-body {
|
|
padding: 1em;
|
|
}
|