mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-17 03:18:48 +00:00
2c77e88d2c
Change-Id: I30539877543dc2a57bd1428a00d10ac46d8fc294
51 lines
897 B
CSS
51 lines
897 B
CSS
/*!
|
|
* VisualEditor MediaWiki UserInterface education popup tool styles.
|
|
*
|
|
* @copyright 2011-2020 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
.ve-ui-educationPopup {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.ve-ui-educationPopup > .mw-pulsating-dot {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 50%;
|
|
z-index: 1;
|
|
}
|
|
|
|
.ve-ui-educationPopup.oo-ui-widget-disabled > .mw-pulsating-dot {
|
|
display: none;
|
|
}
|
|
|
|
.ve-ui-educationPopup-shield {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
.ve-ui-educationPopup .oo-ui-popupWidget-body p {
|
|
line-height: 1.2em;
|
|
}
|