mediawiki-extensions-Visual.../modules/ve/ui/styles/ve.ui.css
Trevor Parscal 8f3e6f152f Dialog button changes
ve.ui.MetaDialog.js
* Added scrolling to outline panel

ve.ui.css
* Added reusable animation keyframes

ve.ui.Dialog.css
* Changed dialog head style
* Changed dialog cancel button to close icon button
* Added animation of dialog opening
* Increased min-height of dialog to always show a little content

ve.ui.Icons-*.css
* Added close icon (not sure why it was missing)

ve.ui.Window.css
* Moved head padding out of window and into implementations of window

ve.ui.Dialog.js
* Moved apply button to footer
* Renamed cancel button to close button
* Overrode close method with triggers a closing animation and then calls the parent close method after an animation is complete
* Added classes to close and apply buttons to make styling less ambiguous
* Converted cancel button (now the close button) to an icon button

ve.ui.Window.js
* Added footer to dialog

VisualEditor*.php
* Added close message

Change-Id: Iededbc54b287328b3047b05efad6ca3cc152caa5
2013-04-10 12:34:52 -07:00

57 lines
1 KiB
CSS

/*!
* VisualEditor UserInterface styles.
*
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
@-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); }
}
@-ms-keyframes ve-ui-zoom-in {
from { -ms-transform: scale(0.5); }
to { -ms-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; }
}
@-ms-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; }
}