mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-05 22:22:54 +00:00
8a8a337ce5
Objective: * Make all text inputs have the ability to be "pending", not just ones with a special mixin Changes: * Delete pending input widget * Move pending input widget implementation to text input widget * Update all uses of pending input widget * Make pending image a reusable "texture" * Update styles of text input widget for pending state * Get rid of checking for mixin since all text inputs can be pending now Bonus: * Get rid of unused images, including .psd and .ai files * Add transparency texture * Fix input widget not using documented config value * Fix documentation in select widget (lies!) Change-Id: Ib46ab01dc39d706e5c25fd473dee0edce51b7e44
63 lines
1.1 KiB
CSS
63 lines
1.1 KiB
CSS
/*!
|
|
* VisualEditor UserInterface styles.
|
|
*
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/*csslint vendor-prefix:false */
|
|
|
|
/* Textures */
|
|
|
|
.ve-ui-texture-pending {
|
|
/* @embed */
|
|
background-image: url(images/textures/pending.gif);
|
|
}
|
|
|
|
.ve-ui-texture-transparency {
|
|
/* @embed */
|
|
background-image: url(images/textures/transparency.png);
|
|
}
|
|
|
|
/* Animtation */
|
|
|
|
@-webkit-keyframes ve-ui-zoom-in {
|
|
from { -webkit-transform: scale(0.5); }
|
|
to { -webkit-transform: scale(1); }
|
|
}
|
|
|
|
@-moz-keyframes ve-ui-zoom-in {
|
|
from { -moz-transform: scale(0.5); }
|
|
to { -moz-transform: scale(1); }
|
|
}
|
|
|
|
@-o-keyframes ve-ui-zoom-in {
|
|
from { -o-transform: scale(0.5); }
|
|
to { -o-transform: scale(1); }
|
|
}
|
|
|
|
@keyframes ve-ui-zoom-in {
|
|
from { transform: scale(0.5); }
|
|
to { transform: scale(1); }
|
|
}
|
|
|
|
@-webkit-keyframes ve-ui-fade-in {
|
|
from { opacity: 0; }
|
|
to { opacity: 1; }
|
|
}
|
|
|
|
@-moz-keyframes ve-ui-fade-in {
|
|
from { opacity: 0; }
|
|
to { opacity: 1; }
|
|
}
|
|
|
|
@-o-keyframes ve-ui-fade-in {
|
|
from { opacity: 0; }
|
|
to { opacity: 1; }
|
|
}
|
|
|
|
@keyframes ve-ui-fade-in {
|
|
from { opacity: 0; }
|
|
to { opacity: 1; }
|
|
}
|