mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-25 23:05:35 +00:00
5eaa211d43
Make the dot more like the one in the designs, with two circles etc. Change-Id: Ic3e1b2dcd846c5825455b68697acab44016ee598
69 lines
1.1 KiB
CSS
69 lines
1.1 KiB
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: 2.5em;
|
|
height: 2.5em;
|
|
border-radius: 50%;
|
|
background-color: #347bff;
|
|
position: absolute;
|
|
opacity: 1;
|
|
animation: pulse 3s ease-out;
|
|
animation-iteration-count: infinite;
|
|
}
|
|
|
|
.ve-ui-stillDot {
|
|
width: 0.8em;
|
|
height: 0.8em;
|
|
border-radius: 50%;
|
|
background-color: #347bff;
|
|
position: absolute;
|
|
}
|
|
|
|
.oo-ui-widget-disabled .ve-ui-pulsatingDot,
|
|
.oo-ui-widget-disabled .ve-ui-stillDot {
|
|
display: none;
|
|
}
|
|
|
|
.ve-ui-educationPopup-dismiss {
|
|
margin-top: 0.5em;
|
|
}
|
|
|
|
.ve-ui-educationPopup-header {
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
.ve-ui-educationPopup .oo-ui-popupWidget-body {
|
|
padding: 1em;
|
|
}
|
|
|
|
.ve-ui-educationPopup .oo-ui-popupWidget-body p {
|
|
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;
|
|
}
|
|
} |