mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-16 10:59:56 +00:00
9d6fbc894e
Bug: T108620 Change-Id: I42b0e06f50aca5cb783d88f79a080461e745ceee
57 lines
929 B
CSS
57 lines
929 B
CSS
/*!
|
|
* VisualEditor MediaWiki UserInterface education popup tool styles.
|
|
*
|
|
* @copyright 2011-2015 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
.ve-ui-pulsatingdot {
|
|
width: 10px;
|
|
height: 10px;
|
|
border-radius: 5px;
|
|
background: #347bff;
|
|
position: absolute;
|
|
border: 0px;
|
|
opacity: 1;
|
|
animation: pulse 3s ease-out;
|
|
animation-iteration-count: infinite;
|
|
}
|
|
|
|
.oo-ui-widget-disabled .ve-ui-pulsatingdot {
|
|
display: none;
|
|
}
|
|
|
|
.ve-ui-educationpopup-dismiss {
|
|
margin-top: 1em;
|
|
}
|
|
|
|
.ve-ui-educationpopup-header {
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
.ve-ui-educationpopup .oo-ui-popupWidget-body {
|
|
line-height: 1.2em;
|
|
}
|
|
|
|
@keyframes pulse {
|
|
0% {
|
|
transform: scale(0);
|
|
opacity: 0.0;
|
|
}
|
|
25% {
|
|
transform: scale(0);
|
|
opacity: 0.1;
|
|
}
|
|
50% {
|
|
transform: scale(0.1);
|
|
opacity: 0.3;
|
|
}
|
|
75% {
|
|
transform: scale(0.5);
|
|
opacity: 0.5;
|
|
}
|
|
100% {
|
|
transform: scale(1);
|
|
opacity: 0.0;
|
|
}
|
|
} |